Click to See Complete Forum and Search --> : sequence cache


wwalice
10-06-2000, 08:29 PM
Hi,

I created a sequence without specifying the cache/nocache. But when i checked the sequence the cache number was 20. What happened? Is it oracle default? How to change the default?

akkerend
10-08-2000, 11:30 AM
20 is the default. You can alter the sequence specifying cache/nocache.

wwalice
10-09-2000, 05:06 PM
Thanks.

Could I change the default value?

akkerend
10-10-2000, 05:08 AM
No, you can't change the default. You have to specify cache/nocache when creating sequences if you don't want the default.

ntokozo
10-10-2000, 05:23 AM
You could also specify the value you want
in the CACHE clause of your ALTER /
CREATE SEQUENCE statement.

success?
ntokozo