Viewing 15 posts - 56,971 through 56,985 (of 59,067 total)
I'm still waiting for Lindsay to describe what happens during the first week of the year... for example, if it has less than 4 days, is it considered to be...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 2, 2007 at 10:44 am
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
--Jeff Moden
Change is inevitable... Change for the better is not.
February 1, 2007 at 7:33 pm
Did you get an "A" on the homework?
--Jeff Moden
Change is inevitable... Change for the better is not.
February 1, 2007 at 7:06 pm
FTP to a text file... then BCP or Bulk Insert into SQL Server. See Books Online for more info on either or both.
--Jeff Moden
Change is inevitable... Change for the better is not.
February 1, 2007 at 7:01 pm
Lindsay,
What are the rules for the first week/first month of the year?
--Jeff Moden
Change is inevitable... Change for the better is not.
February 1, 2007 at 6:59 pm
Considering your other post... this looks a lot like a take-home exam...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 1, 2007 at 6:16 pm
Considering your other post, this looks a lot like a take-home exam.
--Jeff Moden
Change is inevitable... Change for the better is not.
February 1, 2007 at 6:15 pm
Yep... clever code. Thanks.
--Jeff Moden
Change is inevitable... Change for the better is not.
February 1, 2007 at 5:54 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......
--Jeff Moden
Change is inevitable... Change for the better is not.
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!
--Jeff Moden
Change is inevitable... Change for the better is not.
January 31, 2007 at 8:28 am
Just curious... why don't YOU just give it a try?
--Jeff Moden
Change is inevitable... Change for the better is not.
January 31, 2007 at 8:26 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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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 ![]()
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 31, 2007 at 6:21 am
p.s. Lookup QUOTENAME in Books OnLine if you need to do lot's of stuff like this...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 31, 2007 at 6:06 am
Viewing 15 posts - 56,971 through 56,985 (of 59,067 total)