May 20, 2004 #1 baybie IS-IT--Management Oct 5, 2002 68 GB Hello chaps, is it possible to use the CREATE SEQUENCE facility in access SQL for creating reference numbers of fixed length? e.g. CREATE SEQUENCE CUST_ID INCREMENT BY 1 START WITH 1000234 MAX VALUE 2000000 NO CYCLE;
Hello chaps, is it possible to use the CREATE SEQUENCE facility in access SQL for creating reference numbers of fixed length? e.g. CREATE SEQUENCE CUST_ID INCREMENT BY 1 START WITH 1000234 MAX VALUE 2000000 NO CYCLE;
May 22, 2004 1 #2 PHV MIS Nov 8, 2002 53,708 FR Something like this ? ALTER TABLE Cust ALTER COLUMN Cust_Id IDENTITY (1000234, 1); Hope This Help, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244 Upvote 0 Downvote
Something like this ? ALTER TABLE Cust ALTER COLUMN Cust_Id IDENTITY (1000234, 1); Hope This Help, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
May 28, 2004 Thread starter #3 baybie IS-IT--Management Oct 5, 2002 68 GB Thanks PHV, YOU'RE A STAR. Upvote 0 Downvote
May 28, 2004 Thread starter #4 baybie IS-IT--Management Oct 5, 2002 68 GB Actually it hasn't worked. Theres a syntax error, presumably where the first ( is... Upvote 0 Downvote