Viewing 15 posts - 8,191 through 8,205 (of 9,641 total)
MrBaseball34,
You do make some good points. There is way to get your SQL Code to look better and it is available on this site, http://extras.sqlservercentral.com/prettifier/prettifier.aspx, just not well-known. ...
July 30, 2008 at 8:14 am
Mark Harr (7/30/2008)
July 30, 2008 at 8:11 am
Michael Taylor (7/30/2008)
July 30, 2008 at 7:45 am
Oh yeah, it really is a good editorial because it has sparked debate. Just because I don't agree with the opinion in the editorial doesn't mean I didn't enjoy...
July 30, 2008 at 7:23 am
I'll admit I'm in the "USE stored procedures camp" and one of the main reasons is this quote from your editorial which you use as a reason to NOT use...
July 30, 2008 at 7:20 am
g.raghunathan (7/29/2008)
My main table XXX_FLOW has : 125638737 records in it and
My SP : Billing_Completed_Flow access a...
July 29, 2008 at 7:27 pm
The authentication method is Instance based not Server based so if I have 2 instances 1 can be Windows only and 1 can be mixed.
July 29, 2008 at 1:49 pm
GilaMonster (7/29/2008)
Rename the table and see who complains? 😀
I like it:D
July 29, 2008 at 1:47 pm
GSquared (7/29/2008)
Jack Corbett (7/29/2008)
July 29, 2008 at 12:03 pm
Thanks guys. I thought about messing with the scripting options. I'll have to compare them on both machines.
July 29, 2008 at 11:58 am
In a situation where I only want to sum cd sales for cd's in the Opera and Classical categories you could do something like:
SUM(IIF(category = "Opera" Or category = "Classical",...
July 29, 2008 at 11:03 am
GSquared (7/14/2008)
Heck, even though it may get me in trouble, given a choice of two equally skilled people, I'll pick the pretty girl over the ugly girl/whatever guy.
Yeah, this could...
July 29, 2008 at 10:58 am
The With IGNORE_DUP_KEY only ignores duplicates on insert operations. From BOL:
IGNORE_DUP_KEY = { ON | OFF }
Specifies the error response to duplicate key values in a multiple-row insert...
July 29, 2008 at 10:50 am
Viewing 15 posts - 8,191 through 8,205 (of 9,641 total)