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.

 All Forums
 SQL Server 2005 Forums
 Transact-SQL (2005)
 exception

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 as
Msg 156, Level 15, State 1, Line 1
Incorrect 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]
Go to Top of Page
   

- Advertisement -