Viewing 15 posts - 1 through 15 (of 285 total)
Since this site changed the look and feel the scripts are not with the article. I have send the script to the site and believe it will be under...
April 25, 2019 at 11:44 pm
JALLY (10/14/2016)
I used Option recompile and option for local variables to work around the Parameter sniffing issues arising from having...
October 14, 2016 at 5:06 pm
ScottPletcher (9/1/2016)
Rollbacks very often take more time than the initial modification. They are only very quick if all the pages are still in memory.
Since when SQL Server keeps transaction...
September 19, 2016 at 12:22 pm
I think you overstate the importance of the clustered index, especially in this case. Clustered index doesn't really matter too much here. The one you suggested will be mediocre for...
September 16, 2016 at 6:13 pm
MickyD (9/15/2016)
My aim was to see if I could suggest any improvements to the table which...
September 16, 2016 at 3:10 pm
msnathan (7/25/2016)
I have not dropped any nonclustered index.Also we run on the same server against the same table and database.
Have you looked at the execution plans?
July 25, 2016 at 5:43 pm
For God's sake please don't try to use common logic, just look at the plans! The following is just my guessing on what could have happened.
There are two ways to...
July 21, 2016 at 6:07 pm
Jim Covington (5/27/2016)
Is there anything I can do to improve the performance of my query?
You need to create indexes.
May 27, 2016 at 3:21 pm
I guess that OP has already fixed the issue, but if someone is still looking for a solution, here it is:
This type of error happens when you have more than...
March 24, 2016 at 12:50 pm
VoldemarG (3/22/2016)
That...
March 23, 2016 at 12:40 pm
The only benefit from using missing index DMV is that it might show you the query that might have some performance issues. Then you need to look at query plan,...
March 22, 2016 at 6:16 pm
New DBA (3/18/2016)
Thank you, SSChampion.But I cannot run the query because do not have permission on sys.dm_db_index_usage_stats .
This code below does not help
USE master;
GO
GRANT VIEW SERVER STATE TO [test1]
GO
Is it...
March 18, 2016 at 4:06 pm
Run your query first thing in the morning with these options enabled, then you can tell if it's cache or not.
set statistics io on
set statistics time on
March 18, 2016 at 3:42 pm
I'm not sure what are you struggling with exactly. Do you know how to calculate percentage value?
March 11, 2016 at 2:59 pm
Viewing 15 posts - 1 through 15 (of 285 total)