Viewing 15 posts - 45,121 through 45,135 (of 49,571 total)
Please don't cross post. Many of us read all the forums. 2005-related questions should please only be posted in the 2005 forums to avoid confusion.
No replies to this thread please....
August 13, 2008 at 12:35 am
Have you considered disabling the sa login?
August 13, 2008 at 12:26 am
The latest cumulative update (CU 8) is build 9.00.3257
Ref: http://www.sqlservercentral.com/articles/Administration/2960/
August 13, 2008 at 12:26 am
Selects or just data modifications? The latter, consider a trigger. For the former, you'll probably have to use profiler.
August 12, 2008 at 3:23 pm
Have you considered profiler or a serverside trace? If you don't mind your error log growing significantly, you could also set the option to audit successful logins. (found under server...
August 12, 2008 at 3:20 pm
Grant Fritchey (8/12/2008)
I'm on the way home, I'll try to set up a test tomorrow.
I saved you the trouble.
http://sqlinthewild.co.za/index.php/2008/08/12/views-or-functions/
August 12, 2008 at 3:14 pm
riix (8/12/2008)
August 12, 2008 at 2:40 pm
Grant Fritchey (8/12/2008)
August 12, 2008 at 1:46 pm
riix (8/12/2008)
Hmm .. if I have a situation where a multi-statement tvf is *required* then its most likely not something that I could've done in a view.
Indeed. I have,...
August 12, 2008 at 1:31 pm
pino_daddy (8/12/2008)
Don't think teh UPPER has anything to do with it.If I comment out the joing:
LEFT OUTER JOIN SW_ORD_LIST_EXT OLE ON (UPPER(BH.ORDER_NO) = UPPER(OLE.ORDER_NO) AND BDTL.LINE_NO = OLE.LINE_NO)
The estimated and...
August 12, 2008 at 12:41 pm
pino_daddy (8/12/2008)
If I comment out the joing:
LEFT OUTER JOIN SW_ORD_LIST_EXT OLE ON (UPPER(BH.ORDER_NO) = UPPER(OLE.ORDER_NO) AND BDTL.LINE_NO = OLE.LINE_NO)
The entire query...
August 12, 2008 at 12:35 pm
pino_daddy (8/12/2008)
Yes I did that and it does work, but it does not save any time off the execution.
Can you post the execution plans of the query with the...
August 12, 2008 at 12:32 pm
In SQL 2000, you can't save the graphical plan. An acceptable alternative is to run the query with SET SHOWPLAN_ALL ON, run to grid, select the entire grid and paste...
August 12, 2008 at 12:25 pm
lucas229 (8/12/2008)
Does the Auto-close property hurt the performance of my sql-server?
Depends how often the database in question is used. If it's used once a month, probably not, if it's used...
August 12, 2008 at 12:22 pm
riix (8/12/2008)
"view vs stored proc....you still need to wrap the view up in a stored proc in order use dynamic selection criteria."
wrong - use a table-valued function. Much tidier...
August 12, 2008 at 11:54 am
Viewing 15 posts - 45,121 through 45,135 (of 49,571 total)