If the large table contains thousands of records and the application is accessing 35% of the table which method to use: index searching or full table scan
RE: If the large table contains thousands of records and the application is accessing 35% of the table which method to use: index searching or full table scan
Usually whenever MORE THAN 2 to 4 of rows in a table are going to be returned by a query a full table scan is preferred over an indexed scan. So in this case as 35 of rows of the table are accessed by the application a full table scan will be used.