Viewing 15 posts - 151 through 165 (of 209 total)
Are the login events originating from sql server or from Windows/Active Directory?
October 6, 2010 at 6:55 am
Slightly away from your question... you could also write a stored proc that is executed at startup (exec sp_configure 'scan for startup procs', '1' and exec sys.sp_procoption '<sp name>','startup','on') that...
September 2, 2010 at 3:04 am
PaulB-TheOneAndOnly (8/19/2010)
ashish.kuriyal (8/10/2010)
it depends how updated your indexes and tables are.:blink: Could you please elaborate? This is really confusing.
I imagine Ashish means it depends how many updates have been...
August 19, 2010 at 10:22 am
If you REALLY want to force the order, put
OPTION (FORCE ORDER)
at the end of your query. See:
http://msdn.microsoft.com/en-us/library/ms181714.aspx
Dave.
August 19, 2010 at 7:29 am
You need to grant (at least) read access to the shared drive to the user account the sql server instance is running under (default is Network Service), otherwise it won't...
August 19, 2010 at 7:06 am
ashish.kuriyal (8/17/2010)
Thats what I follow.
Being in one job for years is always no no for me....
August 17, 2010 at 10:17 am
hilld (6/29/2010)
Ok, they changed the question. How do I change my answer now?
Don't worry about it... chill!
June 29, 2010 at 8:06 am
Anyone here think QoD questions and answers should be checked independently before they are released?
June 28, 2010 at 2:11 am
... and so the majority of respondents have decided - no more 'typo' questions please.
June 15, 2010 at 7:45 am
minimyme (6/9/2010)
I'm a big fan of KIS (keep it simple) principal. If you can avoid the triggers in the first place, absolutely avoid them.
Auditing is normally performed in triggers
1)...
June 9, 2010 at 9:55 am
A very good article to show how context_info works and how it can be applied.
If the 128 bytes of context_info is insufficient for the purpose, a CLR could be...
June 9, 2010 at 2:35 am
Absolutely right - my bad. I'm afraid my brain is wired to never ever use '=' or '<>' where either side can be null, even if I'm trying to make...
June 2, 2010 at 1:26 am
Another advantage of "create/alter" over "drop/create" is that the latter leaves the database without the object for a (usually short) amount of time.
April 29, 2010 at 2:20 am
Jim Russell-390299 (4/27/2010)
One of the rules of extreme programming was "do the simplest thing that could possibly work."
There is some danger in adding code complexity to anticipate...
April 27, 2010 at 9:18 am
Viewing 15 posts - 151 through 165 (of 209 total)