Viewing 15 posts - 526 through 540 (of 1,186 total)
I'm just glad that the statement written is ALMOST grammatically correct english versus. IF articles written in past THEN ELSE....![]()
February 15, 2005 at 12:08 pm
Put square brackets around it:
[primary_db_server\sql2000] ![]()
February 15, 2005 at 12:06 pm
sp_changeobjectowner 'some1.object', 'sa' ???
February 15, 2005 at 6:18 am
please see comments in http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=19&messageid=161630
February 15, 2005 at 5:49 am
#TEMP tables do not show as being able to be selected as SOURCE/DESTINATION. There are two ways to get around this.
February 15, 2005 at 5:46 am
Have you tried assigning the DEFAULT for the column that you want to populate to be NEWID()?? This way you don't have to worry about it?
February 14, 2005 at 1:20 pm
This is one feature that SQL2K5 has finally been able to provide SANS dynamic SQL.. ![]()
February 14, 2005 at 1:18 pm
Try using the Search on the toolbar, type Domino, select all three options and search. Several articles on what you are looking for ![]()
February 14, 2005 at 11:59 am
SELECT TOP 1 DateFirstEntered FROM Status
WHERE DateFirstEntered > DateCompleted
ORDER BY DateFirstEntered ???
February 14, 2005 at 11:58 am
Is SQL Agent configured as a DOMAIN account or localsystem? I would change SQL Agent to be DOMAIN account ...
February 14, 2005 at 11:57 am
#1 creating sp_name stored-procedures are not good. The system tries to search master 1st and then your user database
#2 Are you explicitly creating as dbo and looking for dbo in...
February 14, 2005 at 9:54 am
Check the job history of the job and it will tell you the step it failed at (click the show detail checkbox). From there you will have to examine WHAT...
February 14, 2005 at 9:51 am
The problem is basically... This won't work. SQL interprets your passed in parameter as a LITERAL and not an ARRAY. There are 2 different ways to approach this.
1. Create a...
February 14, 2005 at 9:50 am
I prefer using the Jimmy Hendrix extended producedure "Purple Haze"...![]()
February 14, 2005 at 9:03 am
Try this
Dim MyDate, MyShortDate
MyDate = "1969-10-19" ' Define date.
MyShortDate = CDate(MyDate)
MsgBox MyDate
MsgBox MyShortDate
Don't ask why this works and the other doesn't....
February 14, 2005 at 5:56 am
Viewing 15 posts - 526 through 540 (of 1,186 total)