Error: ORA-01654: unable to extend index APPLSYS.SYS_IOT_TOP_34179 by 16 in

Hi,
I am using Oracle API (HzLocationV2Pub.LocationRec) to update record and getting the following error message in JDeveloper log and couldn't able to update.
x_return_status : U
x_msg_data : Unexpected SQL error encountered during synchronization:
Procedure: sync_party_site
Error: ORA-01654: unable to extend index APPLSYS.SYS_IOT_TOP_34179 by 16 in tablespace APPS_TS_QUEUES
Please contact the system administrator.
x_msg_count : 1
What is the reason behind this error?
How to resolve this?
Thanks & Regards,
Sagarika

Hi,
You need to add more space to your datafile/tablespace, or extend the index.
SQL> alter index APPLSYS.SYS_IOT_TOP_34179 storage (maxextents unlimited);
SQL> ALTER TABLESPACE <tablespace name> ADD DATAFILE '<full path and file name>' SIZE <integer> <K|M>; Note: 1025288.6 - How to Diagnose and Resolve UNABLE TO EXTEND Errors
https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=1025288.6
Note: 19049.1 - OERR: ORA 1654 unable to extend index by for tablespace
https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=19049.1
Note: 762273.1 - ORA-1654: unable to extend index
https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=762273.1
Regards,
Hussein

