Error ORA-02375 while trying to export/import JTF.JTF_PF_REPOSITORY table

We have already created an SR, In the mean time, trying to see whether anyone else has come across this issue.  Thanks.
On : 11.2.0.3 version, Data Pump Import
Error ORA-02375 while trying to import JTF.JTF_PF_REPOSITORY table
We are getting the below error while performing the full db
import.
ORA-02375: conversion error loading table
"JTF"."JTF_PF_REPOSITORY" partition "EBIZ"
ORA-22337: the type of accessed
object has been evolved
ORA-02372: data for row: SYS_NC00040$ :
0X'8801FE000004AD0313FFFF0009198401190A434F4E4E454354'
This issue is
stopping our upgrade of database from 10.2.0.4 to 11.2.0.3. This is very
critical for us to be resolved.

Hi,
seems this is Character set issue fo source and Target DB check this doc:Unable to Export Table WF_ITEM_ATTRIBUTE_VALUES due to errors ORA-02374, ORA-22337, and ORA-02372 (Doc ID 1522761.1)
HTH

Similar Messages

  • Getting ORA-31655 while trying to export Tablespace via Datapump

    Hi
    I am trying to export the tablespace GRAHAM_BMF_TS_01 as per below but I am getting the following error:
    ORA-31655: no data or metadata objects selected for job
    SQL> select SEGMENT_NAME from dba_segments where TABLESPACE_NAME='GRAHAM_BMF_TS_01';
    SEGMENT_NAME
    BMF_AGREEMENTS
    SQL> select count(*) from BMF_AGREEMENTS;
      COUNT(*)
        199999
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning and Data Mining options
    $ expdp directory=DATA_PUMP_DIR_CORRUPTION_TEST dumpfile=pre_corruption_dp.dmp logfile=pre_corruption_dp.log  TABLESPACES=GRAHAM_BMF_TS_01 CONTENT=ALL
    Export: Release 10.2.0.3.0 - 64bit Production on Tuesday, 21 June, 2011 12:45:59
    Copyright (c) 2003, 2005, Oracle.  All rights reserved.
    Username: / as sysdba
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning and Data Mining options
    Starting "SYS"."SYS_EXPORT_TABLESPACE_01":  /******** AS SYSDBA directory=DATA_PUMP_DIR_CORRUPTION_TEST dumpfile=pre_corruption_dp.dmp logfile=pre_corruption_dp.log TABLESPACES=GRAHAM_BMF_TS_01 CONTENT=ALL
    Estimate in progress using BLOCKS method...
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    Total estimation using BLOCKS method: 0 KB
    ORA-31655: no data or metadata objects selected for job
    Job "SYS"."SYS_EXPORT_TABLESPACE_01" completed with 1 error(s) at 12:46:14Any ideas what I am doing wrong?
    Edited by: Grahambo on Jun 21, 2011 4:52 AM

    Not sure why this thread was locked, but I unlocked it.
    There may be segments in this tablespace, but they may not be owned by a schema that is exported using Data Pump. For example, if all of the storage in this tablespace is owned by the SYS schema, then there is nothing in this tablespace to be exported.
    Any idea what schema owns the segments in this tablespace?
    Dean

  • OEDQ 11 - error.connection.externaldatasource - While trying to export excel file into local drive

    Team I am trying to export a dataset as a excel spreadsheet on to my local drive. when I ever I try to run the Export I am getting error.connection.externaldatasource error message.
    Even I tried creating a excel file in my local and point that file in EDQ - Data Stores connection , still getting the same error message.
    Please help.
    Thanks!
    BG

    Also useful to understand:
    - Is it a server-side or client-side data store?
    - Is it an XLS or an XLSX file you are trying to write?
    - What's the data volume?

  • Error on server while trying to export a report into PDF using JRC (CR XI)

    13/01/2009        11:52:32            dataengine        ERROR Formula error: recompile formulas failed
    com.crystaldecisions.reports.formulas.FormulaException: Exception in formula '{@Record Selection}' at '{reports_selection.idReport}':
    This field name is not known.
    13/01/2009        11:52:32            JRCCommunicationAdapter        ERROR Failed to export report
    com.crystaldecisions.reports.exportinterface.exceptions.ExportException: Exception in formula '{@Record Selection}' at '{reports_selection.idReport}':
    This field name is not known.
    The error occurs only on the server deployed application, in localhost environment it works fine. So I guess it might have something to do with the server environment, but I can't figure it out. The table reports_selection and the field idReport are well presented in the database.
    The idReport(Number) is passed as a parameter to the report.
    In Select expert... I have the following  formula {table1.idReport} = {?idReport} and in Database expert... I have a join between table1 and reports_selection by idReport.
    Does anyone know what might cause this problem?

    Have you able to preview the report via the Central Management Console?
    When you upload the report template to the server, be sure to do a preview to make is sure its working there.
    It might be that your server is using a different DB Connection.
    Edited by: Rulix Batistil on Jan 14, 2009 10:38 AM

  • ORA-12054:while trying to create mview based on table in other schema

    HI all
    show user
    user is "NAAMA"
    CREATE TABLE USERS
      user_id               NUMBER,
       user_name             VARCHAR2(15 CHAR),
      user_password         VARCHAR2(50 CHAR),
    CONSTRAINT user_pk PRIMARY KEY (user_id));
    TABLE created.
    show user
    user is "TEST"
    create materialized view log on NAAMA.USERS WITH ROWID
    create materialized view users_mv
    build immediate
    refresh fast on commit with rowid
    as
    select  user_name  ,
              user_password        
    from naama.users;
    ORA-12054: cannot set the ON COMMIT refresh attribute for the materialized view
      I suspect this problem is all about priviliges .
    please you help
    Thanks In advanced
    Naama

    Hi Ranit ,
    thanks for your response , i disagree with you lets take a look at those scenarios :
    scenario 1 :
    show user
    user is "NAAMA"
    create materialized view log on users with primary key;
    show user
    user is "TEST"
    CREATE MATERIALIZED VIEW users_mv
    BUILD immediate
    REFRESH FAST ON COMMIT  
    AS
    SELECT
    user_id,
    user_name  ,
    user_password , 
    naama.get_name(user_id) FIRST_name
    FROM naama.users
    ORA-12054: cannot set the ON COMMIT refresh attribute for the materialized view.
    according to this there is nothing to do to the primary key,scenarion 2:
    show user
    user is "NAAMA"
    create MATERIALIZED VIEW LOG ON USERS WITH rowid.
    create or replace function get_name (user_name_in IN varchar2) return varchar2
    is
    begin
    return 'NAAMA';
    end  get_name;
    show user
    user is "TEST"
    CREATE MATERIALIZED VIEW users_mv
    BUILD immediate
    REFRESH FAST ON COMMIT with primary key
    AS
    SELECT
    user_name  ,
    user_password , 
    naama.get_name(user_name) FIRST_name
    FROM naama.users;
    ORA-12054: cannot set the ON COMMIT refresh attribute for the materialized view.scenarion 3:
    show user
    user is "NAAMA"
    create MATERIALIZED VIEW LOG ON USERS WITH rowid.
    show user
    user is "TEST"
    CREATE MATERIALIZED VIEW users_mv
    BUILD immediate
    REFRESH FAST ON COMMIT   WITH rowid
    AS
    SELECT
    user_name  ,
    user_password , 
    SUBSTR(user_name,1,5)
    FROM naama.USERS;
    materialized view created.so we cannot say that the mview has problem using functions.
    What seems to be the problem ?
    Thanks In Advanced
    Naama

  • In attempting to export a simple 1-page PDF file to Microsoft Word, I incessantly get the following error message:  "An error occured [sic] while trying to access the service."  Nothing on any of the community forums has helped in any way.  I have downloa

    In attempting to export a simple 1-page PDF file to Microsoft Word, I incessantly get the following error message:
    "An error occured [sic] while trying to access the service." 
    Nothing on any of the community forums has helped in any way. 
    I have downloaded a free trial of Acrobat XI Pro  --  and that too makes no difference.

      while trying to access the service." 
    That'd be associated with trying to connect to the server(s) for one of the Adobe online subscription services.
    (Edit PDF or PDF Pack)
    These online services are separate and independent of the desktop application Acrobat.
    It appears that you have had / are having internet connection issues.
    Be well...

  • HOW CAN I AVOID THIS ERROR MESAGE WHILE TRYING TO EXPORT AN IPHOTO SLIDESHOW:  The operation couldn't be completed. (OSStatus error -61.)

    HOW CAN I AVOID THIS ERROR MESAGE WHILE TRYING TO EXPORT AN IPHOTO SLIDESHOW:  The operation couldn’t be completed. (OSStatus error -61.)

    Hello,
    I believe the issue was the external HD I purchased was not formatted for Mac . . . once I took care of that - all went well!  The slide show transferred and the surprise 70th birthday party was a huge sucess.  Thank you everyone!

  • Compressor error mesage while trying to export

    I how do I fix this issue while trying to export my project ? Tbhis message appears when trying to export.
    "The operation couldn’t be completed. (com.apple.Compressor.CompressorKit.ErrorDomain error -1.)"

    You probably need to update the software to a version that works with Mavericks.

  • Error -4 found while trying to ràconfigure m'y export express first generation  through windows7

    Error -4 mentionned while trying to reconfigure my AirPort express 1st gen through windows 7
    Look fo à way to succeed

    Hey Michel2014,
    I found an article that looks like it applies to the issue you're encountering. Check out the following resolution for when you get the message "bad param error -4" when you try to administer your AirPort Express from a Windows computer:
    The issue occurs when using AirPort Admin Utility 4.0 for Windows or AirPort Express Assistant 1.0 on a computer with "Intel Centrino mobile technology" wireless capabilities. To resolve the issue:
    First, download AirPort 4.1 or later. Next, try checking the Network Connection that you use to connect to the AirPort Express (usually this is your wireless connection) to ensure that it is configured via DHCP; if it is set for a static IP on a different subnet from the AirPort Express, this issue will occur.
    If your issue is still unresolved, use this workaround:
    Connect the computer to the Airport Express using an Ethernet cable.
    Turn off wireless networking on the computer.
    Set the computer to use the Ethernet port (restart if necessary).
    Configure or update your AirPort Express.
    After a successful update, switch from Ethernet back to your wireless configuration.
    Important: Information about products not manufactured by Apple is provided for information purposes only, and does not constitute Apple's recommendation or endorsement. Please contact the vendor for additional information.
    AirPort Express: "Bad param error -4" when administering from a Windows computer
    http://support.apple.com/kb/TA21550?viewlocale=en_US
    Cordially,
    David

  • Error ORA-01422 while compressing a cube

    Hello,
    I am trying to compress the initial balnce of the European Inventory KPI  (KPINVMOEU) cube after reloading it and I encountered the oracle error-01422 which says:
    system error:error-01422:exact fetch returns more than requested
    system error:CONDENSE_FACTTABLE-5-ERROR-01422
    Has anyone dealt with this error before? Any input is appreciated.
    Thanks in advance,
    madhu

    Madhu,
        can you please look into these notes: 485766 and 385660.
    at the same time look into these links which is for similar problem.
    ERROR: System error: CONDENSE_FACTTABLE-5- ERROR:12805
    Error during compress 0IC_C03
    error ORA-01422 while compressing a cube
    Re: Cube compression failing
    All the best.
    Regards,
    Nagesh Ganisetti.

  • Im trying to convert a PDF into an excel document and I keep getting an error message that reads "An error has occurred while trying to access the service". WHat am I doing wrong?

    Im trying to convert a PDF into an excel document and I keep getting an error message that reads "An error has occurred while trying to access the service". WHat am I doing wrong?

    it seems my subscription had expired so I signed up again.. It was still having trouble so I repeated the sign up process again.. Then it worked perfectly.. Unfortunately, I think I just subscribed twice and need to cancel one of them. Ugh. Such a pain when I'm trying to get this project completed. I'll be canceling at least one of the subscriptions in the morning. Adobe is not my favorite company right now. None of this was intuitive. And trying to get help was an absolute waste of an hour.
    Regards,
    Nathaniel
    [removed by moderator]

  • I got the Mac error code -36 while trying to move a backup file

    I got the Mac error code -36 while trying to move a backup file (made by Time Machine) to another drive.  The full text of the error message is:
    The Finder can’t complete the operation because some data in “boot.efi” can’t be read or written. (Error code -36)

    It's a disk error. Although Apple documentation says you should be able to copy Time Machine backups in the FInder, that doesn't necessarily mean it will work. I suggest that, instead of copying the existing backup, you start a new one on the other drive, and keep the old one. You need more than one backup anyway.

  • Error code 50 while trying to download a font from adobe creative cloud

    I received a error code 50 while trying to download a font from adobe creative cloud saying that the "Creative Cloud desktop failed to update" and that I should contact customer service. How should I resolve this issue?

    Read here.
    http://support.apple.com/kb/TS1279

  • I am getting an "Error 1310 message while trying to install.  What can I do to fix this?

    I am getting an "Error 1310 message while trying to install.  What can I do to fix this?

    Error "1310: Error writing to file: C:Config.Msi..."
    Mylenium

  • Can't do online banking. Get error message. "The requested URL /Summary.cgi was not found on this server. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

    I can't do online banking. When I try to open the page I get error "The requested URL /Summary.cgi was not found on this server.
    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

    Hi,
    These blog posts might help debug problem
    Oracle APEX: Got a 404 Not Found? | Inside Oracle APEX by Patrick Wolf
    daust_de :: Oracle XE / APEX: Troubleshooting the 404-not found error on XE
    Regards,
    Jari

Maybe you are looking for

  • Photoshop and Bridge?

    Is there a way to run photoshop CS4 or CS5 actions or use droplets while in bridge CS4 or CS5?

  • APOC startup failure

    Hi there, I have a little problem with apocd startup, i've already set up the configuration agent following documentation on docs.sun.com but when i try to start up apocd daemon "/usr/lib/apoc/apocd start" I get this error (that's the output of apocd

  • Photoshop CS5 extended install

    I have Photoshop CS5 extended & want to install on my new laptop but I have lost my installer disk. Is there a way I can download it without the need of the disk??

  • TOC not expanding when topic called

    RoboHelp 10 HTML on Windows 7 OS to generate a FlashHelp project. We implement "context sensitive" help by assigning specific screens in our application to specific help topics. When a user presses <F1> from a certain screen, a specific help topic is

  • Until 50,000 records reaches does the request status will be yellow?

    Hi all, I can see there are 20,000 records in the request but then it is in yellow, so i believe until the same request reaches 50,000 records the request will be still in yellow isn it? Can anyone pls confirm me on this!! Thanks Pooja