Viewing 15 posts - 3,091 through 3,105 (of 3,348 total)
Ninja's_RGR'us (11/27/2008)
Update table set @Var = UpdatedColumn = @Var + WhateverIttakesToEvalutateThisVariable
This must be used with a index hint on a temp table to...
November 27, 2008 at 6:10 am
Ninja's_RGR'us (11/27/2008)
Hugo, are you talking about the quirky update for 2000?
Hi Ninja's_RGR'us,
No. As far as I know, UPDATE is not quirky at all in SQL Server 2000. What do you...
November 27, 2008 at 5:39 am
There is a huge problem with this technique. IDENTITY values are not guaranteed to be consecutive; for a variety of reasons there may be gaps. Those will invalidate the results...
November 27, 2008 at 4:10 am
It's technically correct that bcp.exe can only replace the contents of a file and output from SQLCMD can be used to append as well, and if the purpose of the...
November 24, 2008 at 1:44 am
JohnG (11/20/2008)
1. It doesn't properly support a legitimate value of -1 as -1 is being used to indicate that the value is not numeric.
2. An explicit CAST is needed in...
November 24, 2008 at 1:33 am
donnelcyril (11/9/2008)
The phonenumber column are permitted to have null values.What could be the possible explanation for this behaviour 🙁
Hi donnelcyril,
You already gave the reply - the null values are the...
November 9, 2008 at 5:02 pm
David Jackson (11/7/2008)
🙂 You'll like this
I do. Thanks for sharing your results, David! 🙂
November 7, 2008 at 7:39 am
David Jackson (11/6/2008)
Any thoughts? 😉
How about this:
INSERT INTO #t3
(documentId, pages, docPath)
SELECT d.DocumentId, d.pages,
...
November 6, 2008 at 2:54 pm
skjoldtc (11/6/2008)
November 6, 2008 at 2:34 pm
Anirban Paul (11/6/2008)
Good Questions Hugo...
Thanks, Anirban 😉
November 6, 2008 at 1:39 am
SanjayAttray (11/5/2008)
ON Dest (Value)
WITH(IGNORE_DUP_KEY = ON);
go
Msg 1916, Level 16, State 4, Line 1
CREATE INDEX options nonunique and ignore_dup_key are mutually exclusive.
ignore_dup_key should...
November 5, 2008 at 1:29 pm
Jamie Longstreet (11/5/2008)
November 5, 2008 at 6:28 am
Steve Jones - Editor (11/3/2008)
As always, thanks for catching the mistake. I have clarified the question.
It is a deprecated feature, but there are plenty of 2000 instances out there and...
November 3, 2008 at 7:49 am
Though I got the point, I don't think I liked this question very much. First, because it applies to a data type that has been on the deprecated list since...
November 3, 2008 at 4:33 am
Viewing 15 posts - 3,091 through 3,105 (of 3,348 total)