EXP-00002: error in writing to export file  EXP-00002:   EXP-00000: Export terminated unsuccessfully

Dear All,
<code>
. . exporting table
CDM_HIST_INFO_SERV_RES_DEF     
0 rows exported
. . exporting table         
CDM_HIST_INFO_SLA     
0 rows exported
. . exporting table   
CDM_HIST_INFO_WORKGROUP     
0 rows exported
. . exporting table     
CDM_INCIDENT2SERVICES  
1040 rows exported
. . exporting table             
CDM_INCIDENTS </code>
EXP-00002: error in writing to export file
EXP-00002: error in writing to export fileerror closing export file /archive/weeklybkp/export/loc2/sd-04-Sep-08-55.dmp
EXP-00000: Export terminated unsuccessfully
I got the above error.It only backup 2Gb after that the above error came.Please help me.
Regards,
DB.

following link can help you out.
http://arjudba.blogspot.in/2009/12/export-fails-with-exp-00002-error-in.html
Check the solution section.

Similar Messages

  • EXP-00002: error in writing to export file

    Dear All,
    When I am exporting a table I am getting the following Error:
    EXP-00015: error on row 7585060 of table WIP_TRANSACTION_ACCOUNTS, column PROGRAM_UPDATE_DATE, datatype 12
    EXP-00002: error in writing to export file
    EXP-00002: error in writing to export fileerror closing export file /export/home/oraprod/wip_transaction_accounts_tbl.dmp
    EXP-00000: Export terminated unsuccessfully
    What is the cause of this issue..? It shows there is an error in row 7585060 of table WIP_TRANSACTION_ACCOUNTS, column PROGRAM_UPDATE_DATE, datatype 12
    How can I rectify this..?
    Please update...
    Many thanks..

    Thank you for the response..,
    I checked with the query and the result is as follows:
    SQL> select PROGRAM_UPDATE_DATE
    from WIP_TRANSACTION_ACCOUNTS
    where rowid = (
    select rowid from WIP_TRANSACTION_ACCOUNTS
    where rownum <= 7585060
    minus
    select rowid from WIP_TRANSACTION_ACCOUNTS
    where rownum < 7585060);
    PROGRAM_U
    12-JUL-09
    and
    the disk usage is as follows:
    Filesystem size used avail capacity Mounted on
    /dev/dsk/c1t0d0s0 5.8G 5.7G 0K 100% /
    /proc 0K 0K 0K 0% /proc
    mnttab 0K 0K 0K 0% /etc/mnttab
    fd 0K 0K 0K 0% /dev/fd
    /dev/dsk/c1t0d0s3 5.8G 4.5G 1.2G 79% /var
    swap 20G 104K 20G 1% /var/run
    swap 20G 432K 20G 1% /tmp
    /dev/dsk/c3t3d3s3 39G 18G 21G 47% /free1
    /dev/dsk/c3t3d3s6 247G 88G 156G 37% /proddata
    /dev/dsk/c1t2d0s0 67G 48G 19G 72% /prod
    /dev/dsk/c1t3d0s0 67G 49G 18G 74% /stage
    Is there is problem with the space in the disk..? as its showing 100% usage for /dev/dsk/c1t0d0s0
    Please update....
    regards..

  • ORA-00002: error in writing to export file

    Hi All,
    I am using 32-bit windows as oracle 10g client and oracle 10g server is install on unix.
    When I execute
    c:\> exp username/password@hostname file=trupm.dmp log=trump.log
    I get ORA-00002: error in writing to export file
    I have check my OS space and found that there is 8 GB space free.
    The dump file was created with 14 GB and fail with the above error
    Pls someone put light on it.
    thanks in advance
    saz

    so far at the same location exp wrote 14 GB but now it is giving error when at the same location that is c:\ space is 8 GB free

  • Error in writing to export file

    Hi,
    I am getting the below error on running export:-
    EXP-00002: error in writing to export file
    The query is as given below:-
    exp cam3_mpcb2/cam3_mpcb2@ORA10G file='c:\MPCB_cam_20120113.dmp' log='c:\MPCB_20120113.log'
    CAn i overcome this error by adding "ignore" at the end of the query or how can i modify the above query ?

    Are there any other error messages that accompany the one you posted?
    EXP-00002: error in writing to export file
    Cause: Export could not write to the export file, probably because of a device error. This message is usually followed by a device message from the operating system.
    Action: Take appropriate action to restore the device. Do you have permissions to write to this location?

  • Errors when writing metadata to files on Windows Server

    Good day!
    I have an iMac running OSX 10.9 (Maverick) and Lightroom 5.2.
    My catalog is on the local iMac drive, and the images are on SMB shared drive (handled by Windows 2012 server).
    I decided to do the final layout of my album using InDesign, and for that I needed to access to images using Bridge. So selected all the images (the rated once...) and issue a Metadata/Save command.
    The system came back with errors on many of the files (such as Photos are read only, and unknown errors).
    Retrying to save the metadata on image that was flagged with an error usually (but not always) worked.
    I tried to select save the metadata for few (6) images in a time, many times it was ok, but sometimes, one or two of them failed (and retrying again usually solved the problem).
    It looks to me like a timing related issue.
    Any ideas?
    (After spending about an hour on this, I have exported the images to my local drive...). In general I don't have similar problems with other apps.
    Any ideas?
    Yuval

    I Yuval
    I'm experiencing more or less the same behavior (see Read-only error when writing metadata to file over network (Synology DS1315+ using AFP) ). For me however, the problem is more pronounced if I use the AFP protocol and is better (I think as you described) if I use SMB (all done on a Synology DS1315+). With SMB it most often works but in very rare cases I also get the "read only" message!
    Do you have solution to this? Or are you stuck as I am?
    Cheers, Chris

  • Error while writing to a file

    Hi,
    I am getting an error while writing to a file.Here is the sample code in which I am getting error.The STDERR is getting printed to console but the same is not getting written to a file.
    package Sample;
    import java.util.*;
    import java.io.*;
    public class MediocreExecJavac
    public static void main(String args[])
    try
    Runtime rt = Runtime.getRuntime();
    Process proc = rt.exec("perl ic_start");
    InputStream stderr = proc.getErrorStream();
    InputStreamReader isr = new InputStreamReader(stderr);
    BufferedReader br = new BufferedReader(isr);
    FileWriter fw=new FileWriter("result.txt");
    String line = null;
    System.out.println("<ERROR>");
    while ( (line = br.readLine()) != null)
    System.out.println(line);
    fw.write(line);
    System.out.println("</ERROR>");
    int exitVal = proc.waitFor();
    System.out.println("Process exitValue: " + exitVal);
    fw.close();
    } catch (Throwable t)
    t.printStackTrace();
    }Below is the output -
    <ERROR>
    Can't open perl script "ic_start": No such file or directory
    java.lang.NullPointerException
    at java.io.Writer.write(Unknown Source)
    at Sample.MediocreExecJavac.main(MediocreExecJavac.java:21)
    Please tell where the program is going wrong.

    i think it is just the path of file that u r missing

  • Error when Writing Metadata to Files in Bridge (Mac) but not in Bridge (PC)

    We get an error when writing metadata to files in Bridge (Mac) but not in Bridge (PC). In the same drive and folder, the PC can successfully write a keyword to a file on the PC, where the Mac returns an error. I have researched this at the Adobe Knowledgebase, but their answer seemed to indicate it was a global issue, and we don't see that behavior on the PC.
    The client is a Mac of course, and the server volume is a Windows share volume. The Mac is bound to AD, and the domain\username and username formats have both been tried when logging in, but you receive the error in both.
    Any help would be appreciated.
    Thanks!
    Rich Oliver

    Hi, I'm having the same problem using FreeNAS (which uses Samba and Netatalk in the backend), but I tried with both AFP and SMB on Mavericks and Yosemite, I still have the same issue.  I think it might be a timing issue with how lightroom interact with a slower write delay using network shares.  I suggest you also chime into this thread:  Lightroom 5 can't write metadata to DNG files   I really hope this is resolved as this is impacting my productivity as I moved my workflow to my Macbook with a shared NAS.

  • Export Terminated Unsuccessfully

    Dear Experts
    When I rune export utility on my oracle 9i database it ends with the following errors.
    EXP-00008: ORACLE error 3113 encountered
    ORA-03113: end-of-file on communication channel
    EXP-00008: ORACLE error 1041 encountered
    ORA-01041: internal error. hostdef extension doesn't exist
    EXP-00000: Export terminated unsuccessfully
    Please help me out. thanks

    You seem to be in hurry, If you need solution, you should try to provide information to the people who are trying to help you. I asked following which you did not reply
    Is it windows? If yes then can you remove parameter SQLNET.AUTHENTICATION_SERVICES from your SQLNET.ORA
    Are you connecting as SYSDBA for full database export? Can you do followin.
    1) What is you export a schema using sysdba user
    2) What is you try exporting full database using user SYSTEM.

  • Oracle 9i install error in writing to temp file

    Could someone please help?
    I'm trying to install the Oracle 9i client (v.9.2) on windows xp, but getting this error:
    "Error in writing to directory C:\DOCUME~1\user\LOCALS~1\Temp\OraInstall2005-09-15-xxxxxxx". Please ensure that this directory is writable and has atleast 32 MB of disk space. Installation cannot continue.
    I deleted the install on the temp folder, there is more than enough space to write (over 20gb free hd space). I'm lost on how to fix it, and have wasted far too much time trying to get it to work. Please help!!!

    You could set TEMP and TMP temporarily in a DOS box :
    set TEMP=<temp_directory>
    sert TMP=<temp_directory>
    Then start setup.exe out of this DOS box.
    Unfortunately there are reported many possible reasons for this error, including bugs.
    Maybe this metalink note could help:
    Note:71919.1
    Subject: Debugging the Oracle Universal Installer(OUI) on Windows

  • EXP-00000: Export terminated unsuccessfully

    When Im perform export it terminated unsuccessfully with bellow message,please clarify why is this
    EXP-00008: ORACLE error 1555 encountered
    ORA-01555: snapshot too old: rollback segment number 3 with name "_SYSSMU3$" too small
    EXP-00000: Export terminated unsuccessfully

    I'm going to assume you are running an older version of Oracle? 9i? And/or that you use manual rollback segments?
    I've had that error before when running an export because my export was running for longer than the database was keeping the undo blocks that I needed to read from. Our export was running for 6 hours, so you need to ensure that it can have a read consistent view of the data as of 6 hours ago. If using automatic undo management, which I would recommend, you can set the undo_retention to 6 hours.

  • Error While Writing to Target FIle

    Hi
    I am executing an interface which reads data from a delimited file and writes into another delimited file.
    But while executing the interface i am getting the following error
    ODI-1227: Task I_FILE_TO_FILE (Integration) fails on the source ORACLE connection DWH_TARGET.
    Caused By: java.sql.SQLSyntaxErrorException: ORA-00923: FROM keyword not found where expected
    To let u know te background i am using Staging Area Different Than Target
    LKM is LKM File to SQL
    IKM: IKM SQL to file Append
    Kindly let me know where am i doing wrong??
    regards
    GS

    Source Code
    select      
         C1_ORD_NO     ORDER,
         C2_QTY1     QUANTITY1,
         C3_QTY2     QUANTITY2,
         C4_QTY3     QUANTITY3
    from     ODI_TARGET.C$_0FILE_ORDER
    where     
         (1=1)     
    Target Code
    insert into "D:/GSANKAR/FILE_ORDER.txt"
         ORDER,
         QUANTITY1,
         QUANTITY2,
         QUANTITY3
    values
         :ORDER,
         :QUANTITY1,
         :QUANTITY2,
         :QUANTITY3
    /*$$SNPS_START_KEYSNP$CRDWG_TABLESNP$CRTABLE_NAME=FILE_ORDERSNP$CRLOAD_FILE=D:/GSANKAR/FILE_ORDER.txtSNP$CRFILE_FORMAT=DSNP$CRFILE_SEP_FIELD=0x007cSNP$CRFILE_SEP_LINE=0x000D0x000ASNP$CRFILE_FIRST_ROW=1SNP$CRFILE_ENC_FIELD=SNP$CRFILE_DEC_SEP=SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=ORDERSNP$CRTYPE_NAME=STRINGSNP$CRORDER=1SNP$CRLENGTH=50SNP$CRPRECISION=50SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=QUANTITY1SNP$CRTYPE_NAME=STRINGSNP$CRORDER=2SNP$CRLENGTH=10SNP$CRPRECISION=10SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=QUANTITY2SNP$CRTYPE_NAME=STRINGSNP$CRORDER=3SNP$CRLENGTH=10SNP$CRPRECISION=10SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=QUANTITY3SNP$CRTYPE_NAME=STRINGSNP$CRORDER=4SNP$CRLENGTH=10SNP$CRPRECISION=10SNP$CR$$SNPS_END_KEY*/
    regards
    GS

  • Error while writing to a file from pl/sql

    Hi,
    I am trying to execute the following script but i get the following error ;
    declare
    emp_rec emp%ROWTYPE;
    file_id UTL_FILE.FILE_TYPE;
    BEGIN
    file_id := utl_file.FOPEN ('C:\test','test.txt','w');
    FOR emp IN (SELECT employee_id FROM employees)
    LOOP
    utl_file.PUT_LINE( file_id, emp.employee_id );
    END LOOP;
    utl_file.fCLOSE(file_id);
    END;
    ORA-04068: e[b]xisting state of packages has been discarded
    ORA-04067: not executed, package body "SCOTT.UTL_FILE" does not exist
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 5
    What is the reason for this error ??
    I have given execute privilge to SCOTT on the package utl_file.

    UTL_FILE comes as part of the database, you shouldn't have to install it, and you most certainly shouldn't install it as SCOTT. System packages should be installed using a system user such as sys.
    Firstly, I would suggest dropping the UTL_FILE package from your scott schema and then logging on as sys and granting execute permission on UTL_FILE to the scott user.
    Secondly...
    The UTL_FILE_DIR parameter has been deprecated by oracle in favour of direcory objects because of it's security problems.
    The correct thing to do is to create a directory object e.g.:
    CREATE OR REPLACE DIRECTORY mydir AS 'c:\myfiles';Note: This does not create the directory on the file system. You have to do that yourself and ensure that oracle has permission to read/write to that file system directory.
    Then, grant permission to the users who require access e.g....
    GRANT READ,WRITE ON DIRECTORY mydir TO myuser;Then use that directory object inside your FOPEN statement e.g.
    fh := UTL_FILE.FOPEN('MYDIR', 'myfile.txt', 'r');Note: You MUST specify the directory object name in quotes and in UPPER case for this to work as it is a string that is referring to a database object name which will have been stored in uppercase by default.

  • Error in writing to a file

    Hi,
    I need to create write in a file using PL/SQL. i have created one procedure. the file is being created. But no contents are appended in the file
    Create or Replace procedure CTL_TABLE_SPOOL as
    v_file utl_file.file_type;
    fname varchar2(200);
    cursor c1 is
    select * from hr.jobs;
    begin
    fname:='fr_ready_'||to_char(sysdate,'MMDDYYYY')||'.csv';
    v_file := utl_file.fopen('ID_FR_DIR',fname,'w');
    for r1 in c1 loop
    utl_file.put_line(v_file,r1.JOB_ID||'|'||r1.JOB_TITLE||'|'||r1.MIN_SALARY||'|'||r1.MAX_SALARY);
    end loop;
    end;
    Can you please tell me where i am doing the mistake.
    Regards,
    Ashish

    try adding after the end loop the
        end loop;
        utl_file.fclose(v_file);
      end;

  • Error while Doing the export in FDM

    Hi John,
    I went through the following blog Planning V11 Drill back (http://john-goodwin.blogspot.com/2008/07/planning-v11-drill-back.html).
    And i did in the same way as u have explained there ......
    Import and validate is successfull for me and for export it is showing successful for me but the fish colour is not changing to orange colour.
    And while adding Rules from Map option tab for Target Account it is showing two options
    one is Zoom..... and another is Browse for taget values......
    But when i clicked on Browse for taget values......option it is not showing anyting.
    Where am i wrong ?Can u suggest me something so that i will be able to export my CSV file?
    Thanks
    Edited by: user11358816 on Jul 30, 2009 4:58 AM

    Metalink Note:232120.1
    Symptom(s)
    ~~~~~~~~~~
    You are performing a database export against your 9.2 database.  The database
    export abnormally ends with the following errors:
    EXP-00056: ORACLE error 31600 encountered
    ORA-31600: invalid input value EMIT_SCHEMA for parameter NAME in function
    SET_TRANSFORM_PARAM
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105
    ORA-06512: at "SYS.DBMS_METADATA_INT", line 3926
    ORA-06512: at "SYS.DBMS_METADATA_INT", line 4050
    ORA-06512: at "SYS.DBMS_METADATA", line 836
    ORA-06512: at line 1
    EXP-00000: Export terminated unsuccessfully
    Change(s)
    ~~~~~~~~~~
    One of the known causes for the error above is that a patchset was recently
    applied to the database but one or more of the patchset steps were not
    performed.
    [pre]Cause
    ~~~~~~~
    View the readme notes for the patchset recently installed. You will see a step
    that should have been performed that directs you to run the script named
    catpatch.sql. Very likely this step was never performed.
    Fix
    ~~~~
    As the sysdba user run the catpatch.sql script found in the directory named
    $ORACLE_HOME/rdbms/admin. Before you submit this script, view it's contents.
    You may see that this script places the database in restricted mode.
    Regards,
    Reza
    P.S: I think this issue is not related to "SQL and PL/SQL" Forum :-)

  • Error In Query Level export with  multiple conditions

    When i am running the following Query for Export with i am getting the result.
    C:\Documents and Settings\ITL>exp scott/tiger@orcl tables=(emp) QUERY='"WHERE deptno > 10 and sal !=2850"' LOG=log011.log FILE=exp.dmp
    Export: Release 10.2.0.1.0 - Production on Wed Jan 30 10:01:27 2013
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    About to export specified tables via Conventional Path ...
    . . exporting table EMP 10 rows exported
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    Export terminated successfully with warnings.
    But When I run with The following condition then it shows the following error...
    C:\Documents and Settings\ITL>exp scott/tiger@orcl tables=(emp) QUERY='"WHERE deptno > 10 and job!='CLERK' "' LOG=log011.log FILE=Exp01.dmp
    LRM-00111: no closing quote for value ' LOG=log01'
    EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
    EXP-00000: Export terminated unsuccessfully
    C:\Documents and Settings\ITL>exp scott/tiger@orcl tables=(emp) QUERY="WHERE deptno > 10 and job!='CLERK'" LOG=log5.log FILE=exp01.dmp
    LRM-00112: multiple values not allowed for parameter 'query'
    EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
    EXP-00000: Export terminated unsuccessfully
    Please suggest a solution for it.

    966523 wrote:
    Padma.... wrote:
    Hi,
    The single quotes used for CLERK are causing the issue most probably.
    C:\Documents and Settings\ITL>exp scott/tiger@orcl tables=(emp) QUERY='"WHERE deptno > 10 and job!='CLERK' "' LOG=log011.log FILE=Exp01.dmp
    try replacing with this
    C:\Documents and Settings\ITL>exp scott/tiger@orcl tables=(emp) QUERY='"WHERE deptno > 10 and job!=''CLERK'' "' LOG=log011.log FILE=Exp01.dmp
    Two single quotes(not double quotes) in the place of one single quote for CLERK.
    Thanks
    Padma...Thanks A Lot...if/when you place all inside control file, then you do not have to worry about such complications

Maybe you are looking for

  • All Photos view in full screen can't happen?

    Just want to be sure I'm not missing something.  When I'm using iPhoto in full screen mode, I only have Events, Faces, Places, Albums, Projects and NO PHOTOS view.  Right?

  • How to set background color based on values in column grouping

    Hello, I have query select 1 as CustomerID,'Reality' as Type, 100 as Turnover UNION select 1 as CustomerID,'Budget' as Type, 120 as Turnover UNION select 2 as CustomerID,'Reality' as Type, 140 as Turnover UNION select 2 as CustomerID,'Budget' as Type

  • How display Document when using file_store

    I create a FIle_Datastore called COMMON_DIR (as The Sample). My question is When in Form I query to bring the ID_Number and the Document name (This I believe is the Path where the document is located in the file system)and No problem with this, but h

  • Preview sidebar showing 2 columns of icons but I want only 1

    I must be having a total brain cramp, but recently all of my multi-page pdfs have been showing as 2 columns of icons when the sidebar is showing. This makes hosting a presentation awkward when an over-head projector is connected because I can't just

  • Can I show multiple rows of bookmarks?

    In Firefox 3, I have three rows of bookmarks on the toolbar. I want to replicate this in Firefox 4. Is there a way to do this?