hey guys, need a little help here.
in oracle i would create a sequence, in access i could name a key column to autoincrement.
but i cant find either in sql server 2000
most of sql, i can just apply oracle comands and DDL
like: CREATE SEQUENCE empl_id_sew
INCREMENT BY 1
START WITH 1
MAX VALUE 9999
NOCACHE
NOCYCLE;
but, sql must be different.
any help is appreciated
thanks
rik