Viewing 15 posts - 6,031 through 6,045 (of 7,168 total)
This thread has the answer in it:
http://www.sqlservercentral.com/Forums/Topic349843-148-1.aspx
June 17, 2011 at 9:19 am
Am being pushed for a CPU upgrade maybe mutiple processors, is this likely to make any difference or will this only make a difference for multi-threaded applications?
Sorry, but there is...
June 17, 2011 at 8:49 am
I agree with Paul in that "It Depends".
Just to add a my two cents to the discussion:
Concrete tables used in a temporary way and truncated before and/or after each use...
June 17, 2011 at 8:44 am
TheSQLGuru (6/17/2011)
vmssanthosh (6/16/2011)
hiWho is lady gaga?
This is an American cultural reference to a sometimes strange pop singer. Search the web for any number of VERY interesting pictures of outfits...
June 17, 2011 at 7:27 am
GSquared (6/17/2011)
opc.three (6/17/2011)
You're not going to "physical order" are you? I'm pretty sure all that's needed is logical order. Once the...
June 17, 2011 at 6:52 am
June 17, 2011 at 6:49 am
GSquared (6/17/2011)
Jeff Moden (6/17/2011)
opc.three (6/16/2011)
:Wow: I just set myself up big time huh?
Nah... considering the number of hacker attacks designed specifically to exploit OLE DB Automation, I can see your...
June 17, 2011 at 6:47 am
OK, maybe I missed it. I think your example resultset has a circular reference in it and it was throwing me off.
Can you please fix this so it says...
June 17, 2011 at 6:44 am
That's why the IDENTITY column is added in Step 1.
You're not going to "physical order" are you? I'm pretty sure all that's needed is logical order. Once the data is...
June 17, 2011 at 6:35 am
hxkresl (6/17/2011)
June 17, 2011 at 6:32 am
Jeff Moden (6/16/2011)
opc.three (6/16/2011)
June 16, 2011 at 8:11 pm
Jeff Moden (6/16/2011)
opc.three (6/16/2011)
No.How's that for short, sweet and accurate? 😉
That absolutely works for me. 😀 It would be very cool if you told me what you use instead....
June 16, 2011 at 8:07 pm
PS I didn't notice any transaction handling in your code. If you're operating on a table or set of tables more than once inside a "unit of work" you may...
June 16, 2011 at 6:24 pm
Ever used TRY/CATCH ? It's awesome 😎
BEGIN TRY
EXEC('raiserror(''Bad stuff happened...'',11,1);') ;
END TRY
BEGIN CATCH
SELECT ERROR_MESSAGE() AS [error_message]
END CATCH
<my_two_cents>If you insist on full...
June 16, 2011 at 6:22 pm
newbie.with.sql (6/16/2011)
June 16, 2011 at 6:15 pm
Viewing 15 posts - 6,031 through 6,045 (of 7,168 total)