I have a table with [1 million data ,11 columns]. My select query [select * from tbl
] seems to be taking 2 minutes to complete.
Server is SQL Server Express 2005. Table has a clustered index [primary key], no other indexes.
If I create a copy of the table using select * into table1 from tbl
, then the same select query on the new table takes maximum 10 seconds. I couldn't find any differences in table structure
What might causing the original table slow?