Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Urgent: Why is system tablespace growing?
Check whether the user TOUSER has a default setting of SYSTEM tablespace for "TEMPORARY TABLESPACE". You can perform this check by following query:
Select temporary_tablespace from dba_users where username = 'TOUSER';
If the result points to SYSTEM tablespace, then alter the user as follows:
ALTER USER touser temporary tablespace temp ;
Then try reimporting ..........
HTH,
Rajesh
-----Original Message-----
Sent: Saturday, May 12, 2001 10:01 AM
To: Multiple recipients of list ORACLE-L
Does anyone know why system tablespace is changing?
I'm doing an fromuser touser import and the system tablespace is for some reason is being written to.
Here what is being reported:
IMP-00017: following statement failed with ORACLE
error 1652:
"CREATE UNIQUE INDEX "PK_BF" ON "PAGE" ("ID" ) P"
"CTFREE 10 INITRANS 2 MAXTRANS 255 STORAGE(INITIAL
65536) "
" LOGGING"
65536) "
" LOGGING"
TIA abdul latif
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: abdul latif INET: abdulatif52_at_yahoo.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Rajesh Dayal INET: Rajesh_at_ohitelecom.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Sat May 12 2001 - 02:12:26 CDT