Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Unique index vs unique constraint?
Message
 
 
À
09/07/2012 20:41:04
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Autre
Versions des environnements
SQL Server:
SQL Server 2005
Divers
Thread ID:
01547961
Message ID:
01547966
Vues:
22
>>>Hi,
>>>
>>>What works better (better practice) when creating a unique index that is used in FK constraints on child tables? Unique index using this syntax:
>>>
>>>
>>>CREATE UNIQUE INDEX IX_deptfile_cost_cent_site_no ON deptfile (cost_cent, site_no )
>>>
>>>
>>>or creating a constraint using the following syntax:
>>>
>>>
>>>ALTER TABLE [dbo].[deptfile] ADD  CONSTRAINT [IX_deptfile_cost_cent_site_no] UNIQUE NONCLUSTERED 
>>>(
>>>	[cost_cent] ASC,
>>>	[site_no] ASC
>>>)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
>>>
>>>
>>>?
>>>
>>
>>Use CREATE CONSTRAINT as when you create a unique index, the unique constraint is created anyway.
>>>TIA
>
>Just to make sure I got it. You are suggesting the following syntax?:
>
>
>CREATE CONSTRAINT IX_deptfile_cost_cent_site_no ON deptfile (cost_cent, site_no )
>
This doesn't seem correct. Your second syntax was correct.
If it's not broken, fix it until it is.


My Blog
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform