Re: table_space problem
Date: 20 Mar 93 19:58:03 CST
Message-ID: <1993Mar20.195803.1352_at_hermes.dlogics.com>
In article <1993Mar19.211419.26420_at_netnews.whoi.edu>,
dhiltz_at_whsun1.wh.whoi.edu (David Hiltz) writes:
> In article <Mar18.173015.71143_at_yuma.ACNS.ColoState.EDU>
ciuffoli_at_lamar.ColoState.EDU (Carlos Ciuffoli) writes:
>>ERROR:
>>ORA-01547: failed to allocate extent of size 956 in tablespace 'TEMPUSERS'
>>
> ERROR:
> ORA-01547: failed to allocate extent of size 3596 in tablespace 'SYSTEM'
Now then: default storage parameters have the above side-effect when tables are extended. oracle out-of-the-box defaults to 50% growth factor. that is, each new extent will be 150% of the latest extent size. if you add just one row to a table whose last extent is full, you may run out of space in the tablespace for the gigundo new extent (that's ORA-1547).
another solution is to add more data files to the tablespace in question. and you do have separate tablespaces for SYSTEM, user data, indexes, and temporary tables, don't you?
-- Dave Mausner, Senior Consultant / Datalogics Inc / Chicago IL / 312-266-4450 dlm_at_dlogics.com Motto: Just show me the codeReceived on Sun Mar 21 1993 - 02:58:03 CET