Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Verification if a primary key exists
Message
 
 
À
04/03/2008 15:01:35
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Autre
Divers
Thread ID:
01298604
Message ID:
01298610
Vues:
19
This message has been marked as the solution to the initial question of the thread.
>I have some code that are removing a primary key from all my tables. However, if this primary key does not exist, this will stop the script once reached. I need to verify if the primary key exists first before attempting to remove it. I have this presently:
>
>
>ALTER TABLE [MyTable] DROP CONSTRAINT Numero
>
IF EXISTS (SELECT 1 FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS
	WHERE CONSTRAINT_TYPE = 'PRIMARY KEY'
		AND TABLE_NAME = 'MyTable')
--sb--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform