Using SQL Server 2005 Std Edition on two different systems
on one the following code works and on the other I get a syntax error near 'max'.
create table tbla (
id int not null,
abx nvarchar(max) null)
if I substitute 255 for max, it works.
all the settings seem to be identical.
any ideas?
on one the following code works and on the other I get a syntax error near 'max'.
create table tbla (
id int not null,
abx nvarchar(max) null)
if I substitute 255 for max, it works.
all the settings seem to be identical.
any ideas?