Alter Table Add Index
Database
3
Posts
2
Posters
0
Views
1
Watching
-
HI I want to add index in existing table. Can any person help me on this to generate script. What would be the syntax if possible give me example. Thanx Shahzad Aslam
-
HI I want to add index in existing table. Can any person help me on this to generate script. What would be the syntax if possible give me example. Thanx Shahzad Aslam
For SQL Server 2005:
CREATE INDEX [IndexName] ON [TableName]([ColumnName])
Sincerely, Elina Life is great!!! Enjoy every moment of it! :-O
-
For SQL Server 2005:
CREATE INDEX [IndexName] ON [TableName]([ColumnName])
Sincerely, Elina Life is great!!! Enjoy every moment of it! :-O
Thanx!