Hi
I am using sql server 2000.In a cursor stmt I am using
Select * from tab where Isnull(IsMigrated,0) = 0
in the same cursor I am Updating IsMigrated = 1
update tab set IsMigrated = 1
IsMigrate field will have 1 /0 for Yes/No flagging. I have made a Clustered index on it , vol of recs is in lacs . Pl. advise me wether it is a wise descision to put index on IsMigrated column or not.
I am using sql server 2000.In a cursor stmt I am using
Select * from tab where Isnull(IsMigrated,0) = 0
in the same cursor I am Updating IsMigrated = 1
update tab set IsMigrated = 1
IsMigrate field will have 1 /0 for Yes/No flagging. I have made a Clustered index on it , vol of recs is in lacs . Pl. advise me wether it is a wise descision to put index on IsMigrated column or not.