The Sybase documentation is small, and it turns out that Sybase ASA, some other product that they bought, and Sybase ASE (Server Enterprise) that most people think of Sybase.
For ASE15, this is not an auto-increment, but an identity that should be on a numeric, not an integer
create table run_log (
runid numeric(12,0) identity
)
source
share