Viewing 15 posts - 3,436 through 3,450 (of 5,841 total)
I wonder if the SET statements in your trigger aren't causing extra recompiles - which can cause some interesting bottlenecks. Check for that, and if they are happening try...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
April 27, 2011 at 7:33 am
1) what happens to the table during the day? that would determine if you need more frequent stats updates
2) could this be a simple case of parameter sniffing? updating...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
April 26, 2011 at 4:13 pm
1) lock reason: snapshotting perhaps? or deferred temptable dropping?
2) still wondering about trigger code. can you post that?
3) have you tried sp_whoisactive to see if you can get details about...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
April 26, 2011 at 9:01 am
get a copy of the great free tool sqljobvis. It shows you a gantt chart of agent job executions, making it VERY nice for checking for overlaps. Not...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
April 26, 2011 at 7:56 am
1) can you post the code for the login trigger?
2) if you are having an 'outage' of this nature, I recommend you get a professional on board to quickly isolate/fix...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
April 26, 2011 at 7:54 am
I actually think ApexSQL's Log product might be able to unwind or redo transactions given your scenario. Tell them TheSQLGuru sent you.
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
April 26, 2011 at 7:49 am
Why don't you run some tests and find out (and then tell us what you find)??
In any case, I imagine that your query will be overwhelming compared to...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
April 25, 2011 at 7:02 pm
jefydominic (4/25/2011)
We are planning to setup a new SQL server 2008 (enterprise edition).
Average data size is 100GB. Every weekend we will delete some data and add some new...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
April 25, 2011 at 6:59 pm
Regarding Paul Randall's quote: "Update statistics for all of the non-indexed columns", it would seem that there is a flaw in that statement, since statistics are only kept on search...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
April 25, 2011 at 3:00 pm
data types are probably pretty far down on the list of reasons why your query performance is poor. Look to indexing and query construction first.
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
April 25, 2011 at 8:42 am
There are FAR more important things to do to improve your database application performance than worry with IO configuration. However, what you seek (general advise on tuning) goes WAY...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
April 25, 2011 at 8:40 am
1) There are many places where microsoft recommendations are suboptimal, poor, inappropriate, dead wrong, etc.
2) MANY resources you can find on the web are OUTDATED. This case is definitely...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
April 25, 2011 at 7:16 am
mohan.pariveda 18256 (4/24/2011)
I am new to the SQL Server tuning and facing a critical performence problem.
My environment : Windows 2003 R2 (32 bit OS), SQL 2005 ENT, 8 GB...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
April 25, 2011 at 7:04 am
Jack Corbett (4/22/2011)
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
April 22, 2011 at 8:35 am
P.S. I specifically recommend that you do not REORGANIZE your indexes. Reorganization (defragmentation) takes about 8 times longer than rebuilding, if pages in the table are exclusively locked, the reorg...
Best,
Kevin G. Boles
SQL Server Consultant
SQL MVP 2007-2012
TheSQLGuru on googles mail service
April 22, 2011 at 8:27 am
Viewing 15 posts - 3,436 through 3,450 (of 5,841 total)