Unable to export the Schema

Hi ,
7.1 SP 8
I am facing some problem while i try to extract the schema .
right click on the repository -> Transport -> Export repository schema .
i get an error called "This repository requires additional steps before transport . See MDS log for details ".
And the Log does not help much to analyse the issue it says -> "Attempt to create delta failed . RC exception caught 0x86020002".
Has any one tackled this error before .
I have tried the Verify and repair option as well but still not able to export the schema .
Regards,
VIgnesh
Edited by: Vag Vignesh Shenoy on Mar 6, 2012 3:22 PM

Hello Vineet,
Can you double check and confirm if we get the pop up where we accept and reject changes while Exporting the schema?
If i am not wrong we get the Pop Up while we Import the schema where we can accept or reject the Changes flowing into the current schema and it is there we face dependencies failure and Schema doesnot get imported.
Correct me if my understanding is wrong.
Rgds,
Prasad.

Similar Messages

  • Unable to export the schema by the name OPS$BDIT  using expdp

    Hi,
    oracle - BDMSD> expdp directory=EXPORT_BACKUP_DIR schemas=OPS$BDIT dumpfile=test.dmp logfile=test.log
    Export: Release 10.2.0.4.0 - 64bit Production on Monday, 30 January, 2012 10:08:27
    Copyright (c) 2003, 2007, Oracle. All rights reserved.
    Username: / as sysdba
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORA-39001: invalid argument value
    ORA-39170: Schema expression 'OPS' does not correspond to any schemas.
    Thanks

    user12266475 wrote:
    Hi,
    oracle - BDMSD> expdp directory=EXPORT_BACKUP_DIR schemas=OPS$BDIT dumpfile=test.dmp logfile=test.log
    Export: Release 10.2.0.4.0 - 64bit Production on Monday, 30 January, 2012 10:08:27
    Copyright (c) 2003, 2007, Oracle. All rights reserved.
    Username: / as sysdba
    Pl post OS details. You should not use "/ as SYSDBA" to execute expdp - see the first "Note" here - http://docs.oracle.com/cd/B19306_01/server.102/b14215/dp_export.htm#sthref57 - use SYSTEM instead.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORA-39001: invalid argument value
    ORA-39170: Schema expression 'OPS' does not correspond to any schemas.
    ThanksFor special characters like $, it is best to create a parameter file and use quotes or escape characters, rather than provide the parameters on the command line.
    Exporting a schema which contains a dot in the name with EXPDP fails with ORA-39001, ORA-39170 [ID 388763.1]
    HTH
    Srini

  • Unable to Export the document in PDF

    Hi,
    Can any body guide me what general  authoriztions  settings are needed for a user to export the markeing documents in PDF.
    bcz the user at remote location client is unable to export the douments in PDF.
    Regards
    Srini

    HI
    You need to go the authorization windows and in the search box please type "PDF" that would take u to the option that u are seeking then u can assign full read only or no authorizations as per your requirement .
    also make sure that the path has been correctly defined for pdf files
    Regards,
    Manish
    Edited by: manish.malik on Jul 1, 2010 12:50 PM

  • XML export "unable to export the data."

    Strictly speaking I am just using the GUI, not trying to do this programmatically.  But this is related to a development project & I figure the dev forum will have better insight.
    Attempting to do a simple export of a plain table from Access. right-click table>export>XML>"OK">checkdata only>"OK"
    ...unable to export the data.
    A very unhelpful error message with zero indication of the reason or how to correct it.  This is a single, simple table.  Exporting other formats is fine.
    What should I even be looking for as a cause for this?  How hard is it to dump a table into XML with tags for <record> or <row> and tags for the column names?

    What you call a simple export Access may not. What are the data types of the fields in this table? Can you post a copy of your table, with only some test data, to a public place like a free OneDrive account?
    Surely I agree you should be afforded a better error message regardless.
    -Tom. Microsoft Access MVP

  • Using dbms_datapump package to export the schema with the schema name as pa

    Hi,
    I am using the pl/sql block to export schema using dbms_datapump package,Now I want to pass the scheme name as the parameter to the procedure and get the .dmp and .log files with the schema name included.
    CREATE OR REPLACE PROCEDURE export
    IS
    h1 number;
    begin
    h1 := dbms_datapump.open (operation => 'EXPORT', job_mode => 'SCHEMA', job_name => 'export1', version => 'COMPATIBLE');
    dbms_datapump.set_parallel(handle => h1, degree => 1);
    dbms_datapump.add_file(handle => h1, filename => 'EXPDAT.LOG', directory => 'DATA_PUMP_DIR', filetype => 3);
    dbms_datapump.set_parameter(handle => h1, name => 'KEEP_MASTER', value => 0);
    dbms_datapump.metadata_filter(handle => h1, name => 'SCHEMA_EXPR', value => 'IN(''CHECKOUT'')');
    dbms_datapump.set_parameter(handle => h1, name => 'ESTIMATE', value => 'BLOCKS');
    dbms_datapump.add_file(handle => h1, filename => 'EXPDAT%U' || to_char(sysdate,'dd-mm-yyyy') || '.DMP', directory => 'DATA_PUMP_DIR', filetype => 1);
    dbms_datapump.set_parameter(handle => h1, name => 'INCLUDE_METADATA', value => 1);
    dbms_datapump.set_parameter(handle => h1, name => 'DATA_ACCESS_METHOD', value => 'AUTOMATIC');
    dbms_datapump.start_job(handle => h1, skip_current => 0, abort_step => 0);
    dbms_datapump.detach (handle => h1);
    exception
    when others then
    raise_application_error(-20001,'An error was encountered - '||SQLCODE||' -ERROR- '||SQLERRM);
    end;
    Thank you in advanced
    Sri

    user12062360 wrote:
    Hi,
    I am using the pl/sql block to export schema using dbms_datapump package,Now I want to pass the scheme name as the parameter to the procedure and get the .dmp and .log files with the schema name included.
    OK, please proceed to do so
    >
    CREATE OR REPLACE PROCEDURE export
    IS
    h1 number;
    begin
    h1 := dbms_datapump.open (operation => 'EXPORT', job_mode => 'SCHEMA', job_name => 'export1', version => 'COMPATIBLE');
    dbms_datapump.set_parallel(handle => h1, degree => 1);
    dbms_datapump.add_file(handle => h1, filename => 'EXPDAT.LOG', directory => 'DATA_PUMP_DIR', filetype => 3);
    dbms_datapump.set_parameter(handle => h1, name => 'KEEP_MASTER', value => 0);
    dbms_datapump.metadata_filter(handle => h1, name => 'SCHEMA_EXPR', value => 'IN(''CHECKOUT'')');
    dbms_datapump.set_parameter(handle => h1, name => 'ESTIMATE', value => 'BLOCKS');
    dbms_datapump.add_file(handle => h1, filename => 'EXPDAT%U' || to_char(sysdate,'dd-mm-yyyy') || '.DMP', directory => 'DATA_PUMP_DIR', filetype => 1);
    dbms_datapump.set_parameter(handle => h1, name => 'INCLUDE_METADATA', value => 1);
    dbms_datapump.set_parameter(handle => h1, name => 'DATA_ACCESS_METHOD', value => 'AUTOMATIC');
    dbms_datapump.start_job(handle => h1, skip_current => 0, abort_step => 0);
    dbms_datapump.detach (handle => h1);
    exception
    when others then
    raise_application_error(-20001,'An error was encountered - '||SQLCODE||' -ERROR- '||SQLERRM);
    end;
    EXCEPTION handler is a bug waiting to happen.
    eliminate it entirely

  • Unable to export the SiteCatalyst Reports to FTP?

    Hi Team,
    This is the first time I'm using this... I was trying to export the SiteCatalyst Reports via FTP option...
    Below are the steps that I have followed..
    - Browse to Adobe Marketing Cloud -> Analytics -> Reports & Analytics
    - Custom Reports -> ExternalUserHits
    - Click on Send Button ->  
             Format: Excel / CSV
             Advanced Delivery Options ->  Selected FTP instead of Email
                Given our FTP Server (Our organization FTP Server) details with Host Name / port #/ Directory (tried with existing directory too) / User Name / password,
    The report has been sent through email as failed to upload to the FTP server .. Below is the error message
            Error Message :We were unable to upload your report via FTP due to the following error:
                         Failed to create provided directory
    I had given the existing directory in the FTP details section but still it has thrown the above error message
    I have tried with Datawarehouse option too but nothing has been uploaded to my FTP server..
    Please help me..
    Note: I was able to generate the reports and send through email...
    Thanks in Advance,
    Deeepa

    Hi Deeepa,
    I believe you are confusing Business Catalyst (http://businesscatalyst.com) with Site Catalyst (https://sitecatalyst.omniture.com) which are two different products. 
    I'll move this thread to the proper channel to help assist you further.
    Please revert your query to the following thread below instead.
    - http://help-forums.adobe.com/content/adobeforums/en/analytics-forum/adobe-analytics.html
    Kind regards,
    -Sidney

  • Unable to export the ASO cube data

    Guys,
    I am unable to take an export of the ASO cube data. I am getting the following error message :
    Error(1270042)
    Aggregate storage data export failed
    Can anyone assist me at earliest.
    P.S: The data file size is around 30GB.
    Cheers
    Cnee:)

    Hi Cnee,
    can you post more entries from app log at this situation, that would be helpful for more analysis.
    also confirm if the database is in use while you are exporting the data.
    if so, logout users, disable connects and then perform the export.
    - Krish

  • Unable to refresh the schema of FIM MA.Getting an error in Event viewer ""the current version of database is not compatible with the one expected by Forefront Identity Manager service. The current version of database is : 1116. The expected version is :1"

    Hi,
    We have installed FIM MA with an account that have all the sufficient rights.It got created successfully and worked for Full Import and Full Sync. But, due to some version incompatabilities, we have installed a patch.PFB link for the patch.
    http://support.microsoft.com/en-us/kb/2969673/en-us
    Now, we are trying to refresh the schema of FIM MA. While doing that we are facing an error "Failed to connect to database". The user account with which we are connecting has read and write permissions on DB.In the event viewer some errors are
    logged like  "the current version of database is not compatible with the one expected by Forefront Identity Manager service. The current version of database is : 1116. The expected version is :1122" with event ID 3. PFB images for more detailed
    view.
    Please advice how to fix the issue.
    Thanks
    Prasanthi.

    Hello,
    seems to me that you maybe only updated the syncengine but not portal/webservice.
    I had that error once after an recovery from scratch and forgot one of the hotfixes to apply to all services.
    -Peter
    Peter Stapf - ExpertCircle GmbH - My blog:
    JustIDM.wordpress.com

  • BI 4.0 unable to export the universe to repoistory

    We have installed BI 4.0 on  linux Operating system ,then installed the client tools on our local machines. Created universe using universe design tool  whle exporting the universe to the repoistory we are getting below error
    File Repository Server Input is Down
    Any one help us in resolving the issue
    Edited by: Nirmala penikalapati on Oct 14, 2011 1:27 PM

    Couple questions :
    1. Is SE Linux enabled ?
    2. Is there a firewall between this linux box and client machine ?
    3. If FRS actually running and enabled ?
    4. Is there any antivirus running on linux box ? (we saw mcAffee antivirus on Suse causing all sorts of problems)
    Edited by: Denis Konovalov on Oct 14, 2011 7:30 AM

  • Unable to export the Organization XML from process administrator

    Hi,
    I am trying to export the Organization using the available Export feature. I used to be able to do this earlier, but I have been getting the following message lately.
    "*The result set size exceeds maximum fetch size specified in search or maximum page size defined in Directory Server.*"
    Please let me know if there is a configuration that can be edited to resolve this or a workaround to get the export.
    Thanks!
    Katz

    Bump

  • Problem occur when export the schema

    Exp system/manager file=output.dmp owner=ekingdom.table1 ;
    When I run this statement, the error found. What is the problem?
    Thanks
    User:system
    Password:manager
    Schema:ekingdom
    table:table1
    What is the problem?
    REALLY THANKS

    The following will work:
    Exp system/manager file=output.dmp tables=ekingdom.table1
    If you want to export more than one file:
    Exp system/manager file=output.dmp tables=(ekingdom.table1, ekingdom.table2)
    For the last example it is even not necessary that the owners are the same.

  • Discoverer 10g unable to export the rows more that 65000 in excel

    Hi All,
    Earlier discoverer 10g used to export tmore that 65000 rowd data in to excel in multiple sheets. Suddenly it stopped.
    Any suggestions
    Regards,
    Swapnil

    What version are you working on ?
    is it happen in plus as well as in viewer ?
    I just tested the case.
    I am on discoverer 10.1.2.55.26 (10.1.2.3 with CP5)
    java version 1.4.2_06
    I exported a report with ~700K rows
    in the excel it exported all the records devided to 65K records in each worksheet
    Tamir
    Edited by: Tamir-L on Jan 5, 2010 5:11 PM

  • LR was unable to export the catalog's previews and negatives

    My first posting in this forum.  I want to remove everything from my iMac in order to upgrade from Tiger to Snow Leopard, then reload back.  First job is to 'Export as Catalog' all my pics (around 6000) from the Mac to an external hard drive (Maxtor One Touch 4Plus, 450 GB available).  I've tried 6 or 7 times and every time get a similar message - see Subject line.  I've deleted unnecessary folders, gotten rid of unused keywords, and exported 2000 odd of my earlier photos as JPEGS to archive to reduce the volume.  I've reloaded LR and updated to 2.6.  And in the Export dialogue box I've ticked 'Export Negative Files' and 'Include Available Previews'.  The export gets to about three quarters of the way through each time before I get the error message and I have to abort.
    Appreciate any assistance.
    Raymond
    Melbourne, Australia

    Is ALL PHOTOS included in your LR folder hierarchy?  If it is not, then you need to right-click (or whatever the Mac equivalent is) on one of the folders in your LR hierarchy, and choose Include Parent Folder.  Once you've done that, and copied everything over, you can just Locate Missing Folder on that one top folder and it'll find everything underneath it.  If you don't have the parent folder in LR before you copy, you'd have to do Locate Missing Folder on each of the top-level folders.
    Once you've copied your photos over, you can rename your local copy of ALL PHOTOS to make sure you're not accidentally finding it, then do the Locate Missing Folder to make sure it works on the Remote Location.
    Once you're satisfied your catalog is seeing all the remote photos, and when you're ready, copy your catalog and your previews and backup folders over, and rename the local copy of the Lightroom so you won't accidentally open that copy of the catalog, again.  I would copy things, instead of moving them, in case something happens you can start over. 
    If you are going to immediately upgrade your mac, then copy all three folder, other than the iChat ones, from Pictures to your remote drive and open the remote catalog and find missing folders all in one shot.  I suggest doing only the photos, first, in case you want to continue working on the photos, the local copy of the catalog will be faster, but if you're ready to upgrade then just do all the copies at once.  The ALL PHOTOS and the previews will be the time-consuming copies, the catalog, itself, won't take very long.

  • SOS!! How to export a schema while the SYSAUX tablespace is offline?

    Hello,
    the SYSAUX for one of our productive database became corrupted and I had to take it offline in order to open the database. There is no way to recover it since there are missing archive logs from the sequence.
    So I need to export a database schema which holds all the productive tables/indexes (there are no procedure, functions, packages, triggers,etc - just tables, constraints and indexes).
    When I try to export the schema, I get the following error:
    Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Export done in UTF8 character set and UTF8 NCHAR character set
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user CMS31_ARMENTEL_SITE_N
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions for user CMS31_ARMENTEL_SITE_N
    About to export CMS31_ARMENTEL_SITE_N's objects ...
    . exporting database links
    . exporting sequence numbers
    . exporting cluster definitions
    EXP-00056: ORACLE error 376 encountered
    ORA-00376: file 3 cannot be read at this time
    ORA-01110: data file 3: '/opt/data1/oradata/UTF8/sysaux01.dbf'
    ORA-06512: at "SYS.DBMS_METADATA", line 1511
    ORA-06512: at "SYS.DBMS_METADATA", line 1548
    ORA-06512: at "SYS.DBMS_METADATA", line 1864
    ORA-06512: at "SYS.DBMS_METADATA", line 3707
    ORA-06512: at "SYS.DBMS_METADATA", line 3689
    ORA-06512: at line 1
    EXP-00000: Export terminated unsuccessfully
    I've tried direct export, data pump (expdp) but with the same unsucessfull results.
    Is there any way to use the export or expdp utility to get the actual data from a specific schema ?
    Many thanks

    Hello Harry and many thanks for your reply.
    EXCLUDE is an option of expdp not exp. So I used expdp and get the following error:
    expdp impexp/blabla dumpfile=SITE_N.dmp schemas=SITE_N exclude=CLUSTER:SITE_N
    Export: Release 10.1.0.2.0 - Production on Tuesday, 29 January, 2008 20:56
    Copyright (c) 2003, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    ORA-31626: job does not exist
    ORA-31638: cannot attach to job SYS_EXPORT_SCHEMA_05 for user IMPEXP
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPV$FT_INT", line 377
    ORA-39077: unable to subscribe agent KUPC$A_1_20080129205606 to queue "KUPC$C_1_20080129205606"
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPC$QUE_INT", line 248
    ORA-25448: rule SYS.KUPC$C_1_20080129205606$227 has errors
    ORA-00376: file 3 cannot be read at this time
    ORA-01110: data file 3: '/opt/data1/oradata/UTF8/sysaux01.dbf'
    Different error (since now I use expdp) but for the same reason (SYSAUX is offline)
    Regards
    Argyris

  • Unable to export from the node.

    I need to export from a node in directory server.
    This node contain more than 1 million user.
    I am unable to export the node.
    I have tried running ldap search on the node but i only git the node ldif and then ldapserach hangs.
    From start console also nothing happens.
    I used ldapbrowser to export but that is also hanging.
    Any ideas how to export the node.
    I have seen the
    I am using Sun ds 5.2 patch 4 on solaris sparc

    Try stopping your Directory Server instance and running db2ldif to export the database into an LDIF file.

Maybe you are looking for

  • Can not sync Planes movie with iPod Touch

    I have recently purchased the Planes movie so my son can have it on his iPod Touch.  It has downloaded to my iTunes account but will not sync with his iPod.  I get the error message ( "Planes" was not copied to the iPod ... because it cannot be playe

  • Need the WM structure info

    Dear Experts, I have the following case where i need to define the structure in warehouse complex.In the current non-SAP system the entire warehouse area has a highrack storage, where there are about 100 materials stored.The WM users have defined sto

  • [solved] How to quickly crop screenshots?

    Hi there, I am looking for a software recommendation that combines nicely with gnome-screenshot. gnome-screenshot is great to quickly take a selection and copy it into the clipboard. However, sometimes I need to grab the whole screen, for instance be

  • Party Mode

    Hey; My friend was showing me "Media Monkey" on his (Shudder) widows machine... and it had an awesome feature called "Party Mode" ... When activated the user could not switch away from "Media Monkey" (basically locked the computer - Password required

  • Getting error on include jtfdnbartop.jsp in custom page

    We are implementing Oracle iSupport 11.5.10 We have a business requirement for which we require to replace seeded "Item Instances" page (ibuSearchProdMain.jsp), with our own custom page. We are pretty clear on customizations (changes) required in Ite