|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Thursday, February 21, 2013 3:14 AM
Points: 134,
Visits: 425
|
|
Hi All,
I have around 200+ tables in database and all the tables have column with the name IsDeleted which is of datatype bit. And we are using this for logical deletion, ie; if an record deleted we are updating the value 1 for IsDeleted column and while fetching we will select only the records with 0 in IsDeleted column and we are using this column in every select statement for each table .
Now my question is whether i have to create index on this column for all tables? If yes how the performance will be gained?
Thanks in Advance
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 4:18 PM
Points: 38,062,
Visits: 30,359
|
|
An index just on that column will probably not be useful. What you'll likely need to do is create indexes for the various queries and ensure that the IsDeleted is part of each index.
If you can post a couple of example queries I can probably help you further.
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Friday, February 22, 2013 1:15 PM
Points: 11,
Visits: 39
|
|
I've seen instances where an index on boolean field is useful. If there is a large discrepancy between the number of 0's and 1's, and you're searching for the the smaller of the two, an index may work well.
E.g.: If IsDeleted is set to 1 during online processing and then all entries with IsDeleted=1 are deleted by a script that gets run during off-hours, I'd expect the total number of rows where IsDeleted=1 to be small. In this case, if your WHERE clause filters on IsDeleted=1, you're likely to get seeks rather than scans. On the other hand, if your WHERE clause filters on IsDeleted=0, it still has to look through the majority of rows that might otherwise be returned, so you'll get scans.
Like GilaMonster said, though, it's unlikely that an index on a boolean, all by itself, is going to help you in any significant way. It's possible that adding it to existing indexes might help.
|
|
|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Wednesday, April 17, 2013 2:47 PM
Points: 88,
Visits: 351
|
|
i agree with shian. i've actually had instances where indexing on a bit field was extremely useful - though common wisdom suggests they may be more overhead than they are worth. test both with and without.
|
|
|
|
|
SSCoach
         
Group: General Forum Members
Last Login: Yesterday @ 1:45 PM
Points: 15,442,
Visits: 9,572
|
|
In SQL 2008, a filtered index on one or another of the values in a bit column, can make a HUGE difference in performance.
In 2005 and earlier, just don't make it the leading edge of the index, and it should help, but not quite as much.
- Gus "GSquared", RSVP, OODA, MAP, NMVP, FAQ, SAT, SQL, DNA, RNA, UOI, IOU, AM, PM, AD, BC, BCE, USA, UN, CF, ROFL, LOL, ETC Property of The Thread
"Nobody knows the age of the human race, but everyone agrees it's old enough to know better." - Anon
|
|
|
|