Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Domain catastrophe?
Morning,
>> i have sum(bytes) for SYSTEM tablespace is 20MB and max(bytes) is the
>> same.
Sounds to me like your SYSTEM tablespace if full up then.
Have you got any users other than SYS using SYSTEM as their default or
temporary tablespace ?
If so, best get them out of there and get their objects out of SYSTEM.
select username, default_tablespace, temporary_tablespace from dba_tablespaces;
will tell you who is using what - needs to be run from SYSTEM user though.
If you have nobody using SYSTEM then you'll need to add a datafile to the tablespace or extend the existinig datafile.
alter tablespace system add datafile 'blah/blah/blah.dbf' size ????;
or
alter database datafile 'whatever_it_ois_called' resize ?????;
again, run this as system user.
Cheers,
Norm.
Tel: 0113 289 6265 Fax: 0113 289 3146 URL: http://www.Lynx-FS.com -------------------------------------Received on Tue Jul 22 2003 - 04:04:50 CDT
![]() |
![]() |