Viewing 14 posts - 1 through 14 (of 14 total)
Tom.Thomson (4/4/2010)
I found "The world will come to an end, but music and love will endure" as the translation for your second tag line, but might I request a translation...
April 5, 2010 at 8:09 am
David Korb (3/23/2010)
Ed-997158 (3/23/2010)
David Korb (3/23/2010)
Tom Wilson (3/23/2010)
March 23, 2010 at 9:32 am
David Korb (3/23/2010)
Tom Wilson (3/23/2010)
March 23, 2010 at 9:08 am
Thanks. I was just going to ask if "bridge table" didn't already have a different terminology
March 23, 2010 at 7:14 am
Ah, so you're blocking only for the time to change the status. Nice! Thanks!
October 30, 2009 at 11:55 am
Here is the definition of the table:
/****** Object: Table [dbo].[sysValidationList] Script Date: 1/26/2009 12:27:20 PM ******/
USE [DEV2-HRMS-036];
GO
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
IF EXISTS (SELECT * FROM sys.objects WHERE object_id...
January 26, 2009 at 10:30 am
Thanks. The lightbulb is starting to go on.
Next question: The sysValidationList table (I did not design this), has a column, ValidationListID, of type int that is marked as...
January 26, 2009 at 10:16 am
From my brief reading on clustered index, they're useful for returning a range of values that have some meaningful sort order. Since this table uses a GUID for uniqueness,...
January 26, 2009 at 9:28 am
IX_sysValidationList is a unique, non-clustered index on the column, ValidationPartyID. Is this index not appropriate for these joins?
Also, when I try to use this query as the basis of...
January 26, 2009 at 9:02 am
Thanks Gail. I can't seem to figure out how to generate the xml in Toad, so I opened MS SQL Server Management Studio, ran the execution plan there, and...
January 25, 2009 at 3:48 pm
It only takes about 2-3 seconds for the query, as opposed to about 60 seconds with all the joins to the lookup table.
January 24, 2009 at 3:43 pm
When I tried that, it returned a second pane with a header, "Microsoft SQL Server XML Showplan", but there were no other contents. I was able to copy the...
January 23, 2009 at 2:56 pm
Thanks for your help. I'm using Toad for SQL Server, so hopefully this is the format you're looking for.
Regards,
Ed
January 23, 2009 at 2:29 pm
Thanks for the info. So even if 20 coded columns need to access the lookup table to decode to descriptions, a table scan will be performed 20 times? ...
January 23, 2009 at 1:42 pm
Viewing 14 posts - 1 through 14 (of 14 total)