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 |
|
rajasekhar857
Constraint Violating Yak Guru
396 Posts |
Posted - 2009-12-22 : 09:18:31
|
| ALTER TABLE USERS ALTER COLUMN USER_THEME DEFAULT '1501'giving exception asMsg 156, Level 15, State 1, Line 1Incorrect syntax near the keyword 'DEFAULT'. |
|
|
vijayisonly
Master Smack Fu Yak Hacker
1836 Posts |
Posted - 2009-12-22 : 09:41:11
|
| [code]ALTER TABLE USERS ALTER COLUMN USER_THEME SET DEFAULT '1501'[/code] |
 |
|
|
|
|
|