I have a table with no index. I need to add a clustered index on one column but the table does not have any column having unique data.Will this allow me to add clustered index on a duplicate column?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A clustered index does not enforce uniqueness unless you specify the keyword UNIQUE.
is not the same as
You may be thinking of a PRIMARY KEY constraint in a CREATE TABLE statement.
In this example:
ASE will create a UNIQUE, CLUSTERED index on bar.