ORGCODE is always 2 characters, then use CHAR2 instead of VARCHAR2 as it will save a byte in the row header which tracks variable width sizes and adds up over millions of rows. As others here have mentioned, using SELECT will hurt performance. Not only due to it requiring SQL Server to return all columns and hence be more likely to do a Clustered Index Scan regardless of your other indexes, but it also takes SQL Server time to go to the table definition and translate into all of the column names. It should be slightly faster to specify all 2. SELECT list though that wont help the Scan issue. But do you ever really need all 2. Good luck Update. Sql Server Update Statistics Full Scan All Tables In Sql' title='Sql Server Update Statistics Full Scan All Tables In Sql' />For the sake of completeness to the question how to improve performance on a large table for ad hoc queries, it should be noted that while it will not help for this specific case, IF someone is using SQL Server 2. IF the table is not being updated, then using Columnstore Indexes is an option. For more details on that new feature, look here. I believe these were made to be updateable starting in SQL Server 2. In that results set, we can see that for document with identifier 14536, there are 3 occurrences of keyword. This allows us to tell that a FullText. Update. 2Additional considerations are Enable compression on the Clustered Index. This option became available in SQL Server 2. Enterprise Edition only. Please see the MSDN page for Data Compression for details on Row and Page Compression. If you cannot use Data Compression, or if it wont provide much benefit for a particular table, then IF you have a column of a fixed length type INT, BIGINT, TINYINT, SMALLINT, CHAR, NCHAR, BINARY, DATETIME, SMALLDATETIME, MONEY, etc and well over 5. NULL, then consider enabling the SPARSE option which became available in SQL Server 2. Please see the MSDN page for Use Sparse Columns for details. I Went Walking Sequencing Activity Preschool. Sql Server Update Statistics Full Scan All Tables In Sql© 2017