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.

Similar Messages

  • 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

  • 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

  • Portal Import/Export problems and questions

    I recently tried to promote our dev stuff to the prod using both the exp/imp scripts (following the Imp/Exp whitepaper) and the built-in application export. The first time went without a hitch; however, after a few report updates in dev, I tried it again, and now I can't even get the Welcome page to appear. (Yes, I did import that page). The page finishes loading but nothing shows up on screen. I can login in to the change the DADs but nill to Portal. Any ideas how to even get in to see if the stuff imported?
    Along those lines, after searching through these threads, and reading the documentation, I get the general feel that imp/exp are not at 100%. So what would be the procedure to do production promotions? Do I have to delete stuff (apps & pages) on the PROD server, and then import? If so what (apps?, security?, login server?) do I delete?
    Rich

    Thanks for the post Indira. Here are the answers to the questions.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>>What version of the Oracle Portal are you using?<HR></BLOCKQUOTE>
    I am using Oracle Portal version 3.0.6.3.3
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>>Did you make any changes to the Welcome page when you imported it?<HR></BLOCKQUOTE>
    No, I did not make any changes to the Welcome page when I imported it.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>>When you say that the page comes up blank, did you check the HTML source to see if there is anything in there?<HR></BLOCKQUOTE>
    Yes, and there is something in there. Its the W3C tag and <HTML></HTML>. That's it. (more on this below)
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>>What kind of portlets are in the page that you had imported?<HR></BLOCKQUOTE>
    I imported one application (with a combination of Reports, Forms, Dyn Pages, and LOV's), 7 pages with portlets based on all those components in tabbed interfaces on each page. For example, each page has 4 tabs with one portlet (running one of the reports) on each tab.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>>Are you able to get to the pages that you imported, through the Navigator. Can you edit/customize the page?<HR></BLOCKQUOTE>
    Well this is funny, since I couldn't get to anything, I thought I was a goner since I couldn't log in to get to the main page and fix all this, not to mention to see if the app imported at all. So, I went to my DEV box, found out what the page_id was for the out-of-the-box default page, typed it into the URL and I got the Login link. I logged in and I can see that the app imported. I can also see the pages, but with no portlets. When I try to add portlets, I get USER DEFINED ERRORS galore. So I have to recreate the pages from scratch (not a very good thing to be doing in PROD)
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>>Try creating another page in your new prod instance and making that your default home page. Please can you check if that is working.<HR></BLOCKQUOTE>
    As I mentioned above, this is basically what I had to do. I did another promotion last night, and since the pages are what I thought the trouble was, I didn't import them. I just imported sso, sec, and the app. To my dismay, the same thing happened. I call portal home and I get a blank screen (empty HTML tags). So there I was, well into the night, creating pages in PROD so that we could have a site to show today.
    Since someone else gave me the CD to install, I wasn't aware of the version I had and its bugs/issues. I have started the process of upgrading versions, but would like to get a solid idea of whats going with promotions before I do.
    Thanks,
    Rich
    null

  • Portal Import/Export Different OID Servers

    We are trying to move our 9ias instances (portal) to another set of servers used for production with security. Both instances are associated with their
    own OID/Infrastructures - they are not sharing the same infrastructure.
    I reviewed Note:216572.1 Subject: Exporting/Importing in Oracle Portal 9.0.X, but it does not tell you the steps required to migrate the users/groups as well. I also looked at the Portal 9.0.2 Export/Import FAQ (http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/OTN_CONTENT/MAINPAGE/DEPLOY_PERFORM/EXPORT_IMPORT_FAQ_1120.HTM) , but neither tell you how to export the users. They only say to use the OID Tools. What tools?
    Excerpt from FAQ:
    How do I export/import objects (with security) between portals using different OID servers in 9.0.2?
    A manual workaround is available:
    1. Use OID utilities to migrate Users/Groups from source OID server to target OID server.
    2. In Oracle9iAS Portl, migrate portal objects with "export security" enabled from source Portal to target Portal
    3. (MANUAL) For the imported users, set the guid to null (WWSEC_PERSON$.GUID)
    4. (MANUAL) For the imported groups, update the guid using the instructions found in the section below on how to update the GUID.
    Please refer to th[i]Long postings are being truncated to ~1 kB at this time.

    To migrate users, groups, and security within Portal, you must have a common OID environment. The difference between all OID implementations is the RootDSE, (the part that starts with dc=..,dc=..., etc.
    You have to extract the user base and portal groups (and any other unique objects and attributes) from the old OID environment and and use the extraction to create an ldif file that will add these to the new OID environment. The ldif must have its own RootDSE for all distinguished names (dn) and common names (cn) in the ldif file.
    We basically created our OID migration solution around a Java applet that prompts for the OID IP address, OID HOST NAME, OID ADMIN USER, and OID ADMIN PASSWORD. It access the new OID environment and extracts the RootDSE, then builds the ldif file for import of groups, objects, and attributes. Our user ldif will do pretty much the same, once we have the user list from our customer.
    The more complex issue revolved around the migration of external applications, which I address in my EXT_APP package, which enables you to build portlets containing links to external apps, while maintaining portability, as well as Item Level Security. YOu can find this in my Knowledge Exchange folder.
    Quite a mouth full...sorry
    HTH
    LLB

  • 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

Maybe you are looking for

  • Null value for int and datetime date type in xml schema

    hi: I am embarrassed by a qustion in xml schema; i defined a xml schema file like this: <elementFormDefault="qualified" attributeFormDefault="qualified"> <xs:element name="test"> <xs:annotation> <xs:documentation>Comment describing your root element<

  • Horizontal scroll bar for combo/lsit box in JSP

    hi, i want "Horizontal Scroll bar" for combo box to display long names. regards, krishna

  • Thread safe servlets

    I have a question regarding the semantice of servlets. Consider you are calling a method public StringmodifyAddress(){......}in the service method of the servlet. Now considering that a servlet could be sericing multiple requests would this method be

  • Check+Printing+Sequence

    I am looking for some guidance on Check Printing Sequence.  Our specific problem is that we want checks over $50K to print first in our check run because these checks require signatures, but we are unsure of how to get this to work other than having

  • Question error message photoshop CS3

    I have a MacBook Pro and have good luck using CS3 extended. A couple of days ago when I opened the program and I received an error message: 'Your license is no longer active". I purchased program update via the internet last June so I am legal. The w