I am writing a migration script and need to use sybase ddlgen tool to extract database object definitions. The tool is not generating ddl correctly for tables with identity column. Has anyone stumbled on the problem and is there any solution or ways around it.
This is how the DDL is been generated. In this example CustomerID is meant to be an identity column in the source database.
create table Customer (
CustomerID numeric(10,0) null,
.....
constraint pk primary key (CustomerID)
)
Thanks
This is how the DDL is been generated. In this example CustomerID is meant to be an identity column in the source database.
create table Customer (
CustomerID numeric(10,0) null,
.....
constraint pk primary key (CustomerID)
)
Thanks