Monday, 7 February 2011

SQL query to Create Index

Use the following query to create index on a table in SQL Server.

CREATE INDEX IX_Log_timestamp
ON log(timestamp)

No comments:

Post a Comment