Default Storage Parameters for a Table
create table tb_test (
sample varchar2(100)
) ;
Clearly storage or for that matter any extra parameter is specified , but a look
at all_tables provides us a set of values of MAX_EXTENTS . similarly for MAX_TRANS and other parameters.
Any idea on how oracle engine decides on these parameters ?
Thanks.