I would like create a table and add to it a Primary Key.
As for my understanding MS SQL add a clustered Index on the Primary Key and will name it with a default name.
I would like to know if is possible create a table and ASSIGN a custom name for the index created by default or how can i change the default name after the table as been created.
Thanks!
primary key nonclusteredworks as well. Unless you don't add another clustered index, table will be heap. – ToxicAvenger Jul 15 '10 at 8:54