Portal security import/export errors ORA-01653

When doing a security export after a few attempts we are getting the following error
ORA-01653: unable to extend table PORTAL30.WWUTL_SEC_TX_PERSON$ by 2362205 in tablespace PORTAL
Details below
We referred the note related to ORA-01653 on metalink Note:151994.1 and tried the approaches mentioned but nothing seems to fix it.
Is there an isssue with the way the Portal scripts clean up the transport tables.
We are using pORTAL V 3.0.9.8.1 WITH 8.1.7 release of database
Connected to:
Oracle8i Enterprise Edition Release 8.1.7.1.0 - Production
With the Partitioning option
JServer Release 8.1.7.1.0 - Production
Extracting Security Data to transport tables...
Activity Log:
Clearing any existing security data from transport tables
Truncating table WWUTL_SEC_TX_GROUP$
Truncating table WWUTL_SEC_TX_MEMBER$
Truncating table WWUTL_SEC_TX_SYS_PRIV$
Truncating table WWUTL_SEC_TX_PERSON$
Truncating table WWUTL_SEC_TRANSPORT_TABLE$
Begin extracting security data of Portal
Extracting Security Data...
Global Privilege export flag set to: on... (ON = export global privilege, OFF =
do not export global privilege)
...Extracting Users...
WWUTL_API_SecurityTransport.ExtractPerson: ORA-01653: unable to exte
nd table PORTAL30.WWUTL_SEC_TX_PERSON$ by 2362205 in tablespace PORTAL
Disconnected from Oracle8i Enterprise Edition Release 8.1.7.1.0 - Production
With the Partitioning option
JServer Release 8.1.7.1.0 - Production
Export of Security Data Complete

Sudip,
Ravi is the authority in this area. I understand he is already working with you on this issue.
Thanks,
PE

