Viewing 13 posts - 46 through 58 (of 58 total)
The funny thing is, the author obviously realized that nvarchar takes 2 bytes per character, judging by the explanation:
... Name + profession can take max 308 ...
To mis-quote Simon Cowell...
April 9, 2008 at 7:57 am
Thankfully, this has been fixed in Vista - the reminder message is now a balloon-tip from the system tray.
If you have 2000 SP3 or XP SP1 or higher, you can...
March 26, 2008 at 6:23 am
This sounds like an example of the "Secretary Problem":
January 18, 2008 at 8:55 am
Apparently, the first (and only) CTP of SQL 2005 SP1 has just been posted:
March 16, 2006 at 8:06 am
Some other problems using SSMS with a SQL 2000 instance:
March 16, 2006 at 5:22 am
"The customer lists all the features they want in priority order."
And how often can your customers tell you exactly what they want, let alone as a prioritized list?
If you are...
May 18, 2005 at 7:07 am
I've got the same issue. Looks like the person who posted the question has realized their mistake, and swapped the answers round.
January 6, 2005 at 4:37 am
For string values, you can use two ORDER BY clauses:
ORDER BY CASE WHEN 'descending' = @SortOrder THEN Column1 ...
December 14, 2004 at 8:05 am
Speaking of security risks, how about this line:
_topic = new String(request.chktopic);
...
var sql="!nocache:execsp usp_setcontacttopic "
... + ", '" + _topic + "'";
That's a great way to leave your...
June 11, 2004 at 3:32 am
Unfortunately, Microsoft have chosen to only make this product available in the US and Canada. The UK sales office "are currently awaiting confirmation from Head Office as to the availability...
March 9, 2004 at 4:08 am
The information on CONTAINS was updated in the Sept. 2001 update to BOL. This may have been one of the updates. I have successfully used CONTAINS with a variable in...
November 18, 2002 at 5:21 am
If you do need to run the script near midnight, you could use:
exitTime = DateAdd("s", 60, Now())
Do While Now() < exitTime
...
But: This script seems to peg the CPU usage at...
September 26, 2002 at 3:30 am
Using recursion is an un-necessary overhead. You could achieve the same result without putting this much strain on your stack by iterating through an array:
Function CreateFolder(Path As String) As Scripting.Folder
Dim...
July 30, 2001 at 4:39 am
Viewing 13 posts - 46 through 58 (of 58 total)