Viewing 15 posts - 556 through 570 (of 14,953 total)
CELKO (11/7/2012)
Can any one suggest me for each tables primary key should be Bigint as Primary Key or [uniqueidentifier] as PRIMARY KEY ?
This is a silly question and you...
November 7, 2012 at 7:54 am
Kingston Dhasian (11/7/2012)
CELKO (11/6/2012)
November 7, 2012 at 6:34 am
If you want to generate a list of values from a column of values, like this, your best bet is to use For XML Path to do the work for...
November 7, 2012 at 6:27 am
Jeff Moden (11/6/2012)
GSquared (11/6/2012)
Lee Crain (11/6/2012)
Please clarify this subject for me:
I'm almost certain that I read somewhere that a "SELECT .... INTO #Table" would automatically create the target table,...
November 7, 2012 at 6:11 am
Does your data take "leap seconds" and things like that into account? There have been several over the last 42 years. They don't matter to very many people,...
November 6, 2012 at 2:19 pm
Lee Crain (11/6/2012)
Please clarify this subject for me:
I'm almost certain that I read somewhere that a "SELECT .... INTO #Table" would automatically create the target table, then lock the...
November 6, 2012 at 1:29 pm
Not sure why you'd connecting triggers and cursors. They're completely different subjects.
But, here's a sample script that should do what you need:
IF OBJECT_ID(N'tempdb..#T') IS NOT NULL
...
November 6, 2012 at 11:12 am
Performance-wise, Int will be better than BigInt, and BigInt will be better than UniqueIdentifier. Less storage, less RAM, less I/O, etc., with the smaller datatypes.
The reasons to use GUIDs...
November 6, 2012 at 9:53 am
The last time I used Light Speed was 7 years ago. I replaced it with Red Gate because I found it just generally superior and easier to use. ...
November 6, 2012 at 9:43 am
Try replacing this:
EXEC sp_executeSQL @sql, @Due
With:
EXEC sp_executeSQL @sql, N'@Due NVARCHAR(20)', @Due
See if that does what you need.
November 6, 2012 at 9:39 am
That's from the missing "list the parameters" piece that I mentioned. Look at the samples, you'll see how it goes.
November 6, 2012 at 8:37 am
No, a view is not "recompiled" every time it's called. A view is just a stored Select statement. Queries of a view will store their execution plans as...
November 6, 2012 at 8:34 am
I recently got a bunch of those, that were caused by a network issue in the connection to the SAN.
November 6, 2012 at 8:24 am
Viewing 15 posts - 556 through 570 (of 14,953 total)