ORA-29285: error writing file

Hi, I'm trying to clear a table in a flat file, & provided the stored procedure using my Tom Kyte @ https://asktom.oracle.com/pls/asktom/f?p=100:11:0:NO:P11_QUESTION_ID:88212348059.

It worked well at first, but now I always get the following error message:

ERROR on line 1:

ORA-29285: error writing file

ORA-06512: at "OFSA_ATOMIC. DUMP_TAB_TO_CSV", line 45

ORA-06512: at line 1

The search for this error ORA out Virgin on MOS.

Any ideas how to solve this problem?

I already checked for space on the file system and there is lots of space available.

Also, the file is created with a size of 0 bytes before the procedure was abandoned.

Thank you

-CV

Hello

trying to figure out what has changed since it worked. Length of the line would be greater than 1024 default that uses Tom proc?

http://docs.Oracle.com/CD/E11882_01/AppDev.112/e40758/u_file.htm#ARPLS70900

The FOPEN max_linesize parameter must be a number in the range 1 to 32 767. If not specified, Oracle provides a default value of 1024.

Tags: Database

Similar Questions

  • ORA-29284: error reading file

    Hello

    You need two flat files on a privilege of 2000.

    1. read a file. CSV
    2. keep a regular, unformatted table information

    Here are the steps I did to reach the first goal...

    1 TEST READING FILE

    CREATE OR REPLACE DIRECTORY PUBLIC_ACCESS AS 'C:\REPORTES_REY ';
    GRANT READ, WRITE ON DIRECTORY PUBLIC_ACCESS TO THE PUBLIC;

    -THIS PL / SQL works well...

    DECLARE
    utl_file.file_type v1.
    VARCHAR2 (600) v2;
    Start
    v1: = utl_file.fopen('PUBLIC_ACCESS','prueba20110218.csv','R'); -WORKS WELL...
    -v1: = utl_file.fopen('PUBLIC_ACCESS','sui_facturacion_alcantarillado_15085_2011_01_76845_001.csv','R');
    loop
    Start
    UTL_FILE.get_line (v1, v2);
    dbms_output.put_line ('el contenido del archivo're: ' | v2);
    exception
    When no_data_found then
    "exit";
    end;
    dbms_output.put_line ('-');  LINE BREAK
    end loop;
    UTL_FILE.fclose (v1);
    exception
    while others then
    dbms_output.put_line (SQLERRM);
    end;
    /


    but when you change the name of the prueba20110218.csv-> card file sui_facturacion_alcantarillado_15085_2011_01_76845_001.csv shows the following error

    ORA-29284: error reading from file+.


    -This error be?



    Thank you for the attention and offered cooperation...

    Nice day...


    REYNEL SALAZAR MARTINEZ
    Cali-Colombia

    Rey-user6318244 says:

    I do not understand the error-> ORA-06502

    This means that you read from the file exceeds 800 characters/bytes and cannot fit into the variable v2 which is declared as varchar2 (800). Try the growing size of v2:

    VARCHAR2 (1024) v2;

    SY.

  • ORA-01565: error in file identification

    Hello
    10 g R2 on windows 2003 server

    I have these errors when creating the control file:
    ORA-01565: error in identifying file  'W:\TEST\DATA\SYSTEM01.DBF'
    O/S-Error: (OS 3)
    I put the data files on a mapped file (w) system.

    I heard that Oracle under windows cannot identify mapped filesystem. Is this really the case? Can you confirm please?
    Thank you very much.

    I heard that Oracle under windows cannot identify mapped file system

    That's right in a DEFAULT configuration, the default setting means all Oracle services (check Control Panel) run under the LocalSystem account. This internal account is not allowed access to readers in network for security reasons.

    Solution:
    Start Oracle services (at least the database service and listener) to the same user to the help that is used during authentication of the mapped network drive. For working in an Oracle environment this user must have administrator privileges and must belong to the ORA_DBA group, normally it is the user who did the installation of Oracle.

    Werner

  • ORA-06502 error writing to PDF file

    Oracle 10.1.2.0.8

    I'm trying to create a procedure from pl/sql that will dump a bunch of pdf files stored in BLOBs on disk. It runs on a windows machine. In order to avoid line breaks, I use htp.prn.

    When I run the following procedure, I get the error:

    ORA-06502: PL/SQL: digital or value error: character string buffer too small

    If I comment on htp.prn (utl_raw.cast_to_varchar2 (l_buffer)); then the error disappears.

    I tried to use smaller buffers sizes but I still get the same error.

    Any thoughts are appreciated.


    PROCEDURE EXPORT_APNDX_FILES
    IS
    lv_code NUMBER; -used for the treatment of exceptions
    lv_errm VARCHAR2 (64); -used for the treatment of exceptions
    lv_err1 VARCHAR2 (120); -used for the treatment of exceptions
    lv_err2 VARCHAR2 (120); -used for the treatment of exceptions

    l_file UTL_FILE. TYPE_DE_FICHIER;
    l_buffer RAW (32767).
    l_amount directory: = 32767;
    l_pos INTEGER: = 1;
    l_blob BLOB;
    l_blob_len INTEGER.

    BEGIN
    -Get LOB locator
    SELECT studyapndx_fileobj
    IN l_blob
    Of er_studyapndx
    WHERE rownum = 1; -<-first file is a pdf file

    l_blob_len: = DBMS_LOB.getlength (l_blob);

    -Open the destination file.
    l_file: = UTL_FILE.fopen ("BLOBS", "file.PDF ', 'w', l_amount");

    HTP.init;
    owa_util.mime_header (' application/pdf');

    -Pieces of the BLOB to read and write to the file
    -full up.
    While l_pos < l_blob_len LOOP
    DBMS_LOB. Read (l_blob, l_amount, l_pos, l_buffer);
    HTP. PRN (utl_raw.cast_to_varchar2 (l_buffer)); -<-mistake here
    l_pos: = l_pos + l_amount;
    END LOOP;

    -Closes the file.
    UTL_FILE.fclose (l_file);

    EXCEPTION
    WHILE OTHERS THEN
    -Close the file if something goes wrong.
    IF UTL_FILE.is_open (l_file) THEN
    UTL_FILE.fclose (l_file);
    END IF;

    lv_code: = SQLCODE;
    lv_err1: = SUBSTR (SQLERRM, 1, 120);
    lv_err2: = SUBSTR (SQLERRM, 121, 240);
    DBMS_OUTPUT. Put_line ('Error Code' | lv_code |) ': ' || lv_err1);
    DBMS_OUTPUT. Put_line ('Error Code' | lv_code |) ': ' || lv_err2);

    END; -Procedure

    Change the file mode of text ('w') in binary ("wb") might be enough to allow the put_raw procedure work properly without incorporation of unintentional line breaks. Mode text on a windows machine, file IO routines know that the lines of the text file are completed by a CRLF combination, and it automatically adds the LF when missing essentially converted what he considers an end to end of line CRLF windows line CR style unix style. Binary mode should not do as it possible now that a CR character is not necessarily a line break.

  • Problem using ORA-29285 UTL_FILE package

    Dear all,

    I would appreciate your help.
    I am trying to export data, form a table.
    The DB version is 10.2.0.4
    I use the following procedure:
    create or replace
    procedure EXPORT_FRAME(
    dir IN VARCHAR2, filename IN VARCHAR2) IS
    f utl_file.file_type;
      cursor frame is 
        Select *
        from test_complete_frame_2008;
    
    begin 
    
      f:= utl_file.fopen (dir, filename,'w');
      FOR a IN frame
      Loop 
        utl_file.put_line (f,
            
            '"'||a.COM_DATA_ID || '";"' ||
               a.COM_DATA_SET_ID || '";"'||
                a.NSI || '";"'||
                a.FRAME_ID || '";"'||
                a.STATUS_FRAME || '";"'||
                TO_CHAR(a.FRAME_REFERENCE_DATE, 'dd/mm/yyyy') || '";"'||
                TO_CHAR(a.DATE_OF_SELECTION, 'dd/mm/yyyy')  || '";'||
                a.EU_LEU_ID || ';"'||
                a.NSA_ID || '";"'||
                a.SOURCE_IDENTITY || '";"'||
                TO_CHAR(a.REF_DATE_LEU_IDENTITY, 'dd/mm/yyyy') || '";"'||
                a.NATIONAL_ID || '";"'||
                a.REF_DATE_NATIONAL_ID || '";"'||
                a.DUNS_NUMBER || '";"'||
                TO_CHAR(a.REF_DATE_DUNS_NUMBER, 'dd/mm/yyyy') || '";"'||
                a.BVD_ID || '";"'||
                TO_CHAR(a.REF_DATE_BVD_ID, 'dd/mm/yyyy') || '";"'||
                a.NAME_LEGAL_UNIT || '";"'||
                a.LEGAL_FORM_EGR || '";"'||
                a.SOURCE_LEGAL_FORM || '";"'||
                TO_CHAR(a.REF_DATE_LEGAL_FORM, 'dd/mm/yyyy') || '";"'||
                a.TYPE_OF_LEGAL_UNIT || '";"'||
                a.SOURCE_CODE_TYPE_OF_LEU || '";"'||
                TO_CHAR(a.REF_DATE_TYPE_OF_LEU, 'dd/mm/yyyy') || '";"'||
                a.STATUS_LEU || '";"'||
                a.SOURCE_CODE_STATUS_LEU || '";"'||
                TO_CHAR(a.REF_DATE_STATUS_LEU, 'dd/mm/yyyy') || '";"'||
                a.POST_DELIVERY_POINT || '";"'||
                a.CITY_NAME || '";"'||
                a.POSTAL_CODE || '";"'||
                a.STATE_NAME || '";"'||
                a.COUNTRY_CODE_BOP || '";"'||
                a.COUNTRY_ACCESS_CODE || '";"'||
                a.TELEPHONE_NUMBER || '";"'||
                a.FAX_NUMBER || '";"'||
                TO_CHAR(a.DATE_OF_INCORPORATE, 'dd/mm/yyyy') || '";"'||
                a.SOURCE_DATE_OF_INCORP || '";"'||
                TO_CHAR(a.REF_DATE_DATE_OF_INCORP, 'dd/mm/yyyy') || '";"'||
                TO_CHAR(a.DATE_OF_LIQUIDATION, 'dd/mm/yyyy') || '";"'||
                a.SOURCE_DATE_OF_LIQ || '";"'||
                TO_CHAR(a.REF_DATE_DATE_OF_LIQ, 'dd/mm/yyyy') || '";"'||
                a.NACE_CODE || '";"'||
                a.VERSION_NACE || '";"'||
                a.SOURCE_CODE_NACE || '";"'||
                TO_CHAR(a.REF_DATE_NACE, 'dd/mm/yyyy') || '";"'||
                a.NUMBER_PERS_EMPLOYED || '";"'||
                a.SOURCE_CODE_PERS_EMPL || '";"'||
                a.CONS_PERSON_EMPLOYED || '";"'||
                TO_CHAR(a.REF_DATE_PERS_EMPLOYED, 'dd/mm/yyyy') || '";"'||
                a.SPECIAL_PURP_ENTITY_CODE || '";"'||
                a.SOURCE_CODE_SPE || '";"'||
                TO_CHAR(a.REF_DATE_SPE_CODE, 'dd/mm/yyyy') || '";"'||
                a.EMAIL_ADDRESS || '";"'||
                TO_CHAR(a.REF_DATE_EMAIL_ADDRESS, 'dd/mm/yyyy') || '";"'||
                a.WEB_ADDRESS || '";"'||
                TO_CHAR(a.REF_DATE_WEB_ADDRESS, 'dd/mm/yyyy') || '";"'||
                a.P_EU_LEU_ID || '";"'||
                a.P_NAME_LEGAL_UNIT || '";"'||
                a.P_COUNTRY_CODE_BOP || '";"'||
                a.STATUS_RELATIONSHIP || '";"'||
                a.PERCENTAGE || '";"'||
                a.KIND_OF_CONTROL || '";"'||
                a.SOURCE_CODE_RELATIONSHIP || '";"'||
                TO_CHAR(a.REF_DATE_RELATIONSHIP, 'dd/mm/yyyy') || '";"'||
                a.GLOBAL_LEVEL || '";"'||
                a.GGH_EU_LEU_ID || '";"'||
                a.GGH_NAME_LEGAL_UNIT || '";"'||
                a.GGH_COUNTRY_CODE_BOP || '";"'||
                a.GGH_NSA_ID || '";"'||
                a.GGH_DUNS_NUMBER || '";"'||
                a.GGH_BVD_ID || '";"'||
                a.GGH_SOURCE_IDENTITY || '";"'||
                a.GLOBAL_EG_ID || '";"'||
                a.GLOBAL_EG_NAME || '";"'||
                a.TOP_MNE_IND || '";"'||
                a.GEG_PERSONS_EMPLOYED || '";"'||
                a.GEG_SOURCE_CODE_PERS_EMPL || '";"'||
                TO_CHAR(a.GEG_REF_DATE_PERS_EMPL, 'dd/mm/yyyy') || '";"'||
                a.NUMBER_OF_LEGAL_UNITS || '";"'||
                a.GEG_NACE_CODE_DIV || '";"'||
                a.GEG_SOURCE_CODE_NACE || '";"'||
                TO_CHAR(a.GEG_REF_DATE_NACE, 'dd/mm/yyyy') || '";"'||
                a.GEG_CONS_TURNOVER || '";"'||
                a.GEG_VALUTA_CONS_TURNOVER || '";"'||
                TO_CHAR(a.GEG_BEGIN_CONS_TURNOVER, 'dd/mm/yyyy') || '";"'||
                TO_CHAR(a.GEG_END_CONS_TURNOVER, 'dd/mm/yyyy') || '";"'||
                a.GEG_SOURCE_CONS_TURNOVER || '";"'||
                TO_CHAR(a.GEG_REF_DATE_C_TURNOVER, 'dd/mm/yyyy') || '";"'||
                a.GEG_TOTAL_ASSETS || '";"'||
                a.GEG_VALUTA_TOTAL_ASSETS || '";"'||
                a.GEG_SOURCE_TOTAL_ASSETS || '";"'||
                TO_CHAR(a.GEG_REF_DATE_TOTAL_ASSETS, 'dd/mm/yyyy') || '";"'||
                a.GEG_WEB_ADDRESS || '";"'||
                a.GDC_EU_LEU_ID || '";"'||
                a.GDC_NAME_LEGAL_UNIT || '";"'||
                a.GDC_COUNTRY_CODE_BOP || '";"'||
                a.GDC_NSA_ID || '";"'||
                a.GDC_DUNS_NUMBER || '";"'||
                a.GDC_BVD_ID || '";"'||
                a.GDC_SOURCE_IDENTITY || '";"'||
                a.REP_EU_LEU_ID || '";"'||
                a.REP_NAME_LEGAL_UNIT || '";"'||
                a.REP_POST_DELIVERY_POINT || '";"'||
                a.REP_POSTAL_CODE || '";"'||
                a.REP_STATE_NAME || '";"'||
                a.REP_CITY_NAME || '";"'||
                a.REP_COUNTRY_CODE_BOP || '"'
                );
           UTL_FILE.new_line (f);
      END LOOP;
      UTL_FILE.new_line (f);
      UTL_FILE.fclose(f);
      
        EXCEPTION
          WHEN NO_DATA_FOUND
            THEN dbms_output.put_line ('FAILED');
            
    END EXPORT_FRAME;
    I get an error message:

    Error from the 1 in the command line:
    begin EXPORT_FRAME ('EXP ','test2.csv '); end;
    Error report:
    ORA-29285: error writing file
    ORA-06512: at "SYS." UTL_FILE", line 136
    ORA-06512: at "SYS." UTL_FILE", line 813
    ORA-06512: at the 'EGR. EXPORT_FRAME', line 13
    ORA-06512: at line 1
    29285 00000 - "file write error".
    * Cause: Unable to write in, rinse, or closing a file.
    * Action: Check that the file exists, be accessible and which
    It is open for write or add mode.

    Any idea?

    Thanks in advance!

    Default UTL_FILE. FOPEN opens the file with a record size up to 1024 characters (including line breaks). Most likely your code is greater than 1024. Change:

    f: = utl_file.fopen (dir, filename, 'w');

    something like (assuming that none of your records will exceed 10000)

    f: = utl_file.fopen (dir, filename, 'w', 10000);

    SY.

  • I have installation error message saying "error 1310.Error writing to file:C:\Program files (x 86) \Adobe\Acrobat DC\Acrobat\AMT\AAM\P7\ZS\ro_RO\StringTable.xml.» Make sure you have access to this directory.

    Hi my dear, I have installation error message saying "error 1310.Error writing to file:C:\Program files (x 86) \Adobe\Acrobat DC\Acrobat\AMT\AAM\P7\ZS\ro_RO\StringTable.xml.» Make sure you have access to this directory.

    My PC is Windows 7 and tries to install the free trial version Adobe Acrobat DC.

    The directory, the error message mentioned is read-only and created by the installer, I guess.

    What is the problem with that?

    Thank you

    Takeshi

    Error 1310: error writing to the file: C:Config.Msi... » | CS4 products:

    http://helpx.Adobe.com/Creative-Suite/KB/error-1310-error-writing-file.html

  • IO error writing block to file

    Hello

    Try to create a big clue, I got:

    ERROR on line 1:

    ORA-01114: IO error writing block to the file 2003 (block # 3506172)

    ORA-27085: Message not found; 27085  product = RDBMS. facility = ORA

    Additional information: 16384

    Additional information: 32768

    ORA-01114: IO error writing block to the file 2003 (block # 3506172)

    ORA-27085: Message not found; 27085  product = RDBMS. facility = ORA

    Additional information: 16384

    Additional information: 32768


    something strange is that I have no file 2003, how is that possible?


    Thank you

    Oracle 11.2.0.4


    If DB_FILES is set to 2000 in your database, file id 2001 is the first TEMPFILE.  file 2003 is the third TEMPFILE.

    Hemant K Collette

  • ORA-00221: error on write in the control file

    Experts,

    Recently, I have been unable to connect to the console em12c and after reviewing the State of who, I got to know that my instance of database crashed.

    Status of the WHO

    . / emctl status SGD

    Oracle Enterprise Manager Cloud control 12 c Release 2

    Copyright (c) 1996, 2012 Oracle Corporation.  All rights reserved.

    WebTier is in place

    Oracle Management Server does not work for the following reason:

    Unable to connect to the repository database. SGD will be automatically restarted once he identifies database and the listener are on the rise.

    I connected and checked the alert log which was below error e/s on the controlfile. I'm afraid to say that my control files are multiplexed not and I don't have a valid backup of controlfile.

    alert_log

    Errors in the /u01/app/oracle/diag/rdbms/trcoem/TRCOEM/trace/TRCOEM_lgwr_25655.trc file:

    ORA-00345: redo log write error block 39818 County 15

    ORA-00312: thread 1 1 online journal: ' / u01/app/oracle/oradata/TRCOEM/redo01.log'

    ORA-27072: IO file error

    Linux-x86_64 error: 5: input/output error

    Additional information: 4

    Additional information: 39818

    Additional information:-1

    Kill Jan 28 11:34:57 2014

    Errors in the /u01/app/oracle/diag/rdbms/trcoem/TRCOEM/trace/TRCOEM_ckpt_25659.trc file:

    ORA-00206: error in writing (block 3, block # 1) of the control file

    ORA-00202: control file: ' / u01/app/oracle/oradata/TRCOEM/control01.ctl'

    ORA-27072: IO file error

    Linux-x86_64 error: 5: input/output error

    Additional information: 4

    Additional information: 3

    Additional information:-1

    Errors in the /u01/app/oracle/diag/rdbms/trcoem/TRCOEM/trace/TRCOEM_ckpt_25659.trc file:

    ORA-00221: error about writing about a control file

    ORA-00206: error in writing (block 3, block # 1) of the control file

    ORA-00202: control file: ' / u01/app/oracle/oradata/TRCOEM/control01.ctl'

    ORA-27072: IO file error

    Linux-x86_64 error: 5: input/output error

    Additional information: 4

    Additional information: 3

    Additional information:-1

    Kill Jan 28 11:34:57 2014

    CKPT (ospid: 25659): put an end to litigation because of the error 221

    Please help me what should be the solution to fix this error. Is this just a mistake of e/s on the controlfile, or do I have a disk failure?

    var http://www.filedropper.com/messages

    Version of the OS: RHEL 5 (64-bit)

    Database Version: 11.2.0.3 (64-bit)

    Thank you

    Fran,

    Syslog does not display the IO error.

    I followed the steps below to solve the problem.

    1] stop the database

    [2] restore control01.dbf to the backup location.

    [3] mount the database
    [4] recover database until cancel

    [5] Alter database open resetlogs.

    Also, takes a full cold of RMAN backup of the database, the multiplex control files and recovery logs.

  • Error message - error 1310: error writing to the file: C:\Config.Msi\95cd7a.rbf

    I get the error message on the software updates: error 1310: error writing to the file: C:\Config.Msi\95cd7a.rbf.  Make sure you have access to this directory.  How can I fix it?  Thank you

    Hello

    ·          What version of the operating system is running on your computer?

    ·          What software you are trying to update?

    However, try the following steps:

    Unregister and re-register Windows Installer.

    a. Click Start and then click Run.

    (b) in the Open box, type msiexec /unreg and then press ENTER.

    c. Click Start and then click Run.

    (d) in the Open box, type msiexec/regserver, and then press ENTER.

  • How can I fix excerpt: error writing to the file and an unstable WiFi connection

    original title: How can I fix excerpt: error writing to the file

    Hello, I do not know anythingon fixing of my computer when I have problems. I looked at all the research sites and assistance, and none of them helped me with these problems and im getting ready to launch her aspire one mini laptop computer. im running xp and I bought it used and it has done this from day one. 2 weeks ago, that I got it. Please can you help me.

    How can I fix excerpt: error writing to the file C:docume~1\user\local~1\temp\nsvc.tmp\conduit-left.bmp

    and im having problems with my connection remaining on the port wireless what do I do, I can solve this problem too because I cannot even be in line for more then 5 minutes with the duty to stop and start over or repair the connection.

    For the first question, try to go to start | Programs | Accessories | System Tools | Disk Cleanup and that should clear of junk.  Then click Start | Run and type msconfig and disable the startup items, that you don't need, as many programs decide that they must run at startup and clutter the machine when they do not need to.  Also perform a defragmentation of the disk (under system tools also).  See if that helps with performance and other issues.

    Steve

  • I can't export the registry, I get an error writing the file., it is said, "there may be a disk error or system files" what can I do?

    I kept getting an error of my Norton internet security. When I call there suport tech, they made me do somethings, but nohong has worked. Then they wanted me to try to export the registry. When I wnt in regedit to export it.  He said that there was an error writing the file, there may be a disk or FFL system error.

    Assuming that there really may be a disk or file system error, try to perform a 'chkdsk' on your hard drive.  Use the /R if running chkdsk or check both options if you use the GUI version.

    "How to perform disk error in Windows XP check"
      <>5 http://support.Microsoft.com/kb/31526>

    Be forewarned that control the boot volume occurs at the next reboot after you set up, it runs before Windows starts perfectly, cannot be interrupted and can take more than a few hours to run according to the size of the disk and the amount of corruption, as appropriate.  Run it when you won't need your machine for awhile.

    HTH,
    JW

  • "error opening file for writing" C:docume~1\user\LOCALS~1\Temp\OpenCandy\OCSetupHlp.dll, as I am trying to install a program.

    I come with a message "error opening file for writing" C:docume~1\user\LOCALS~1\Temp\OpenCandy\OCSetupHlp.dll, as I am trying to install a program.

    Any ideas what is happening?

    Thank you

    Hi and thanks for your time.

    The program was an application to create your own music

    I don't have any problem installing other applications programs...

    The solution was a scan with malware bytes who discovered infected with the registry data.

    So I deleted it and after running a lot on the line scans, I deleted the program, I wanted to install.

    Everything is still better then...

  • Error writing to the file C:/Program Files/Quick Time/QTTask.exe when tried to install QuickTime

    Original title: install Quick Time and I Tunes

    Recently, I uninstalled ITunes and Quick Time. I cannot install Quick Time now. It says: "Error writing to file C:/Program Files/Quick Time/QTTask.exe. Make sure you have access to this directory. »

    I got the exact same error today by updating to Itunes.  I found the cause of my problem.  I had a firewall is installed and configured to block the QTTask.exe to talk to his server.  The firewall to put the file in a list of quarantine and blocked all access to the file.

    The Itunes update went through after that I removed it from the list of firewall quarantine.

  • Impossible to update iTunes, error: error writing to file C:\Config.Msi\4de64c3.rbf check that you have access to this directory

    Original title: I can't update iTunes for the life of me!

    I get "Error writing to file C:\Config.Msi\4de64c3.rbf check that you have access to this directory"

    I just bought an iPad and wanted to put pics on it from my PC. It must be through iTunes 10.6.3 or later version. I'm completely frustrated by this. I was not able to update my iTunes in months.

    Hello

    Did you download and save iTunes on the desktop > then right-click > select run as administrator to install?

    If you don't have anything done, see if this information helps you.

    "Not to install iTunes or QuickTime for Windows"

    http://support.Apple.com/kb/HT1926

    «Remove and reinstall iTunes, QuickTime, and other software components for Windows Vista or Windows 7»

    http://support.Apple.com/kb/HT1923

    If the advice already given does not, please contact Apple for assistance.

    "iTunes support-how to use iTunes.

    http://www.Apple.com/support/iTunes/

    "Contact iTunes Support.

    http://www.Apple.com/support/iTunes/contact/

    Or ask in the community Apple iTunes:

    https://discussions.Apple.com/community/iTunes

    See you soon.

  • "Error 1310" error writing to the file: c:\config.msi\f2046.rbf "while trying to install Adobe.

    Atitle: how to fix error 1310?

    We have vista and I get this error when I try to download adobe reader: 1310.error error writing to the file: c:\config.msi\f2046.rbf. How can I fix this error? Also had trouble to update old adobe, so I uninstalled, so now I have no adobe reader.

    Hello

    -Is the issue limited only when trying to install Adobe programs?
    -Did you do changes on the computer before this problem?
     
    Method 1: Run the FIXIT from Microsoft from the link below and check if the problem persists.
    Solve problems with programs that cannot be installed or uninstalled
     
    Method 2: I also suggest you to see the link below and check if that helps.
    Update errors. Acrobat, Reader | Windows
     
    Hope this information helps.

Maybe you are looking for