Hello all,
Newbie here.
SQL 2000, Windows 2000
I'm trying to alter tables in my SQL DB using statements like the following:
/* AD_GROUPS */
alter table AD_GROUPS alter column AD_GROUP_NAME nvarchar(64)not null
go
/* ARTICLES */
alter table ARTICLES add column CONTENTTYPE_REF int null
go
I get error messages like:
Server: Msg 156, Level 15, State 1, Line 3
Incorrect syntax near the keyword 'column'
I got the statements straight out of the Microsoft book "Inside Microsoft
SQL Server 2000"
Thanks in advance for helping to train this raw recruit!
Jake
Newbie here.
SQL 2000, Windows 2000
I'm trying to alter tables in my SQL DB using statements like the following:
/* AD_GROUPS */
alter table AD_GROUPS alter column AD_GROUP_NAME nvarchar(64)not null
go
/* ARTICLES */
alter table ARTICLES add column CONTENTTYPE_REF int null
go
I get error messages like:
Server: Msg 156, Level 15, State 1, Line 3
Incorrect syntax near the keyword 'column'
I got the statements straight out of the Microsoft book "Inside Microsoft
SQL Server 2000"
Thanks in advance for helping to train this raw recruit!
Jake
Comment