Search Results

2
votes

Difference between drop table and truncate table?

truncate removes all the rows, but not the table itself, it is essentially equivalent to deleting with no where clause, but usually faster. …
3
votes

SQL Server 2005 - Rowsize effect on query performance?

Tuning the size of a row is only a major issue if the RDBMS is performing a full table scan of the row, if your query can select the rows using only indexes then the row size is less important (unl …