Viewing 15 posts - 55,951 through 55,965 (of 59,072 total)
Or, without variables...
SELECT d.Number1, d.Number2, (d.Number1 + d.Number2) AS Number3 FROM (--==== Derived table "d" does the aggragates once -- so outer select can reuse them with ease SELECT (SELECT...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 1, 2007 at 10:18 am
Heh... TempDb.mdf of 100Mb??? We start ours at 12 gig on boot up with growth settings of 500Mb. And, yes, we've found a huge performance benefit in having it that large...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 1, 2007 at 10:05 am
I went to the doctor once and said "Doc, if I hold my arm up like this, it hurts like hell." The doctor said "So... don't hold you arm up...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 1, 2007 at 9:54 am
Close... very close... but, that way will prevent an Index Seek if have a usable index on the column(s) because you're doing a calculation (subtraction) on the column. Best you'll ever...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 30, 2007 at 10:37 pm
First, very high congratulations on establishing full control of the production system.
So far as using an unattended system to install the procs in the production system goes... I wouldn't do...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 30, 2007 at 10:30 pm
All good ideas... Thanks, Carl!
--Jeff Moden
Change is inevitable... Change for the better is not.
June 30, 2007 at 4:46 pm
Shhhhh! My ol' friend Serqiy will hear you!
--Jeff Moden
Change is inevitable... Change for the better is not.
June 30, 2007 at 3:23 pm
Thanks Carl,
Yeap... the thing about the proxy needing to be available is pretty much what books online said... thanks.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 30, 2007 at 3:18 pm
Heh... Maintenance plan? What's that?
Doesn't everyone know that a database is just a place to hold data for the GUI? 
--Jeff Moden
Change is inevitable... Change for the better is not.
June 30, 2007 at 9:13 am
Heh, thanks Michaela,
I don't mind explaining at all... Some folks really take things the wrong way when asked for the source of what they said and I wanted to make sure no one...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 30, 2007 at 8:54 am
Thanks again... I'll check that SET command. Jobs also look promising if I set up a "proxy" account (lucky guess on my previous post). Here's what BOL says about running...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 30, 2007 at 12:48 am
Oh shoot... why didn't I think of this before?
I can setup a "job" to run as a user that has "SA" privs...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 30, 2007 at 12:31 am
Heh... I'd have to say they just did it out of ignorance or the path is hardcoded in the installation routine (whatever that may have been), Bill. I've seen your...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 30, 2007 at 12:24 am
Thanks, Sugesh...
Wow... not sure I want to grant exec privs to xp_CmdShell... almost as bad as giving them "SA" privs in the damage they could do. ![]()
--Jeff Moden
Change is inevitable... Change for the better is not.
June 30, 2007 at 12:20 am
Small shop? In that case and having been there myself... you'll be amazed at how many good bites you get with the seemingly silly "DBA and Jack of all trades"...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 29, 2007 at 9:27 pm
Viewing 15 posts - 55,951 through 55,965 (of 59,072 total)