drop sequence SeqCurrencyCode; drop sequence SeqAccountType; drop sequence SeqAccountNo; drop sequence SeqRecNo; drop sequence SeqEntryType; create sequence SeqCurrencyCode start with 1 increment by 1 nomaxvalue; create sequence SeqAccountType start with 1 increment by 1 nomaxvalue; create sequence SeqAccountNo start with 1 increment by 1 nomaxvalue; create sequence SeqRecNo start with 1 increment by 1 nomaxvalue; create sequence SeqEntryType start with 1 increment by 1 nomaxvalue;