Viewing 8 posts - 1 through 8 (of 8 total)
yes I agree,filtered indexes, should be created based on the queries that access the tables. but through the above query, we categorize the candidates for filtered index. Then for those...
August 18, 2014 at 11:11 am
Hey thanks for the reply. I found a way to capture the histogram details for every index and check the candidate for filtered index based on the below condition---
If the...
August 18, 2014 at 5:27 am
Is there a way to find missing filtered index in database through DMV's apart from DTA(tuning advisor)? The sys.dm_db_missing_index_details DMV do not list the missing filtered columns
August 14, 2014 at 3:34 am
Sindhu Ravi (8/6/2014)
iddate ...
August 6, 2014 at 3:29 am
A sample table looks like below
iddate ...
August 6, 2014 at 3:28 am
Restart SQL service (if downtime is permissible) and connect via DAC.
use select * from sys.dm_exec_requests to see what requests that is executed against the databases. You will see wait types,...
July 28, 2014 at 3:50 am
You can do this as below (note: Check for the performance issues before implementing)
declare @date datetime
select @date=MAX(date) from #mytable where method='B'
;with CTE...
July 28, 2014 at 2:03 am
Viewing 8 posts - 1 through 8 (of 8 total)