Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
SQLSeeker
Starting Member
15 Posts |
Posted - 2009-11-27 : 01:32:49
|
| Hi, I want to update contraint name of constraint type 'Primary Key'. Direct update is not possible in SQL 2005. So is there any other option to update System tables.Thanks |
|
|
Nageswar9
Aged Yak Warrior
600 Posts |
Posted - 2009-11-27 : 02:15:15
|
| Hi try thisexec sp_rename 'Old_Name','New_Name','OBJECT' |
 |
|
|
|
|
|