Viewing 15 posts - 5,146 through 5,160 (of 5,843 total)
Time to start tuning queries - ANY that may be doing table scans on large tables that could otherwise be doing index seeks/bookmark lookups. I have seen any number...
June 4, 2008 at 2:18 pm
Perhaps parallelism is hurting here. Check for CXPACKET waits using waitstats analysis. Do you have hyperthreaded cpus by any chance? Also try running the query with OPTION...
June 4, 2008 at 9:34 am
Sorry, I do not. I do have some insider knowledge as an MVP, but if I told you that stuff I would have to kill you. 😀
June 3, 2008 at 10:10 pm
See SET SHOWPLAN ON in BOL. Also in Profiler, under the Performance event, check out Execution Plan, Show Plan All, Show Plan Statistics and Show Plan Text.
June 3, 2008 at 9:41 pm
3 to 96 seconds is probably more than just slow IO. I would be looking for blocking. sp_who2 active is the quickest way to detect that.
June 3, 2008 at 9:05 pm
I would use SET STATISTICS IO ON and execute in SSMS. Also use profiler to get good IO metrics as well as CPU, duration, rowcounts. Use the stored...
June 3, 2008 at 9:54 am
sudhakara (6/2/2008)
I got Dead lock error message from error log file . its showing line number and object id .But that object having the inner procedures because of...
June 3, 2008 at 9:52 am
Probably don't have enough RAM on the box (or allocated to SQL Server). Way too many read-aheads. Disk system seems slow too, but that could be just because...
June 3, 2008 at 9:51 am
Are all foreign key columns indexed (the ones in the other tables)?
June 3, 2008 at 9:44 am
Aaron West (5/27/2008)
May 27, 2008 at 9:18 pm
>>Why are you mulitplying lots of the columns by "1"? Destroys the ability to use an index...
I don't think that is true. It probably just prevents the...
May 27, 2008 at 8:23 pm
Jeffrey Williams (5/23/2008)
May 23, 2008 at 4:03 pm
Reg_Mayfield (5/23/2008)
I have created a MP that runs on the weekend, I have two procedures that run, one to Rebuild Indexes and the second is Update Statistics...
This is a VERY...
May 23, 2008 at 12:21 pm
Are you reBUILDING the indexes, or reORGing them? a rebuild will redo the stats and that WILL force all associated sprocs to compile their first execution. IIRC a...
May 23, 2008 at 8:45 am
Ola Hallengren (5/22/2008)
sys.dm_db_index_physical_stats.
I have a stored procedure that is using sys.dm_db_index_physical_stats to dynamically rebuild / reorganize...
May 23, 2008 at 8:42 am
Viewing 15 posts - 5,146 through 5,160 (of 5,843 total)