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?

Similar Messages

  • 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

  • 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..

  • 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.

  • 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.

  • Unknown error making the ibooks export file

    Hi,
    Have done it hundred times already but for some reason now I get "a unknown error" in the proces of making the .ibooks export file out of the .iba.
    Does somebody have a clue what first things first I have to check? Put already some back-ups back but also the same problem.
    working on Mountain Lion 10.8 OSX, ibooks author 1.1 (190). Dutch versions.
    Book counts 225 pages (@astro_andre), IBA file is 1,16 Gb, ibooks file appr. 750 Mb

    Solved. There was an error somewhere in the book. Chapterheading and text frame overlapped.

  • 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

  • Imovie 09 error message trying to export file as .flv

    I am setting up a website in iweb 09 and using video created in imovie 09... been told best video code across the board for pc users is flv... is this true that the best way to save files for iweb is flv format? If so.. how do I convert? imovie won't let me... see error below.
    I get the error below when trying to share and save as .flv... should I be able to do this or do I need another program to covert?
    The movie could not be exported because an error occurred. (OSStatus error -32766)
    thanks, Lisa

    Anyone have the answer to this I am currently having the same problem!
    Thanks.
    I should've made the movie in FCP where the FLV works. Now I am stuck!!

  • IMovie error when trying to export-file open with write privilege

    When trying to export an iMovie, after about two hours, I got a message - error - a file is open with write privilege.  Any idea what might be causing this error or what the error message means?

    Ask the users in the iMovie forum: https://discussions.apple.com/community/ilife/imovie?categoryID=141

  • Error: Can't find Export file

    Hi,
    due to wrong bit budgeting, I rendered a m2v file again from PP with a lower variable bit rate. As before, I replaced the asset and tried to export the BluRay project into a folder on the hdd. But now, I am getting the above mentioned error message. I tried the newly rendered m2v file with ac3 sound in a new Encore project and it worked fine.
    In the past, I had this error and fixed it by creating a new Encore project from scratch. But this project has slide shows multi page motion menus etc. and I am sick of doing this all over again. Does anybody have any idea?
    Thanks
    Claus

    Little update: I took everything out of the project and deleted the corresponding files in the project folder. As soon, as I add a footage without any menu or slide show, the error occurs gain. This software is just crap. I had to build a new project with the same assets again and now it works...

  • 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;

Maybe you are looking for