Viewing 15 posts - 31 through 45 (of 93 total)
Also if I recompile the SP again - It goes back on a go slow
October 27, 2011 at 4:03 am
Here's the main guts of the query (modified for security)
WITH C_CTE (IssueID
,StartNo
,EndNo
,No
,LCSID
...
October 27, 2011 at 2:26 am
The other thing that is missing is any code to handle decimal and numeric datatypes with Precision and Scale.
July 10, 2010 at 2:07 pm
Although some 'Best Practices' will change there are more that won't - Can't see it ever being anything but best practice to avoid code like
INSERT myTable
SELECT * FROM myOtherTable
February 25, 2009 at 8:52 am
Could be very useful to newbies - Things like thou shalt not use cursors (unless there is no other way - There is you just need to think a bit...
February 25, 2009 at 8:50 am
How about a forum just covering Best Practices ?
February 25, 2009 at 8:47 am
DECLARE @ms AS INTEGER
SELECT @ms = 86399998
SELECT CONVERT (CHAR(13), DATEADD (ms, @ms, '01/01/00'), 14)
Obviously this would be the maximum number that it would show...
February 25, 2009 at 2:29 am
Bob do you know the definition of an expert - An Ex is a has been and a spirt is a drip under pressure - Does that help 🙂
February 18, 2009 at 8:05 am
But Jeff
NOTE: This problem does not apply to SQL Server 7.0 and later.
February 13, 2009 at 2:52 am
You're pulling all of the data between '12/4//2001' and '8/31/2008' and then limiting it in your select statement to '1/1/2004' and '8/31/2008' - Do you need to populate the temp...
February 12, 2009 at 2:23 pm
Why don't you store the results that you want to mail out in a table and set up a job to run sp_send_dbmail against this table - Presumably a...
February 11, 2009 at 2:31 am
Is it me or are these posts getting random ?
February 11, 2009 at 2:12 am
Viewing 15 posts - 31 through 45 (of 93 total)