Similar Messages

  • Portal Import/Export errors ORA-01653

    When doing a security export after a few attempts we are getting the following error
    ORA-01653: unable to extend table PORTAL30.WWUTL_SEC_TX_PERSON$ by 2362205 in tablespace PORTAL
    Details below
    We referred the note related to ORA-01653 on metalink Note:151994.1 and tried the approaches mentioned but nothing seems to fix it.
    Is there an isssue with the way the Portal scripts clean up the transport tables.
    We are using pORTAL V 3.0.9.8.1 WITH 8.1.7 release of database
    Connected to:
    Oracle8i Enterprise Edition Release 8.1.7.1.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.1.0 - Production
    Extracting Security Data to transport tables...
    Activity Log:
    Clearing any existing security data from transport tables
    Truncating table WWUTL_SEC_TX_GROUP$
    Truncating table WWUTL_SEC_TX_MEMBER$
    Truncating table WWUTL_SEC_TX_SYS_PRIV$
    Truncating table WWUTL_SEC_TX_PERSON$
    Truncating table WWUTL_SEC_TRANSPORT_TABLE$
    Begin extracting security data of Portal
    Extracting Security Data...
    Global Privilege export flag set to: on... (ON = export global privilege, OFF =
    do not export global privilege)
    ...Extracting Users...
    WWUTL_API_SecurityTransport.ExtractPerson: ORA-01653: unable to exte
    nd table PORTAL30.WWUTL_SEC_TX_PERSON$ by 2362205 in tablespace PORTAL
    Disconnected from Oracle8i Enterprise Edition Release 8.1.7.1.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.1.0 - Production
    Export of Security Data Complete

    This seems to be purely a database related issue. You need to extend the tablespace PORTAL to solve the problem. Please contact your DBA for this.

  • Import Export Error (ORA-06502)

    All,
    We are trying to migrate the code from windows 2000 HTMLDB 1.5.0.00.33 to solaris 9 HTMLDB 1.5.0.00.33 by using the export/import function. After migration, one report went wrong with the following message.
    report error:
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    The tables definition are identical and there's no data in the production table. When we try to reduce the query length from 3000 to 2500 characters, the error message disappears on production.
    Is there any HTMLDB global variable controls the maximum length of the report "region source"?
    Any response would be appreciate.
    Thanks,
    Tony
    ===========================================
    PS: Here's our query:
    select
    x.supreq_id,
    DECODE(x.pk, null, 'Add new record:', ''||'<img src="#IMAGE_PREFIX#edit.gif" border="0" alt="Edit Icon">') edit,
    x.pk,
    x.request,
    x.subject,
    x.severity,
    x.priority,
    x.status,
    x.request_type,
    x.response,
    x.username,
    x.created_date,
    x.note,
    x.cks
    from (
    select
    htmldb_item.hidden(1,supreq_id) supreq_id,
    supreq_id edit,
    supreq_id pk,
    htmldb_item.text(3, request,'','','onFocus="javascript:window.status=this.value" onBlur="javascript:window.status=''Done''"') request,
    htmldb_item.select_list_from_lov(4,subject,'REQUEST_SUBJECT','','NO') subject,
    htmldb_item.select_list(5, severity, '3,2,1', 'style="width:40px"','NO') severity,
    htmldb_item.select_list_from_lov(6,priority,'REQUEST_PRIORITY','','NO') priority,
    htmldb_item.select_list_from_lov(7,status,'REQUEST_STATUS','','NO') status,
    htmldb_item.select_list_from_lov(8, request_type, 'SUPPORT_REQUEST_TYPE','', 'NO') request_type,
    htmldb_item.text(9, response,'','','onFocus=javascript:window.status=this.value;') response,
    htmldb_item.select_list_from_lov(10, username, 'USER_EMPLOYEE', 'style="width:100px"','NO') username,
    htmldb_item.date_popup(11, rownum,created_date, 'mm/dd/yyyy', 8) created_date,
    htmldb_item.text(12, note,'','','onFocus=javascript:window.status=this.value;') note,
    htmldb_item.md5_checksum(request, subject, severity, priority, status, request_type, response, username, created_date,note) cks
    from
    art_sup_requests
    where
    (:P319_PRIORITY IS NULL OR :P319_PRIORITY ='%' OR
    INSTR(UPPER(ART_SUP_REQUESTS.PRIORITY),UPPER(:P319_PRIORITY)) > 0)
    AND
    (:P319_SEVERITY IS NULL OR :P319_SEVERITY ='%' OR
    INSTR(UPPER(ART_SUP_REQUESTS.SEVERITY),UPPER(:P319_SEVERITY)) > 0)
    AND
    (:P319_SUBJECT IS NULL OR :P319_SUBJECT ='%' OR
    INSTR(UPPER(ART_SUP_REQUESTS.SUBJECT),UPPER(:P319_SUBJECT)) > 0)
    AND (:P319_CREATED_DATE IS NULL OR
    TRUNC(ART_SUP_REQUESTS.CREATED_DATE)=TO_DATE(:P319_CREATED_DATE,'MM/DD/YYYY'))
    AND (:P319_REQUEST_TYPE IS NULL OR :P319_REQUEST_TYPE ='%' OR
    INSTR(UPPER(ART_SUP_REQUESTS.REQUEST_TYPE),UPPER(:P319_REQUEST_TYPE)) > 0)
    AND (:P319_REQUEST IS NULL OR
    INSTR(UPPER(ART_SUP_REQUESTS.REQUEST),UPPER(:P319_REQUEST)) > 0)
    AND (:P319_USERNAME IS NULL OR :P319_USERNAME ='%' OR
    INSTR(UPPER(ART_SUP_REQUESTS.USERNAME),UPPER(:P319_USERNAME)) > 0)
    AND (:P319_ID IS NULL OR ART_SUP_REQUESTS.SUPREQ_ID = :P319_ID)
    union all
    select
    htmldb_item.hidden(1,null) supreq_id,
    null edit,
    null pk,
    htmldb_item.text(3, null) request,
    htmldb_item.select_list_from_lov(4,null,'REQUEST_SUBJECT','','NO') subject,
    htmldb_item.select_list(5, null, '3,2,1', 'style="width:40px"','NO') severity,
    htmldb_item.select_list_from_lov(6,null,'REQUEST_PRIORITY','','NO') priority,
    htmldb_item.select_list_from_lov(7,null,'REQUEST_STATUS','','NO') status,
    htmldb_item.select_list_from_lov(8, null, 'SUPPORT_REQUEST_TYPE','', 'NO') request_type,
    htmldb_item.text(9, null) response,
    htmldb_item.select_list_from_lov(10, null,
    'USER_EMPLOYEE','style="width:100px"','NO') username,
    htmldb_item.date_popup(11, null, sysdate,'mm/dd/yyyy', 8) created_date,
    htmldb_item.text(12, null) note,
    htmldb_item.md5_checksum(null,null, null, null, null, null, null, null, null, null) cks
    from dual) x

    Scott,
    Thanks for the response. We've applied HTMLDB version 1.5.1.00.12 on both develop and production servers yesterday but the ORA-06502 error still persist. We've also tried to use package and "pl/sql return sql" instead of a long sql query but received the same result.
    The solaris instance is using "Western European ISO-8859-1" as the file character set and the windows is using "Western European Windows 1252". Is there any easy way to change the DAD character set on the production box?
    Thanks,
    Tony

  • Tablespace error -- ORA-01653

    I'm trying to insert into a table and i'm getting error, ORA-01653.ORA-01653: unable to extend table name.name by 1024 in tablespace ATREPORT. i HAVE ADDED A NEW DATAFILE TO THE TABLESPACE BUT I'M GETTING THE SAME ERROR

    my error:
    OSD-04005: SetFilePointer() failure, unable to read from file
    O/S-Error: (OS 112) There is not enough space on the disk.
    ORA-06512: at "OWBR.WBPRTI", line 562
    ORA-06512: at "MIGRA_BRR.PCK_OLD_CHEQUES_DESC", line 798
    ORA-06512: at "MIGRA_BRR.PCK_OLD_CHEQUES_DESC", line 1342
    ORA-01653: unable to extend table OWBR.WB_RT_FEEDBACK by 8192 in tablespace OWBR
    ORA-27059: skgfrsz: could not reduce file size
    OSD-04005: SetFilePointer() failure, unable to read from file
    O/S-Error: (OS 112) There is not enough space on the disk.
    ORA-01653: unable to extend table OWBR.WB_RT_FEEDBACK by 8192 in tablespace OWBR
    ORA-27059: skgfrsz: could not reduce file size
    OSD-04005: SetFilePointer() failure, unable to read from file
    O/S-Error: (OS 112) There is not enough space on the disk.
    ORA-06512: at "MIGRA_BRR.PCK_OLD_CHEQUES_DESC", line 2545
    I try to add a DATAFILE or increase size on Tablespace and i cant. What can i do? The tablescape OWBR have a table WB_RT_FEEDBACK that OWB didnt purge, and it have more than 27 milion lines!!
    Please, someone help me!

  • Options to avoid error ORA-01653

    Hi all,
    Error - ORA 01653,01654
    Since this error message is related to tablespace overflow. So using what all options can we avoid this error, apart from table reorganisation ?
    Regards,
    Sanjeev Kumar

    Hello Sanjeev,
    This error as you know oocurs when there are no free contigous data block to be allocated in the data file.
    There are two solutions for this.
    1. Extend the table space i.e you add new data files in the table space.
    2. Resize the datafile size.
    Also if you are using Locally managed tablespaces, you can set the autoextend option on for a reasonable size if you can afford diskspace.
    All this can be done using BR*TOOLs (which i am sure you are already aware of :-).
    Hope this helps.
    Regards,
    Prashant

  • Export error ORA-08186

    Hello gurus,
    Please help me with below export.
    Here is the para file of export.
    Cat expdp.par
    tables=USER1.TMP_01,USER1.TMP_02,USER1.TEMP_03
    directory=DATAPUMP
    dumpfile=expdp_%u.dmp
    logfile=expdp.log
    JOB_NAME=expdp_job
    FILESIZE=4G
    VERSION=LATEST
    FLASHBACK_SCN=61281521
    select current_scn from v$database;
    61292504Here is my export log
    expdp "'/ as sysdba'" parfile=expdp_dsatrn.par
    Export: Release 11.2.0.2.0 - Production on Thu Apr 18 12:17:11 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Starting "SYS"." EXPDP_JOB":  "/******** AS SYSDBA" parfile=expdp.par
    Estimate in progress using BLOCKS method...
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    Total estimation using BLOCKS method: 384 KB
    Processing object type TABLE_EXPORT/TABLE/TABLE
    Processing object type TABLE_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
    Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    Processing object type TABLE_EXPORT/TABLE/INDEX/FUNCTIONAL_AND_BITMAP/INDEX
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/FUNCTIONAL_AND_BITMAP/INDEX_STATISTICS
    Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    ORA-31693: Table data object "USER1"."TMP_01" failed to load/unload and is being skipped due to error:
    ORA-02354: error in exporting/importing data
    ORA-08186: invalid timestamp specified
    ORA-06512: at "SYS.TIMESTAMP_TO_SCN", line 1
    ORA-31693: Table data object "USER1"."TMP_02" failed to load/unload and is being skipped due to error:
    ORA-02354: error in exporting/importing data
    ORA-08186: invalid timestamp specified
    ORA-06512: at "SYS.TIMESTAMP_TO_SCN", line 1
    . . exported "USER1"."TEM_03"                  6.648 KB       0 rows
    Master table "SYS"." EXPDP_JOB" successfully loaded/unloaded
    Dump file set for SYS. EXPDP_JOB is:
      /db1/rdbm7/expdp_01.dmp
    Job "SYS"." EXPDP_JOB" completed with 2 error(s) at 12:17:41According to below suggestion, I increased my undo from 2 Gig to 8Gig, still no result.
    Expdp fails with errors when using flashback_scnI tried blow also got error as followed
    flashback_time=\"TO_TIMESTAMP \(TO_CHAR \(SYSDATE, \'YYYY-MM-DD HH24:MI:SS\'\), \'YYYY-MM-DD HH24:MI:SS\'\)\"
    LRM-00112: multiple values not allowed for parameter 'flashback_time'
    LRM-00113: error when processing file 'expdp_dsatrn.par'
    and
    FLASHBACK_TIME=TO_TIMESTAMP(TO_CHAR(SYSDATE,'YYYY-MM-DD HH24:MI:SS'),'YYYY-MM-DD HH24:MI:SS')
    LRM-00116: syntax error at ')' following 'YYYY-MM-DD HH24:'
    LRM-00113: error when processing file 'expdp.par'Edited by: user3636719 on Apr 18, 2013 10:15 AM
    Edited by: user3636719 on Apr 18, 2013 12:36 PM

    I tried blow also got error as followed
    flashback_time=\"TO_TIMESTAMP \(TO_CHAR \(SYSDATE, \'YYYY-MM-DD HH24:MI:SS\'\), \'YYYY-MM-DD HH24:MI:SS\'\)\"
    LRM-00112: multiple values not allowed for parameter 'flashback_time'
    LRM-00113: error when processing file 'expdp_dsatrn.par'
    and
    FLASHBACK_TIME=TO_TIMESTAMP(TO_CHAR(SYSDATE,'YYYY-MM-DD HH24:MI:SS'),'YYYY-MM-DD HH24:MI:SS')
    LRM-00116: syntax error at ')' following 'YYYY-MM-DD HH24:'
    LRM-00113: error when processing file 'expdp.par'
    No need to complicate it.
    FLASHBACK_TIME=SYSTIMESTAMP
    Try this way.

  • Import and error ora-12203

    Hi,
    I got this error ora-12203 (TNS:unable to connect to destination) when I was importing a table into my own schema. I don't know whether the error is related with import. My question is: when performing import, can other user login into the database?
    Thanks,
    Richard

    Hi Richard,
    The database will you to logon irrespective of what other work you are doing with whatever tool you are using. The Exceptions are :-
    If the refered schema comes under certain restriction of the assigned profile.
    If the database is running in RESTRICTED mode and you are not having accessibilty during this peiod.
    As for your error in the import statement, check the connection you are using in the import statement.
    I'm personally using import at least 10 times a week and usually come across these errors. These errors are all human errors and not bugs in the program.
    Bye,
    Piyush.

  • During Table Import got error ORA-12805: parallel query server died unexpectedly

    Hi,
    I tried to import a single table of size 51 GB which normally imported in 5 hours but last time I got following error after 1.5 hours
    ORA-31693: Table data object "SCHEMA"."TABLE_NAME" failed to load/unload and is being skipped due to error:
    ORA-12805: parallel query server died unexpectedly.
    From the "Alert log" file I found the error is
    ORA-00603: ORACLE server session terminated by fatal error
    ORA-24557: error 1114 encountered while handling error 1114; exiting server process
    ORA-01114: IO error writing block to file 622 (block # 373725)
    ORA-27063: number of bytes read/written is incorrect
    IBM AIX RISC System/6000 Error: 28: No space left on device
    Additional information: -1
    Additional information: 253952
    I checked all the table spaces have more then 100GB free space. No idea why this happened.
    Some mount points of the machine is 100% in used where the table spaces created but in table spaces auto extend is off on every data file and each data file have free space.
    Anyone have idea how to resolve this issue.

    Hi,
    Which filesystem is file 622 in - it's quite a lrge numbered file - is it a tempfile or do you really have that many datafiles?
    Regards,
    Harry
    http://dbaharrison.blogspot.com

  • Generating 20 million rows induced error: ORA-01653: unable to extend table

    Exact error is: ORA-01653: unable to extend table HR.F by 1024 in tablespace SYSTEM.
    Why cannot it extend table HR.F?
    Is it because I have Oracle Express Edition 10g?
    "Typically you will receive one of the following messages during the upgrade if your SYSTEM tablespace size is insufficient". What should I consider when wanting to generate 20 million rows? By the way, generating 1 million rows is successful.

    1.By esuring the status of the tables FND_INSTALL_PROCESS and AD_DEFERRED_JOBS and if there are any rows in it, also checking the worker logs (If it exisits) and patch log, we can consider options which we can make sure that the current issue can be taken care. If the adpatch has come out and back to prompt, after adding the space we can restart with the various options to start from where it left off.If FND_INSTALL_PROCESS and AD_DEFERRED_JOBS have not been dropped by adpatch, you can start adaptch from the beginning (after fixing the failed worker via adctrl as stated by Rajiv), and continue with the previous failed adpatch session.
    2. By adding up the space we can also ensure that the future patch application will not fail again.Correct -- Provided you have sufficient space or turning autoextend on for this tablespace (with cautious).
    Thanks,
    Hussein

  • Full export error (ORA-01031) (Oracle 8.1.7)

    Hello all,
    Please provide any hint/help on the following.
    My environment is: Windows 2000 Professional, Oracle 8i rel. 3 (8.1.7) Enterprise Ed.
    I use "Administrator" account which is part of ORA_DBA group.
    Please note that Security properties of the folder "F:\oracle\oradata\oraavl", where the database files are located, is set for Administrator user, System group, ORA_DBA group to have full control.
    I'm trying to do a full export using these commands:
    F:\>set ORACLE_SID=oraavl
    F:\>set BACKUP_DIR=F:\oracle\backup
    F:\>exp 'sys/avlman as sysdba' full=yes file=%BACKUP_DIR%\%ORACLE_SID%.dmp
    The error I get is:
    . . exporting table VEHICLES 1 rows exported
    . . exporting table VEHICLE_CREWS 0 rows exported
    . exporting referential integrity constraints
    . exporting synonyms
    . exporting views
    . exporting stored procedures
    EXP-00084: Unexpected DbmsJava error -1031 at step 6661
    EXP-00008: ORACLE error 1031 encountered
    ORA-01031: insufficient privileges
    EXP-00000: Export terminated unsuccessfully
    Thanks in advance.
    --Nikos

    Run the export as the SYS user instead of connecting with the "as sysdba" in your connect string. This is a bug and related directly to the Java. It would take too long to explain the details and I'm not sure if it even matters to you because I'm sure all you want is to export your data and move on.
    EC

  • Export error ORA-942

    I'm on a redhat linux oracle 9.2.0.1.0
    I try to export a shema
    the ora-00942 appears
    ora-00942 tables or views does not exist
    exp-00-24 export views not installed...
    I run de catexp7.sql and catexp.sql but the message
    appears again .
    could you help me ?

    I'm a new Oracle user so take heed but ...
    I think you didn't need to run catexp7.sql since it appears to be specifically for creating v7 style views against v8 RDBMS or vice versa. You stated you are using 9.2.0.1.
    Did you run it when connected as SYS or Internal?

  • ORA-01653 error while executing a select query over DBLINK

    Hi,
    We have a query that is running to extract some data from a remote DB over DBLINK.
    The query is failing by throwing the error "ORA-01653 -- Unable to extend.........".
    Is this a problem with the "temp" tablespace of local database or is this with the "temp" tablespace of remote DB.
    As far as my knowledge goes, I guess any statement , selecting data over dblink where the query is being fired actually in remote db over dblink uses the temp tablespace of that DB only and hence the problem should be with the temp tablespace of remote db only but I am not very sure about this.
    Is there any chance that it can be problem with "temp" tablespace of local DB from where the query is being fired over dblink.
    It would be really helpful if anyone can throw some light on this.
    Thanks

    The error stack will normally tell you if the exception is raised in the remote database.
    You might try using the driving_site hint (see performance guide) to push work to the remote site or pull it local. It all depends on your particular query and explain plan.
    Remember to use { code } (without the embedded spaces) tags to frame your code and explain plan so it remains formatted, if you post it here.

  • Table grows to 6 GB with 6k records only after Delete ORA-01653:

    Hello,
    I have a Table that i delete data from using
    DELETE FROM DJ_20255_OUTPUT a where trunc(a.LOADED_DATE) <trunc(sysdate -7);
    COMMIT;
    the issue i have is when i want to repopulate the table i get the Error ORA-01653: unable to extend table.
    The table grows to over 6gb but if i truncate that table and in both cases there is no data left in the table after either action the table will only grow to 0.8 Mb once populated.
    so with truncate table size is 0.8MB and if i use delete from.... the table grows to 6GB
    The repopulation of the table uses mutiple insert statments commiting after each one.
    is this a bug or is there an action i should perform onece I have deleted the data?
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi

    Is this an Index Organized table ? (select IOT_TYPE from user_tables where table_name = 'DJ_20255_OUTPUT' ;)
    Are you saying that you use this sequence :
    DELETE .... in one single call to delete all the rows
    INSERT ... in multiple calls with COMMIT after each row
    Hemant K Chitale

  • ORA-01653: unable to extend table DISPATCH.T_EVENT_DATA by 4096 in tablespa

    Hello everybody,
    I try to explain the problem I had, because I still didn't understand real causes.
    Everything started when I got this error:
    ORA-01653: unable to extend table DISPATCH.T_EVENT_DATA by 4096 in tablespace USERS
    I'm using ASM.
    This was the situation of the tablespace USER:
    FILE NAME                                                 TB NAME   SIZE (gb)                   STATUS               
    DATA/evodb/datafile/users.261.662113927     USERS     63,999969482421875     AVAILABLE
    and this was the situation of the DATAS diskgroup:
    GR # NAME        FREE_MB    USABLE     STATE      SECTOR SIZE   BLOCKSIZE
    2     DATA     60000     60000     MOUNTED     512     4096
    That diskgroup is composed by 5 files:
    PATH       DISK#       GR NAME           FREE MB    OS MB       TOTAL MB NAME                FAILGROUP
    /dev/asm2     0     DATA          12000     48127     48127     DATA_0000     DATA_0000
    /dev/asm3     1      DATA          12000     48127     48127     DATA_0001     DATA_0001
    /dev/asm4     2     DATA          12000     48127     48127     DATA_0002     DATA_0002
    /dev/asm5     3     DATA          12000     48127     48127     DATA_0003     DATA_0003
    /dev/asm6     4     DATA          12000     48127     48127     DATA_0004     DATA_0004
    This are the information about the table got from the dba_tables table:
    OWNER     DISPATCH
    TABLE_NAME     T_EVENT_DATA
    TABLESPACE_NAME USERS
    CLUSTER_NAME     
    IOT_NAME     
    STATUS     VALID
    PCT_FREE     10
    PCT_USED     
    INI_TRANS     1
    MAX_TRANS     255
    INITIAL_EXTENT     4294967296
    NEXT_EXTENT     
    MIN_EXTENTS     1
    MAX_EXTENTS     2147483645
    PCT_INCREASE     
    FREELISTS     
    FREELIST_GROUPS     
    LOGGING     YES
    BACKED_UP      N
    NUM_ROWS     532239723
    BLOCKS     1370957
    EMPTY_BLOCKS     0
    AVG_SPACE      0
    CHAIN_CNT 0
    AVG_ROW_LEN     32
    AVG_SPACE_FREELIST_BLOCKS     0
    NUM_FREELIST_BLOCKS     0
    DEGREE     1
    INSTANCES     1
    CACHE     N
    TABLE_LOCK     ENABLED
    SAMPLE_SIZE     532239723
    LAST_ANALYZED 21/09/2009 22.45
    PARTITIONED     NO
    IOT_TYPE     
    TEMPORARY     N
    SECONDARY      N
    NESTED     NO
    BUFFER_POOL     DEFAULT
    ROW_MOVEMENT DISABLED
    GLOBAL_STATS     YES
    USER_STATS     NO
    DURATION     
    SKIP_CORRUPT     DISABLED
    MONITORING     YES
    CLUSTER_OWNER     
    DEPENDENCIES     DISABLED
    COMPRESSION     DISABLED
    COMPRESS_FOR     
    DROPPED      NO
    READ_ONLY     NO
    So, my question is:
    Why did it happen?
    Why the table was unable to allocate the space? From what I can see the space was there.
    I alstro tried an ALTER TABLESPACE USER COALESCE, but with no luck.
    To solve the problem, I had to create another tablespace and put there the T_EVENT_DATA table.
    Looking forward to read some answer,
    thanks in advance!

    There can be two reasons:
    1.) Datafile is unable to extend as the auto-extend is set to NO.
    2.) Datafile reached to the MAXSIZE provided at the datafile creation.
    Query dba_data_files view and confirm this.
    Regards.

  • REG:ORA-01653: unable to extend table SYS.OBJ$ by 128 in tablespace SYSTEM

    Hi
    My database is
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE     10.2.0.4.0     Production
    TNS for Solaris: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    I get the following error
    ORA-00604: error occurred at recursive SQL level 1 ORA-01653: unable to extend table SYS.OBJ$ by 128 in tablespace SYSTEM
    java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1 ORA-01653: unable to extend table SYS.OBJ$ by 128 in tablespace SYSTEM
    When query the dba_data_files system tablespace
    TABLESPACE_NAME AUTOEXTENSIBLE FILE_NAME MAXBYTES/1024/1024/1024 BYTES/1024/1024/1024 SYSTEM YES DATA/maq1/datafile/system.260.709848331        31.9999847412109375     0.65447998046875                                                                                                                                                                                                                                                                                                                                                                                                                            SYSTEM                         NO             DATA200/maq1/datafile/system.310.729819887 0 0.9765625
    2 rows selected
    Please advice

    Hello,
    ORA-00604: error occurred at recursive SQL level 1 ORA-01653: unable to extend table SYS.OBJ$ by 128 in tablespace SYSTEM
    TABLESPACE_NAME AUTOEXTENSIBLE FILE_NAME                                   MAXBYTES/1024/1024/1024  BYTES/1024/1024/1024
    SYSTEM          YES            +DATA/maq1/datafile/system.260.709848331    31.9999847412109375      0.65447998046875
    SYSTEM          NO             +DATA200/maq1/datafile/system.310.729819887 0                        0.9765625
    If you have enough space on the Disk for the first Datafile to extend, it's a rather strange behaviour.
    In this case, I suggest you to open a SR on My Oracle Support.
    On Solaris, a similar bug was reported (in 9.2.0.8 release):
    Bug 7196775: ERROR ORA-01653 OCCURS WHILE INSERTING RECORDS IN TABLE WITH DATAFILE AUTOEXTENDElse, you may try to extend manually the Datafiles so as to get enough free space inside the Tablespace SYSTEM.
    Hope this help.
    Best regards,
    Jean-Valentin

Maybe you are looking for