Is there some standard way to name indexes for SQL Server? It seems that the primary key index is named PK_ and non-clustered indexes typically start with IX_. Are there any naming conventions beyond that for unique indexes?
closed as not constructive by casperOne♦ Jun 2 '12 at 20:17
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I use PK_ for primary keys UK_ for unique keys IX_ for non clustered non unique indexes UX_ for unique indexes All of my index name take the form of |
|||||||
|
|
I usually name indexes by the name of the table and the columns they contain:
|
|||||||||
|
|
Is it worth a special prefix for indices associated with foreign keys? I think so, since it reminds me that indices on foreign keys are not created by default, and so it is easier to see if they are missing. For this, I am using names that match the name of the foreign key:
or, where multiple foreign keys exist on the same table
|
||||
|
|
|
I know a old topic but thought I'd throw in my 2cents worth
Example; NCAK_AccountHeader_OrganisationID_NextDate Where NCAK : Non Clustered, Unique, AccountHeader : Table and OrganisationID_NextDate : Columns. |
|||||||
|