evergreean43
Technical User
I am creating a survey in Oracle 9i database with around 35 questions and around 1000 People will input within a week time.
Please advise if nocache or cache is okay for when I create my sequence?
Here is how I would do if it is nocache?
Here is how I would do if it is cache?
Please advise if nocache or cache is okay for when I create my sequence?
Here is how I would do if it is nocache?
Code:
create sequence my_seq
start with 0 increment by 1
minvalue 1
nocache cycle order;
Here is how I would do if it is cache?
Code:
create sequence my_seq
start with 0 increment by 1
minvalue 1
cache cycle order;