Viewing 15 posts - 91 through 105 (of 197 total)
I concur with Michael and Sean. Triggers can be useful when properly designed, but are more often misused leading to performance problems, permissions issues, and in one case I recall...
November 1, 2012 at 2:04 pm
The query optimizer will determine whether or not index is useful when it evaluates potential execution plans. Aside from forcing an index hint in the query (which is almost always...
November 1, 2012 at 1:10 pm
Automatation and standardization. By running a post deployment script after every SQL Server install, we make sure that all configurations are standardized throughout the Enterprise. No more mail profiles with...
November 1, 2012 at 12:47 pm
Also, how big is the database? That will impact the amount of time that the system is offline while the restore runs.
I am a huge fan of scripting EVERYTHING that...
November 1, 2012 at 8:46 am
Yes, the option is still valid in 2012: http://msdn.microsoft.com/en-us/library/ms186865.aspx. It is equivalient to using both COPY_ONLY and CONTINUE_AFTER_ERROR.
NO_TRUNCATE
Specifies that the log not be truncated and causes the...
November 1, 2012 at 8:13 am
Love it, mind if I quote you the next time someone asks me that question?:-D
November 1, 2012 at 8:09 am
SQL 2000 is a tougher one. Unless you aqcuire a tool that periodically collects the data, I know of no way to review blocking historically. In the past, I've written...
October 31, 2012 at 5:50 pm
One more thing to check, look for running profiler traces. I have seen multiple occasions where runaway profiler traces have caused high CPU usage.
select * from sys.traces
October 31, 2012 at 2:59 pm
john pan (10/31/2012)
I have managed...
October 31, 2012 at 2:51 pm
scogeb (10/31/2012)
Lee Crain (10/31/2012)
This page from Paul Randal's blog may assist you:http://www.sqlskills.com/blogs/paul/post/Wait-statistics-or-please-tell-me-where-it-hurts.aspx
Cool article, thanks for posting it!
One of the main servers I deal with has CXPACKET waits of about...
October 31, 2012 at 2:22 pm
Does anyone ever ask or get asked what ACID properties are? I've been asked that one a number of times by non-DBA's grasping for interview questions. Whenever I interview DBA...
October 31, 2012 at 2:10 pm
Wo do it programatically be executing a post install script on every SQL Server installation. You can review the text of the sp_set_sqlagent_properties in MSDB for more details.
@jobhistory_max_rows...
October 31, 2012 at 11:42 am
Andrew Miller-489894 (10/31/2012)
How do you setup unlimited rollovers?
There are two parameters to the sp_trace_create stored procedure that control this @options and @filecount
http://msdn.microsoft.com/en-us/library/ms190362.aspx
[ @options= ] option_value
Specifies the options...
October 31, 2012 at 11:33 am
1. After a trace is setup and active, does the trace need to be restared if the SQL Server is restarted or does the trace start automatically with the...
October 31, 2012 at 7:57 am
Viewing 15 posts - 91 through 105 (of 197 total)