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 |
|
Woodzy
Starting Member
7 Posts |
Posted - 2005-01-17 : 20:25:31
|
| Hello,I'm trying to add a column to a table using the money variable EX: ALTER TABLE MoviesADD Price money (8) NOT NULLDEFAULT '3.00'ERROR Message: Server: Msg 2716, Level 16, State 1, Line 330Column or parameter #7: Cannot specify a column width on data type money.Thanks, Woodzy |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2005-01-17 : 23:43:14
|
Try thisALTER TABLE MoviesADD Price money NOT NULLDEFAULT 3.00 Madhivanan |
 |
|
|
|
|
|