Similar Messages

  • ORA-01654: unable to extend index user.index_x by 16 in tablespace tablespa

    Hi all,
    I get the error message : ORA-01654: unable to extend index user.index_x by 16 in tablespace tablespace_t after an insert into table table_x(having the index index_x ).
    Could you please help me ? Should I add new datafile? Is there any other solution
    I have get this message before, I have added new datafile to this tablespace,
    ALTER TABLESPACE tablespace_t ADD DATAFILE 'C:\APP\...\ORADATA\MABASE\S_TAB_user02.DBF' SIZE 500M
    AUTOEXTEND ON NEXT 100M MAX SIZE 1000M;
         TABLESPACE_NAME     ALLOUE     OCCUPE     LIBRE
    1     tablespace_t     5720     5421     297

    i think that would work.. And also if the error still persists then you have to tune the queries which are cost effective..For that you have to wait until you get the same error after addition of the datafile..Cheers!

  • ORA-01654 unable to extend index

    Hello,
    while inserting a new record with this statment:
    INSERT INTO vocc.VOC_CM_ANNUNCIO ( ID_RECORD, TIPO_AZIONE, ID_VOC_OPERATORE, ID_ANN_FONTE, COD_NAZIONE,
    COD_REGIONE, COD_PROVINCIA, COD_COMUNE, LOCALITA_ESTERA, DATORE_LAVORO, FLG_PUBBLICA_DATORE,
    TELEFONO, FLG_PUBBLICA_TELEFONO, FAX, FLG_PUBBLICA_FAX, EMAIL, FLG_PUBBLICA_EMAIL, SITO_INTERNET,
    FLG_PUBBLICA_SITO_INTERNET, CLASSIFICAZIONE, POSIZIONE, NUMERO_POSTI, COD_CONTRATTO,
    COD_ORARIO_LAVORO, DURATA_CONTRATTO, NOTE, ETA_MINIMA, ETA_MASSIMA, COD_MILITARE, COD_AUTOMUNITO,
    COD_DISPONIBILITA_TRASFERTA, COD_DISPONIBILITA_TURNI, COD_DISPONIBILITA_FORMAZIONE,
    COD_FIGURA_PROFESSIONALE, COMPETENZE, DATA_PUBBLICAZIONE, DATA_SCADENZA, TIPO_RAPPORTO,
    FLG_FORMA ) VALUES (
    14781, 'ins', '20', '1', NULL, '01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
    , NULL, NULL, NULL, NULL, NULL, NULL, '3', NULL, NULL, NULL, 'Disponibili immediatamente'
    , '20', '50', NULL, NULL, NULL, NULL, NULL, '122504', NULL, '01/01/2006', '31/01/2006'
    , 'CLI', 'D');
    I got the following error.
    ORA-01654: unable to extend index VOCC.PK_VOC_CM_ANNUNCIO by 128 in tablespace VOCC_IDX
    Instead if I execute this statment:
    INSERT INTO vocc.VOC_CM_ANNUNCIO ( ID_RECORD, TIPO_AZIONE, ID_VOC_OPERATORE, ID_ANN_FONTE, COD_NAZIONE,
    COD_REGIONE, COD_PROVINCIA, COD_COMUNE, LOCALITA_ESTERA, DATORE_LAVORO, FLG_PUBBLICA_DATORE,
    TELEFONO, FLG_PUBBLICA_TELEFONO, FAX, FLG_PUBBLICA_FAX, EMAIL, FLG_PUBBLICA_EMAIL, SITO_INTERNET,
    FLG_PUBBLICA_SITO_INTERNET, CLASSIFICAZIONE, POSIZIONE, NUMERO_POSTI, COD_CONTRATTO,
    COD_ORARIO_LAVORO, DURATA_CONTRATTO, NOTE, ETA_MINIMA, ETA_MASSIMA, COD_MILITARE, COD_AUTOMUNITO,
    COD_DISPONIBILITA_TRASFERTA, COD_DISPONIBILITA_TURNI, COD_DISPONIBILITA_FORMAZIONE,
    COD_FIGURA_PROFESSIONALE, COMPETENZE, DATA_PUBBLICAZIONE, DATA_SCADENZA, TIPO_RAPPORTO,
    FLG_FORMA ) VALUES (
    1999, 'ins', '20', '1', NULL, '01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
    , NULL, NULL, NULL, NULL, NULL, NULL, '3', NULL, NULL, NULL, 'Disponibili immediatamente'
    , '20', '50', NULL, NULL, NULL, NULL, NULL, '122504', NULL, '01/01/2006', '31/01/2006'
    , 'CLI', 'D');
    I have no problem.
    select max(ID_RECORD) from vocc.VOC_CM_ANNUNCIO = 14785
    Could anyone please explain, how to solve this problem.
    Thank you,
    Regards,
    Lavinia

    Okay,
    this is table structure:
    CREATE TABLE VOC_CM_ANNUNCIO
    ID_RECORD NUMBER NOT NULL,
    TIPO_AZIONE VARCHAR2(3),
    ID_VOC_OPERATORE VARCHAR2(10),
    ID_ANN_FONTE VARCHAR2(20),
    COD_NAZIONE VARCHAR2(4),
    COD_REGIONE VARCHAR2(2),
    COD_PROVINCIA VARCHAR2(3),
    COD_COMUNE VARCHAR2(4),
    LOCALITA_ESTERA VARCHAR2(100),
    DATORE_LAVORO VARCHAR2(305),
    FLG_PUBBLICA_DATORE VARCHAR2(1),
    TELEFONO VARCHAR2(20),
    FLG_PUBBLICA_TELEFONO VARCHAR2(1),
    FAX VARCHAR2(20),
    FLG_PUBBLICA_FAX VARCHAR2(1),
    EMAIL VARCHAR2(50),
    FLG_PUBBLICA_EMAIL VARCHAR2(1),
    SITO_INTERNET VARCHAR2(105),
    FLG_PUBBLICA_SITO_INTERNET VARCHAR2(1),
    CLASSIFICAZIONE VARCHAR2(4),
    POSIZIONE VARCHAR2(300),
    NUMERO_POSTI VARCHAR2(3),
    COD_CONTRATTO VARCHAR2(4),
    COD_ORARIO_LAVORO VARCHAR2(3),
    DURATA_CONTRATTO VARCHAR2(2),
    NOTE VARCHAR2(200),
    ETA_MINIMA VARCHAR2(2),
    ETA_MASSIMA VARCHAR2(2),
    COD_MILITARE VARCHAR2(1),
    COD_AUTOMUNITO VARCHAR2(1),
    COD_DISPONIBILITA_TRASFERTA VARCHAR2(1),
    COD_DISPONIBILITA_TURNI VARCHAR2(1),
    COD_DISPONIBILITA_FORMAZIONE VARCHAR2(1),
    COD_FIGURA_PROFESSIONALE VARCHAR2(6),
    COMPETENZE VARCHAR2(300),
    DATA_PUBBLICAZIONE VARCHAR2(10),
    DATA_SCADENZA VARCHAR2(10),
    TIPO_RAPPORTO VARCHAR2(3),
    FLG_FORMA VARCHAR2(1)
    TABLESPACE VOCC_TBL
    PCTUSED 40
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 168K
    NEXT 1M
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    FREELISTS 1
    FREELIST GROUPS 1
    BUFFER_POOL DEFAULT
    LOGGING
    NOCACHE
    NOPARALLEL;
    The PK is:
    CREATE UNIQUE INDEX PK_VOC_CM_ANNUNCIO ON VOC_CM_ANNUNCIO
    (ID_RECORD)
    NOLOGGING
    TABLESPACE VOCC_IDX
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 32K
    NEXT 1M
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    FREELISTS 1
    FREELIST GROUPS 1
    BUFFER_POOL DEFAULT
    NOPARALLEL;
    And the tbl:
    CREATE TABLESPACE VOCC_IDX DATAFILE
    MINIMUM EXTENT 512K
    LOGGING
    DEFAULT STORAGE (
    INITIAL 1M
    NEXT 1M
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    ONLINE
    PERMANENT
    EXTENT MANAGEMENT DICTIONARY;

  • ORA-01654: unable to extend index DRM_DB.IDXREL02 by 1024 in tablespace DRM_INDEX

    Hi
    I am running an action script in DRM 11.1.2.1 and I received the following error on some of the lines of the script: ORA-01654: unable to extend index DRM_DB.IDXREL02 by 1024 in tablespace DRM_INDEX.
    Does anyone know what this means, and what is the fix?
    Thanks,

    The issue was caused because the  DRM_DB.IDXREL02 tablespace was maxed out.
    Add the datafile to existing 'IDXREL02' tablespace to increase the size.
    example -
    sql> alter tablespace DRM_DB.IDXREL02 add datafile 'file>/IDXREL02.dbf' size 500M autoextend on;
    Thanks,
    ~KKT~

  • ORA-01654: unable to extend index BNE.BNE_CONTENT_COLS_B_UK2 by 15 in table

    Dear Gurus:
    Following workers fail during upgrade from 11.5.10 to 12.1.1, i am u6678700.drv :
    ATTENTION: All workers either have failed or are waiting:
    FAILED: file pqpzzossempintg.ldt on worker 1.
    FAILED: file pqpzzflxcnt.ldt on worker 2.
    FAILED: file pqpzzflxmap.ldt on worker 3.
    FAILED: file pqpzzossempmap.ldt on worker 4.
    Adworker Log file Details:
    Loading data using FNDLOAD function.
    FNDLOAD APPS/***** 0 Y UPLOAD @BNE:patch/115/import/bnecont.lct @PQP:patch/115/import/US/pqpzzflxcnt.ldt -
    Connecting to APPS......Connected successfully.
    Calling FNDLOAD function.
    Returned from FNDLOAD function.
    Log file: /data/oracle/PRD/apps/apps_st/appl/admin/PRD/log/US_pqpzzflxcnt_ldt.log
    Error calling FNDLOAD function.
    Time when worker failed: Sat Oct 17 2009 16:53:51
    Now i have alos checked the US_pqpzzflxcnt_ldt.log details are mention below:
    Current system time is Sat Oct 17 14:39:52 2009
    Uploading from the data file /data/oracle/PRD/apps/apps_st/appl/pqp/12.0.0/patch/115/import/US/pqpzzflxcnt.ldt
    Altering database NLS_LANGUAGE environment to AMERICAN
    Dumping from LCT/LDT files (/data/oracle/PRD/apps/apps_st/appl/bne/12.0.0/patch/115/import/bnecont.lct(120.0), /data/oracle/PRD/apps/apps_st/appl/pqp/12.0.0/patch/115/import/US/pqpzzflxcnt.ldt) to staging tables
    Dumping LCT file /data/oracle/PRD/apps/apps_st/appl/bne/12.0.0/patch/115/import/bnecont.lct(120.0) into FND_SEED_STAGE_CONFIG
    Dumping LDT file /data/oracle/PRD/apps/apps_st/appl/pqp/12.0.0/patch/115/import/US/pqpzzflxcnt.ldt into FND_SEED_STAGE_ENTITY
    Dumped the batch (BNE_CONTENTS PQP PQP_FLEXI_WEBADI_CNT , BNE_CONTENT_COLS 286 ) into FND_SEED_STAGE_ENTITY
    Uploading from staging tables
    Error loading seed data for BNE_CONTENT_COLS: CONTENT_ASN = PQP, CONTENT_CODE = PQP_FLEXI_WEBADI_CSV_CNT, SEQUENCE_NUM = 26, ORA-01654: unable to extend index BNE.BNE_CONTENT_COLS_B_UK2 by 15 in tablespace BNEX
    ORA-06512: at "APPS.BNE_CONTENT_COLS_PKG", line 25
    ORA-06512: at "APPS.BNE_CONTENT_COLS_PKG", line 441
    ORA-01403: no data found
    Concurrent request completed
    Current system time is Sat Oct 17 14:39:53 2009
    After looking at the error i did the following:
    alter database datafile '/data/oracle/prddata/benx01.dbf' resize 2G;
    alter database datafile '/data/oracle/prddata/benx01.dbf' autoextend on next 100m maxsize 3G;
    ALTER TABLESPACE BENX ADD DATAFILE '/data/oracle/prddata/benx02.dbf' size 500m AUTOEXTEND ON;
    But still the issue remains, please help in resolving the same
    Thanks & Regards
    Kiran Rana

    Dear Guru,
    Followed both the documents which i have already followed, but no much of use as following query alos does not return any rows:
    select segment_name, owner, extents, max_extents
    from dba_segments
    where segment_type = 'INDEX' and
    (extents +1) >= max_extents;
    Any other thing which i need to check
    Regards
    Kiran Rana

  • ORA-1653: unable to extend table APPLSYS.FND_ENV_CONTEXT by 16

    Database version : 10.2.0.2
    When a Query is executed from an Oracle Application Self Service Page , we are hitting the following exception from JDBC
    ## Detail 0 ##
    java.sql.SQLException: ORA-21710: argument is expecting a valid memory address of an object
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:745)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:216)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:966)
         at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1062)
    When checking the alert.log we are getting different error
    ORA-1653: unable to extend table APPLSYS.FND_ENV_CONTEXT by 16
    The above error was not coming till June 1st. we are initially getting error
    ORA-00604: error occurred at recursive SQL level 1
    ORA-04031: unable to allocate 32 bytes of shared memory ("shared
    pool","select count(*) from sys.job...","sql area","tmp")
    Kindly advise whether this is known issue or a bug. Any Pointers to known issues of specific DBMS Versions.
    Thanks
    Joseph

    Find the tablespace where APPLSYS.FND_ENV_CONTEXT and see if you can add space to it.

  • ORA-1654 - Unable to extend index

    We have an oracle apps server and we started experiencing ORA-1654 errors. After digging through log files we found an error: ORA-1654: unable to extend index JTF.JTF_IH_ACTIVITIES_N6 by 16 in tablespace APPS_TS_TX_IDX.
    From what I can figure we need to add a datafile to our system. We currently have 4 datafiles that are 4Gb each. Is this the correct solution? If so what is the safest way to do this. Can I copy the 4 DB files to an alternate location and restore that way if the adding file doesn't work or what is the best practice for this type of action? Thanks

    There are currently 4 entries for that tablespace, pointing to all 4 db files. The entry for db file #4 is auto extensible, if you subtract user_bytes from max_bytes you get 1310672 which is about 1024kb. so I assume this means it is full? The other three table references are auto extensible = N and max_bytes, max_blocks, increment_by are all 0.
    Since this file seems to be full, and assuming that the 4Gb per file limit was set up for a particular reason. If I wanted to create another file for this tablespace I just 'alter tablespace APPS_TS_TX_IDX add datafile '/path to datafile' size XXXM;' and that is it despite the 4 entries for this tablespace?
    Do I need to backup data in order to perform this? It is a production system and data loss is not an option.
    Do I need to shut down all services (Apps, portal, etc) before I add the datafile?
    Thanks for your help!

  • ORA-1654:unable to extend index CDTRANS_DET by 1068 in tablespace INDEXES

    Hi All,
    I am getting below error
    ORA-1654:unable to extend index CDTRANS_DET by 1068 in tablespace INDEXES.
    I have checked space of INDEXES tablespace and it having 2 GB free space.
    Oracle version--7
    Os-------unix
    Kindly help me out.
    Thanks

    hi,
    your block size?
    Check How often do they extend? how big are they? the NEXT EXTENT size
    may
    not be appropriate.
    try this too
    alter index/table name deallocate unused
    alter tablespace name coalescs; 3. run querys to check dba_free_space and dba_data_files
    regards,
    Deepak

  • ORA-1653 (unable to extend table) and ORA-1654  (unable to extend index)

    Hi,
    We recently installed 12c.r1 and have it running now form some three weeks. About 100 assets currently in it.
    When trying to add a new discovery profile a received an error message from the BUI, in the cacao log from the EC i found a lot java exceptions caused (probably by : Internal Exception: java.sql.SQLException: ORA-01653: unable to extend table OC.PERSISTENTALERT by 8 in tablespace OC_DEFAULT_TS)
    When looking at the alert log from the database i found its full with ORA-1653 and ORA-1654 messages; (and still those errors are being put in the alert logfile on a continues basis.)
    ORA-1653: unable to extend table OC.PERSISTENTALERT by 8 in tablespace OC_DEFAULT_TS
    ORA-1653: unable to extend table OC.PERSISTENTALERT by 8 in tablespace OC_DEFAULT_TS
    ORA-1653: unable to extend table OC.VDO_SERVICE_INFO by 128 in tablespace OC_DEFAULT_TS
    ORA-1653: unable to extend table OC.VDO_SERVICE_INFO by 128 in tablespace OC_DEFAULT_TS
    ORA-1653: unable to extend table OC.PERSISTENTALERT by 8 in tablespace OC_DEFAULT_TS
    ORA-1653: unable to extend table OC.PERSISTENTALERT by 8 in tablespace OC_DEFAULT_TS
    And
    ORA-1654: unable to extend index OC.VMB_RESOURC_ASSOCIA_ID_UNQIDX by 8 in tablespace OC_DEFAULT_TS
    ORA-1654: unable to extend index OC.VMB_RESOURC_ASSOCIA_ID_UNQIDX by 8 in tablespace OC_DEFAULT_TS
    ORA-1654: unable to extend index OC.VMB_RESOURC_ASSOCIA_ID_UNQIDX by 8 in tablespace OC_DEFAULT_TS
    ORA-1654: unable to extend index OC.VMB_RESOURCE_CAPABIL1_UNQIDX by 128 in tablespace OC_DEFAULT_TS
    ORA-1654: unable to extend index OC.VMB_RESOURCE_CAPABIL1_UNQIDX by 128 in tablespace OC_DEFAULT_TS
    ORA-1654: unable to extend index OC.VMB_RESOURCE_CAPABIL1_UNQIDX by 128 in tablespace OC_DEFAULT_TS
    Only thing i could think of would be a space issue in the filesystem. But there's still some 15G of free space available for the DB to extend.
    Any clues as to where to find the cause of this?
    Thanks in advance
    Kind regards
    Patrick

    Hi,
    Sorry for the late response (wasn't in the office last week)
    I'v extended the zpool with additional LUN's , now there is 168GB of free space (total DB size now 42GB) so, efficient free space should be available. After a restart of the DB unfortunately again the alert file is flooded with ORA-1653 / 64 messages on a continues basis;
    ORA-1654: unable to extend index OC.VDO_SENSOR_INFO_ID_UNQIDX by 8 in tablespace OC_DEFAULT_TS
    ORA-1654: unable to extend index OC.VDO_SENSOR_INFO_ID_UNQIDX by 8 in tablespace OC_DEFAULT_TS
    ORA-1654: unable to extend index OC.VDO_ALERT_MONITOR_ST1_UNQIDX by 8 in tablespace OC_DEFAULT_TS
    ORA-1654: unable to extend index OC.VDO_ALERT_MONITOR_ST1_UNQIDX by 8 in tablespace OC_DEFAULT_TS
    ORA-1654: unable to extend index OC.VDO_SENSOR_INFO_ID_UNQIDX by 8 in tablespace OC_DEFAULT_TS
    ORA-1654: unable to extend index OC.VDO_SENSOR_INFO_ID_UNQIDX by 8 in tablespace OC_DEFAULT_TS
    ORA-1654: unable to extend index OC.VDO_SENSOR_INFO_ID_UNQIDX by 8 in tablespace OC_DEFAULT_TS
    ORA-1654: unable to extend index OC.VDO_SENSOR_INFO_ID_UNQIDX by 8 in tablespace OC_DEFAULT_TS
    ORA-1653: unable to extend table OC.PERSISTENTALERT by 8 in tablespace OC_DEFAULT_TS
    ORA-1653: unable to extend table OC.PERSISTENTALERT by 8 in tablespace OC_DEFAULT_TS
    Mon Jul 16 13:56:46 2012
    ORA-1653: unable to extend table OC.PERSISTENTALERT by 8 in tablespace OC_DEFAULT_TS
    ORA-1653: unable to extend table OC.PERSISTENTALERT by 8 in tablespace OC_DEFAULT_TS
    ORA-1653: unable to extend table OC.PERSISTENTALERT by 8 in tablespace OC_DEFAULT_TS
    ORA-1653: unable to extend table OC.PERSISTENTALERT by 8 in tablespace OC_DEFAULT_TS
    ORA-1653: unable to extend table OC.PERSISTENTALERT by 8 in tablespace OC_DEFAULT_TS
    ORA-1653: unable to extend table OC.PERSISTENTALERT by 8 in tablespace OC_DEFAULT_TS
    Mon Jul 16 13:56:55 2012
    ORA-1654: unable to extend index OC.VDO_SENSOR_INFO_ID_UNQIDX by 8 in tablespace OC_DEFAULT_TS
    ORA-1654: unable to extend index OC.VDO_SENSOR_INFO_ID_UNQIDX by 8 in tablespace OC_DEFAULT_TS
    Mon Jul 16 13:57:02 2012
    ORA-1653: unable to extend table OC.PERSISTENTALERT by 8 in tablespace OC_DEFAULT_TS
    ORA-1653: unable to extend table OC.PERSISTENTALERT by 8 in tablespace OC_DEFAULT_TS
    ORA-1653: unable to extend table OC.PERSISTENTALERT by 8 in tablespace OC_DEFAULT_TS
    ORA-1653: unable to extend table OC.PERSISTENTALERT by 8 in tablespace OC_DEFAULT_TS
    etc,.....etc,......etc,.....
    Unsure what to do.
    Check the PCT_USED with a script and found;
    NAME MBYTES USED FREE PCT_USED LARGEST MAX_SIZE PCT_MAX_USED EXTENT_MAN SEGMEN
    USERS 5 1.31 3.69 26.25 3.69 32767.98 0 LOCAL AUTO
    OC_INDEX_TS 100 1 99 1 99 32767 0 LOCAL AUTO
    OC_DATA_TS 100 1 99 1 99 32767 0 LOCAL AUTO
    TEMP 174 174 0 100 0 32767.98 .53 LOCAL MANUAL
    SYSTEM 720 711.31 8.69 98.79 8 32767.98 2.17 LOCAL MANUAL
    SYSAUX 1230 1148.44 81.56 93.37 64.44 32767.98 3.5 LOCAL AUTO
    UNDOTBS1 7625 445.75 7179.25 5.85 3656 32767.98 1.36 LOCAL MANUAL
    OC_DEFAULT_TS 32767 32767 0 100 0 32767 100 LOCAL AUTO
    8 rows selected.
    Seems the OC_DEFAULT_TS is 100% full.
    Shouldn't this autoextend?!?
    I'm no DBA, and the OPCenter installation is default 'out-of-the-box' on a new system. Only running for a month now with about 100 assets.
    Any help appreciated
    Thanks
    Patrick
    Edited by: Patrick on Jul 16, 2012 3:13 PM
    Edited by: Patrick on Jul 16, 2012 3:15 PM

  • ORA-1654: unable to extend index DMDB.PK24_MEMBER_RELATIONSHIP by 128 in ta

    Hi
    I got following error.Please advise me what action i should go for.
    ORA-1654: unable to extend index DMDB.PK24_MEMBER_RELATIONSHIP by 128 in tablespace
    Regards,
    RJ

    You maybe need to increase the size of a datafile (or add a datafile) to the tablespace where the index is.
    And retry your last action.
    Nicolas.

  • ORA-1654:unable to extend index SYSTEM.X2EC_ERROR_LOG by 122880 in tablesp

    Hi All,
    Please Help me in this....!
    We got the following error in our DB....
    Thu Jul 9 05:50:40 2009
    ORA-1654: unable to extend index SYSTEM.X2EC_ERROR_LOG by 122880 in tablespace SYSTEM
    ORA-1654: unable to extend index SYSTEM.X2EC_ERROR_LOG by 122880 in tablespace SYSTEM
    Now(3 hrs after this error) if we monitor our tablespaces through EM, every thing is fine and 12G freespace on SYSTEM tablespace.
    Please UPDATE ASAP
    Thanx
    Rama Krishna N K J

    01654, 00000, "unable to extend index %s.%s by %s in tablespace %s"
    // *Cause:  Failed to allocate an extent of the required number of blocks for
    //          an index segment in the tablespace indicated.
    // *Action: Use ALTER TABLESPACE ADD DATAFILE statement to add one or more
    //          files to the tablespace indicated.

  • ORA-1691: unable to extend lobsegment APPLSYS.SYS_LOB0000070652C00004$$ by

    hi gurus,
    i got this error when trying to export large data.
    need help ...
    tqvmch

    Hi,
    Please post the application release, database version and the OS.
    How do you get this error?
    Try the steps in (Note: 378377.1 - Ora-1691: Unable To Extend Lobsegment Applsys.Sys_lob0000033489c00004$$ By 92170) and see if it helps.
    Thanks,
    Hussein

  • ORA-1653: unable to extend table APPLSYS.FND_LOG_MESSAGES by 128 in

    ORA-1653: unable to extend table APPLSYS.FND_LOG_MESSAGES by 128 in tablespace FND_TAB
    as this getting in alert log.........

    Hi,
    Please implement the solutions outlined in the following document.
    Note: 743785.1 - How I resolved ORA-1653 on APPS_TS_TX_DATA tablespace
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=743785.1
    Regards,
    Hussein

  • READER_1_1_1RR_4035SQL Error [ ORA-01652: unable to extend temp segment b

    Hi,
    I am still facing the error for table space evnthough datafile is avl
    READER_1_1_1     RR_4035     SQL Error [
    ORA-01652: unable to extend temp segment by 128 in tablespace TEMP2
    Database driver error...
    Function Name : Execute
    SQL Stmt : SELECT
    ONLINE     DATA     PERMANENT     LOCAL     200     0.063     0.03
    ONLINE     DEV1_BIPLATFORM     PERMANENT     LOCAL     64     44.313     69.24
    ONLINE     DEV1_IAS_TEMP     TEMPORARY     LOCAL     100     0     0
    ONLINE     DEV1_MDS     PERMANENT     LOCAL     100     5.438     5.44
    ONLINE     DEV_BIPLATFORM     PERMANENT     LOCAL     64     44.313     69.24
    ONLINE     DEV_IAS_TEMP     TEMPORARY     LOCAL     100     0     0
    ONLINE     DEV_MDS     PERMANENT     LOCAL     100     5.438     5.44
    ONLINE     EXAMPLE     PERMANENT     LOCAL     975.188     109.125     11.19
    ONLINE     FLA_TBS1     PERMANENT     LOCAL     10     0.063     0.63
    ONLINE     MES_DW2     PERMANENT     LOCAL     2,091.19     1,794.19     85.8
    ONLINE     SYSAUX     PERMANENT     LOCAL     1,245.38     906.938     72.82
    ONLINE     SYSTEM     PERMANENT     LOCAL     3,300.00     2,429.44     73.62
    ONLINE     TEMP     TEMPORARY     LOCAL     24,458.00     5,020.00     20.52
    ONLINE     TOOLS     PERMANENT     LOCAL     1,050.00     0.063     0.01
    ONLINE     UNDOTBS1     UNDO     LOCAL     2,670.00     95.438     3.57
    ONLINE     USERS     PERMANENT     LOCAL     43,530.98     30,366.30     69.76

    No Sense:
    ORA-01652: unable to extend temp segment by 128 in tablespace TEMP2
    tablespace TEMP2
    Database driver error...
    Function Name : Execute
    SQL Stmt : SELECT
    ONLINE     DATA     PERMANENT     LOCAL     200     0.063     0.03
    ONLINE     DEV1_BIPLATFORM     PERMANENT     LOCAL     64     44.313     69.24
    ONLINE     DEV1_IAS_TEMP     TEMPORARY     LOCAL     100     0     0
    ONLINE     DEV1_MDS     PERMANENT     LOCAL     100     5.438     5.44
    ONLINE     DEV_BIPLATFORM     PERMANENT     LOCAL     64     44.313     69.24
    ONLINE     DEV_IAS_TEMP     TEMPORARY     LOCAL     100     0     0
    ONLINE     DEV_MDS     PERMANENT     LOCAL     100     5.438     5.44
    ONLINE     EXAMPLE     PERMANENT     LOCAL     975.188     109.125     11.19
    ONLINE     FLA_TBS1     PERMANENT     LOCAL     10     0.063     0.63
    ONLINE     MES_DW2     PERMANENT     LOCAL     2,091.19     1,794.19     85.8
    ONLINE     SYSAUX     PERMANENT     LOCAL     1,245.38     906.938     72.82
    ONLINE     SYSTEM     PERMANENT     LOCAL     3,300.00     2,429.44     73.62
    ONLINE     TEMP     TEMPORARY     LOCAL     24,458.00     5,020.00     20.52
    ONLINE     TOOLS     PERMANENT     LOCAL     1,050.00     0.063     0.01
    ONLINE     UNDOTBS1     UNDO     LOCAL     2,670.00     95.438     3.57
    ONLINE     USERS     PERMANENT     LOCAL     43,530.98     30,366.30     69.76
    tablespace TEMP2 doesn't exist.
    i used statement
    ALTER TABLESPACE temp
    ADD TEMPFILE 'D:\app\TEMP16.DBF' SIZE 128M autoextend on;
    ALTER TABLESPACE
    USERS ADD DATAFILE 'D:\app\SYS00.DBF' SIZE 1080M autoextend on;
    alter user DATAWAREHOUSE quota unlimited on USERS
    why add datafile in user tablespace¿?
    and you solved the issue doing the same like we told you a few days before in:
    ORA-1652: unable to extend temp segment by 128 in tablespace
    unable to create INITIAL extent for segment in tablespace USERS
    Remember close your threads:
    896398     
    Handle:      896398 
    Status Level:      Newbie
    Registered:      Nov 9, 2011
    Total Posts:      530
    Total Questions:      158 (116 unresolved)

  • Can not connect to DB after this message: ORA-1654: unable to extend index

    Hi Experts;
    Right now I got this problem in my DB, ORA-1654: unable to extend index RADIT.RADITDATA_USERNAME_IDX by 8192 in tablespace RADIT_DATA_IDX.
    But, I was trying to connect to the DB, but it's not accepting connections.
    This DB is oracle 9i , running in Red Hat Enterprise Linux ES release 3.
    I was looking thru google, but all the options is to alter the tablesplace/datafile, but I can not do that, because I cann't connect.
    Have an idea, what can I do?
    Please, any idea is welcome.
    Thanks for your help.
    Regards
    Al

    Here are the lines requested:
    hu Jun 14 22:00:21 2012
    Thread 1 advanced to log sequence 52031
    Current log# 3 seq# 52031 mem# 0: /home/oracle/oracle/product/10.2.0/redo/redo_g3_01.log
    Current log# 3 seq# 52031 mem# 1: /home/oracle/oracle/product/10.2.0/redo/redo_g3_02.log
    Fri Jun 15 05:00:36 2012
    ORA-1654: unable to extend index RADIT.RADITDATA_USERNAME_IDX by 8192 in tablespace RADIT_DATA_IDX
    Fri Jun 15 21:00:46 2012
    Thread 1 advanced to log sequence 52032
    Current log# 2 seq# 52032 mem# 0: /home/oracle/oracle/product/10.2.0/redo/redo_g2_01.log
    Current log# 2 seq# 52032 mem# 1: /home/oracle/oracle/product/10.2.0/redo/redo_g2_02.log
    Sat Jun 16 05:00:48 2012
    ORA-1654: unable to extend index RADIT.RADITDATA_USERNAME_IDX by 8192 in tablespace RADIT_DATA_IDX
    Sat Jun 16 19:07:19 2012
    Thread 1 advanced to log sequence 52033
    Current log# 1 seq# 52033 mem# 0: /home/oracle/oracle/product/10.2.0/redo/redo_g1_01.log
    Current log# 1 seq# 52033 mem# 1: /home/oracle/oracle/product/10.2.0/redo/redo_g1_02.log
    Sun Jun 17 05:00:20 2012
    ORA-1654: unable to extend index RADIT.RADITDATA_USERNAME_IDX by 8192 in tablespace RADIT_DATA_IDX
    Sun Jun 17 22:00:48 2012
    Thread 1 advanced to log sequence 52034
    Current log# 3 seq# 52034 mem# 0: /home/oracle/oracle/product/10.2.0/redo/redo_g3_01.log
    Current log# 3 seq# 52034 mem# 1: /home/oracle/oracle/product/10.2.0/redo/redo_g3_02.log
    Mon Jun 18 05:00:19 2012
    ORA-1654: unable to extend index RADIT.RADITDATA_USERNAME_IDX by 8192 in tablespace RADIT_DATA_IDX
    Mon Jun 18 22:00:47 2012
    Thread 1 advanced to log sequence 52035
    Current log# 2 seq# 52035 mem# 0: /home/oracle/oracle/product/10.2.0/redo/redo_g2_01.log
    Current log# 2 seq# 52035 mem# 1: /home/oracle/oracle/product/10.2.0/redo/redo_g2_02.log
    Tue Jun 19 05:03:21 2012
    ORA-1654: unable to extend index RADIT.RADITDATA_USERNAME_IDX by 8192 in tablespace RADIT_DATA_IDX
    Tue Jun 19 19:09:42 2012
    Thread 1 advanced to log sequence 52036
    Current log# 1 seq# 52036 mem# 0: /home/oracle/oracle/product/10.2.0/redo/redo_g1_01.log
    Current log# 1 seq# 52036 mem# 1: /home/oracle/oracle/product/10.2.0/redo/redo_g1_02.log
    Wed Jun 20 05:00:34 2012
    ORA-1654: unable to extend index RADIT.RADITDATA_USERNAME_IDX by 8192 in tablespace RADIT_DATA_IDX
    Wed Jun 20 21:22:40 2012
    Thread 1 advanced to log sequence 52037
    Current log# 3 seq# 52037 mem# 0: /home/oracle/oracle/product/10.2.0/redo/redo_g3_01.log
    Current log# 3 seq# 52037 mem# 1: /home/oracle/oracle/product/10.2.0/redo/redo_g3_02.log
    Thu Jun 21 05:00:54 2012
    ORA-1654: unable to extend index RADIT.RADITDATA_USERNAME_IDX by 8192 in tablespace RADIT_DATA_IDX
    Thu Jun 21 21:00:12 2012
    Thread 1 advanced to log sequence 52038
    Current log# 2 seq# 52038 mem# 0: /home/oracle/oracle/product/10.2.0/redo/redo_g2_01.log
    Current log# 2 seq# 52038 mem# 1: /home/oracle/oracle/product/10.2.0/redo/redo_g2_02.log
    Hope you can get a better idea of this problem.

Maybe you are looking for

  • Fiscal calendars in time series

    we are using fiscal year variant for calendars where year start with November 25 and ends with November 24th with 12 periods. Trouble is now we are having time bucket profiles where period considered for Fall and Spring seasons. Spring Season YS (8/4

  • Which iMac should i buy?

    I have been using my laptop (compaq pesario CQ60, if your interested) for the last five years and it is getting old and slow. I want to invest in a new imac 21.5" but have no idea what spec i will need. the main things that i need it for are: interne

  • Invalid API Key Error in Ecosign API

    I'm using the sample soap code(Developer kit) given by echosign api for testping, but it always show invalid api key error while i'm executing from terminal. Please give the solution as soon as possible, and i'm not able to get solution from google a

  • Which pieces of the repository?

    The WebLogic install identifies the Repository Creation Utility (RCU) as a required additional download. And the RCU wants to create and populate a large number of database schemas. Our DBA's are understandably skeptical. So I'm trying to find out wh

  • Sapscript & smartform upgrade issue

    Can anyone please let me know the issues faced while upgrading sapscript and smartform in documents like purcchase order,sales order and invoice.