Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: ORA-1652: unable to extend temp segment by 8091 in tablespace

RE: ORA-1652: unable to extend temp segment by 8091 in tablespace

From: <Jared.Still_at_radisys.com>
Date: Fri, 15 Aug 2003 15:29:23 -0800
Message-ID: <F001.005CAF4F.20030815152923@fatcity.com>


You need to change the default tablespace for those OPS$ users

alter user OPS$ORAQA2 default tablespace PSAPUSER1D;

and

alter user OPS$QA2ADM default tablespace PSAPUSER1D;

should do it.

The only user that should have the SYSTEM tablespace as a default is the SYS user. All others should be somewhere else.

use this this query to check for others:

select username
from dba_users
where default_tablespace = 'SYSTEM'
and username not in ('SYS');

Jared

"Roger Xu" <roger_xu_at_dp7uptx.com>
 08/15/2003 02:46 PM  

        To:     <Jared.Still_at_radisys.com>, <ORACLE-L_at_fatcity.com>
        cc: 
        Subject:        RE: ORA-1652: unable to extend temp segment by 8091 in tablespace  SYSTEM


USERNAME        DEFAULT_TABLESP TEMPORARY_TABLE
--------------- --------------- ---------------
SAPR3           PSAPUSER1D      PSAPTEMP
OPS$ORAQA2      SYSTEM          PSAPTEMP
OPS$QA2ADM      SYSTEM          PSAPTEMP
 

-----Original Message-----
Sent: Friday, August 15, 2003 4:28 PM
To: ORACLE-L_at_fatcity.com
Cc: Roger Xu
Importance: High

What does this query return?

select username, default_tablespace, temporary_tablespace from dba_users
where username like 'OPS$%' or username = 'SAPR3'

Jared

"Roger Xu" <roger_xu_at_dp7uptx.com>
Sent by: ml-errors_at_fatcity.com
 08/15/2003 12:34 PM
 Please respond to ORACLE-L

        
        To:        Multiple recipients of list ORACLE-L 
<ORACLE-L_at_fatcity.com> 
        cc:         
        Subject:        ORA-1652: unable to extend temp segment by 8091 in 
tablespace           SYSTEM



Hello,

While user OPS$ORAQA2 running:
ANALYZE TABLE "SAPR3"."BSIS" COMPUTE STATISTICS FOR TABLE FOR ALL INDEXED COLUMNS SIZE 1 FOR ALL INDEXES I had the following error:
SQL error -1652 at location stats_tab_collect-4 ORA-1652: unable to extend temp segment by 8091 in tablespace SYSTEM

A default temporary tablespace was assigned to the user OPS$ORAQA2.

Thanks,

Roger Xu
Database Administrator
Dr Pepper Bottling Company of Texas
(972)721-8337

--

Please see the official ORACLE-L FAQ: http://www.orafaq.net
--

Author: Roger Xu
 INET: roger_xu_at_dp7uptx.com

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
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).

For technical support please email tech_support_at_dp7uptx.com or you can call (972)721-8257.
This email has been scanned for all viruses by the MessageLabs Email Security System.

--

Please see the official ORACLE-L FAQ: http://www.orafaq.net
--

Author:
  INET: Jared.Still_at_radisys.com

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
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 Fri Aug 15 2003 - 18:29:23 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US