Hi,
Why does the first statement work but the second one returns error?
exec ('select 1 go select 1')
exec ('drop proc sp1 go select 1')
Thanks in advance,
Leila
...
more >>
I have 2 databases in use. One is Dev, the other is Test.
I created a backup of Dev, dev.bak.
When I executed the statement:
restore database Test from disk = 'D:\BackupLoc\dev.bak' with replace
I got a message that said:
"Processed XXX pages for database 'Test', file 'Dev' on etc
RE...
more >>
An access 2003 mdb uses odbc to connect with sql server 2005. Before any
operations are attempted I'd like to make sure the odbc connection is
good, ie not down due to network or server issues. Is there a simple way
to make this test? I'm using sql authentication....
more >>
I have been trying the "standard" join for a while in the 1st ON clause
surrounded by stars and finally got this syntax to work... why????
My 1st choice was
ON t1.CAST(FLOOR(CAST(submitdate AS float)) AS datetime) =
t2.CAST(FLOOR(CAST(submitdate AS float)) AS datetime)
which was rejected with...
more >>