Viewing 5 posts - 1 through 5 (of 5 total)
Hi,
Thanks for the input, is this correct approach,
In my VIEW, vMyTable
select col1,
isnull(column50,1) as column50,
column51
from dbo.MyTable
where Column50 = 1
In the MyTable indexes, I added the following script
create nonclustered index ixIndex_Column50 on...
December 27, 2016 at 12:49 pm
was able to improve the query by moving the isnull to the select and adding the column to a filtered index. Was able to reduce query time from 9+ min...
November 16, 2016 at 12:30 pm
the data is binded to a asp.net gridview.
November 16, 2016 at 11:30 am
I am measuring the time on SSMS.
November 16, 2016 at 11:21 am
currently added non-unique, non-clustered index and filter index
I got the 9 min query time without index and using ISNULL in the where
but so far, I change the where clause and...
November 16, 2016 at 10:53 am
Viewing 5 posts - 1 through 5 (of 5 total)