Viewing 15 posts - 4,816 through 4,830 (of 5,394 total)
I don't know which indexes get scanned. I suggest you read Gail Shaw's article on how to post performance problems:
http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
Anyway I guess you get the scans from the OR...
September 23, 2009 at 1:41 am
I know that some of the "Threadites" already chimed in, so I'm saying this for all the others: you really have to read Lynn's latest article[/url] and the discussion.
Awesome...
September 23, 2009 at 1:34 am
Excellent article, Lynn!
I'll make sure to include your oustanding UDF in my dev/production environment. I already have one that does the same thing, in a while loop :blush:.
Thanks for...
September 22, 2009 at 1:37 am
Peter E. Kierstead (9/18/2009)
September 21, 2009 at 1:18 am
If you just want to query the stored procedure results, leave the function alone, way too complicated.
You could set up a loopback linked server (ilnked server pointing to the server...
September 18, 2009 at 6:35 am
This should work for you, working with joins as you requested.
Consider using Florian's solution too, depending on the execution plan.
SELECT t1.*
FROM #test t1
LEFT JOIN #test t2
...
September 18, 2009 at 6:10 am
I understand what you're trying to do, but there's no way to achieve it that way.
You will have to build a sql query in a variable and execute it with...
September 18, 2009 at 4:27 am
Sorry for double posting, looks like the site has some issues.
It says an error has occurred, but the post is added.
September 18, 2009 at 2:07 am
SELECT *
FROM
WHERE valuedate '20070731'
and valuedate '20070724'
September 18, 2009 at 2:05 am
SELECT *
FROM
WHERE valuedate '20070731'
and valuedate '20070724'
September 18, 2009 at 1:53 am
Tore Bostrup-382308 (9/16/2009)
September 18, 2009 at 1:46 am
Tore Bostrup-382308 (9/16/2009)
September 18, 2009 at 1:35 am
rja.carnegie (9/17/2009)
September 17, 2009 at 9:53 am
rja.carnegie (9/17/2009)
So how about the "Schema of Limited Life Expectancy" idea?
That's what I do. After 6 months in the 'drop candidates' schema, the object is dropped.
September 17, 2009 at 9:40 am
Nope: it's modeled on my dev env, that means two databases, app code, reports.
It works for me, it won't work for you...
The thing I want to stress here is that...
September 17, 2009 at 8:53 am
Viewing 15 posts - 4,816 through 4,830 (of 5,394 total)