Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Name of a foreign key
Message
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Miscellaneous
Thread ID:
00954209
Message ID:
00954214
Views:
13
Hi Sander,

You can use INFORMATION_SCHEMA, for example
SELECT * FROM  pubs.INFORMATION_SCHEMA.TABLE_CONSTRAINTS 
	WHERE table_name = 'titles' 
		AND constraint_type = 'FOREIGN KEY'
>
>I need to create a script to convert my database. To convert my database I need to drop a foreign key. To drop it, I use the command:
>
>ALTER TABLE my_table DROP CONSTRAINT my_foreign_key
>
>There is only one problem. I don't know the name of my foreign key, because the name of this key is generated by creation. How can I get the name of my foreign key? I have the parent and the child alias.
>
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform