Viewing 15 posts - 56,971 through 56,985 (of 59,066 total)
EXEC @sql will try execute a named stored procedure where the name is stored in @sql.
EXEC (@SQL) will execute the SQL stored in the variable @sql
February 1, 2007 at 7:33 pm
FTP to a text file... then BCP or Bulk Insert into SQL Server. See Books Online for more info on either or both.
February 1, 2007 at 7:01 pm
Lindsay,
What are the rules for the first week/first month of the year?
February 1, 2007 at 6:59 pm
Considering your other post... this looks a lot like a take-home exam...
February 1, 2007 at 6:16 pm
Very hard for me to believe you can't display an estimated execution plan... even a fully read only data base let's you do an estimated execution plan in Query Analyzer......
January 31, 2007 at 9:43 am
Yep... some serious truth in that... the best accounting procedure is, of course, don't make mistakes. The second best is don't try to roll back anything... issue a credit!
January 31, 2007 at 8:28 am
Oh noo, no, no.... go look at Master.dbo.sp_SpaceUsed and "steal" code from that... do it in a set based manner so that you can create a view like an Information_Schema...
January 31, 2007 at 8:22 am
Hey Micheal! Welcome aboard! Have seen lot's of your posts on the "other" forum... glad to see another intelligent person come on (well, except for the cursor
January 31, 2007 at 6:27 am
And, do a ...
SELECT COUNT(*)
FROM yourtablename
... to find out how many rows it's really looking at...
January 31, 2007 at 6:21 am
Viewing 15 posts - 56,971 through 56,985 (of 59,066 total)