Viewing 15 posts - 2,131 through 2,145 (of 2,647 total)
How are you executing this stored procedure? i.e. a job or manually? What happens if you run the commands individually in SSMS outside of the sp? It sounds like...
November 30, 2011 at 9:05 am
Can you list what your current settings are for the server options on that linked server?
Thanks,
Jared
November 30, 2011 at 9:03 am
GSquared (11/23/2011)
p-nut (11/22/2011)
GSquared (11/22/2011)
November 23, 2011 at 8:37 am
If you want the particulars you'll have to wait for my article. 😉
I can't wait!
Jared
November 22, 2011 at 2:33 pm
If by a chance you find an example where APPLY is much less resource intensive and faster than a JOIN I will be very like to see it.
Check this out:...
November 22, 2011 at 2:31 pm
Maybe the simplest suggestion for cleanliness and readability is a cte assuming this is a simple aggregate:
;WITH cte (SalesOrderID, ProductID) AS
(SELECT SalesOrderID, MAX(ProductID) AS ProductID ...
November 22, 2011 at 2:07 pm
Alexander Suprun (11/22/2011)
p-nut (11/22/2011)
Alexander Suprun (11/21/2011)
p-nut (11/21/2011)
This is probably a good case for CROSS APPLYhttp://weblogs.sqlteam.com/jeffs/archive/2007/10/18/sql-server-cross-apply.aspx
Jared
From my experience using CROSS APPLY will force the server to do LOOP JOIN which may...
November 22, 2011 at 1:52 pm
GSquared (11/22/2011)
November 22, 2011 at 1:45 pm
I'm wondering if we are over thinking this a bit.... What about using "quirky update" to determine the mathematical difference between phone numbers in each row and then look for...
November 22, 2011 at 1:25 pm
Alexander Suprun (11/21/2011)
p-nut (11/21/2011)
This is probably a good case for CROSS APPLYhttp://weblogs.sqlteam.com/jeffs/archive/2007/10/18/sql-server-cross-apply.aspx
Jared
From my experience using CROSS APPLY will force the server to do LOOP JOIN which may be not the...
November 22, 2011 at 12:05 pm
This is probably a good case for CROSS APPLY
http://weblogs.sqlteam.com/jeffs/archive/2007/10/18/sql-server-cross-apply.aspx
Jared
November 21, 2011 at 12:00 pm
GSquared (11/21/2011)
November 21, 2011 at 8:17 am
Steve Malley (11/18/2011)
OPENROWSET
( { 'provider_name' , { 'datasource' ; 'user_id' ; 'password'
| 'provider_string' }
,...
November 18, 2011 at 4:39 pm
GSquared (11/18/2011)
p-nut (11/17/2011)
GSquared (11/17/2011)
p-nut (11/17/2011)
November 18, 2011 at 8:24 am
agiangone (11/17/2011)
Ninja's_RGR'us (11/17/2011)
November 17, 2011 at 7:26 pm
Viewing 15 posts - 2,131 through 2,145 (of 2,647 total)