sql - Oracle - What is storage clause in altering a constraint statement -


i have sql block create primary key constraint , in sql statement found clause

storage initial

i couldn't understand , reason putting it, can tell me storage initial means when comes creating constraint or index in oracle.

alter table table_name add constraint constraint_name .... .... storage initial 

as explained in oracle documentation, if constraint requires index, clause allows defining how should physically stored (initial extent size...).


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -