I'd like to determine the primary key of a table using TSQL (stored procedure or system table is fine). Is there such a mechanism in SQL Server (2005 or 2008)?
|
feedback
|
|
This should get you started:
HTH, Stu | |||
|
feedback
|
| |||
|
feedback
|
|
Here's one based on system tables from SQL 2005 (99% sure it'd work in 2008). This will list all PKs for all user-defined tables, with all columns and some extra fluff that could be removed. Add parameters to pick out a table at a time.
| |||
|
feedback
|