Unable to create column with maximum length in SYBASE ASE

154 Views Asked by At

In SQLServer for creating a column of type, say VARBINARY or VARCHAR, we can specify the maximum length as

create table sample (c1 varbinary(MAX));
create table sample1 (c1 varchar(MAX));

What is the equivalent syntax for SYBASE ?

VARBINARY(MAX) does not seem to work

Thanks in advance

1

There are 1 best solutions below

0
On

You can use

create table sample (c1 Long Binary);
create table sample1 (c1 Long Varchar);

Please check with this solution.