[stackoverflow] [progress Openedge Abl] Progress Openedge Table Auto Increment?

Status
Not open for further replies.
B

BobNoobGuy

Guest
I have a table in progress db. (read: NOT POSTGRES). it has three columns, and I would like one of the column to be auto increment begins at 1 and increment by 1. Tried the following syntax but it does not see to be working.

create sequence pub.Customer_sequence
start with 1,
increment by 1,
nocycle;


the error message says:


Unable to understand after "Customer_sequence"

could not understand line 2



Continue reading...
 
Status
Not open for further replies.
Top