External Table for Variable Length EBCDIC file with RDWs

I am loading an ebcdic file where the record length is stored in the first 4 bytes. I am able to read the 4 bytes using the db's native character set, ie;
records variable 4
characterset WE8MSWIN1252
data is little endianBut I have to then convert each string column individually on the select, ie;
convert(my_col, 'WE8MSWIN1252', 'WE8EBCDIC37')If I change the character set to ebcdic;
records variable 4
characterset WE8EBCDIC37
data is little endianI get the following error reading the first 4 bytes;
ORA-29913: error in executing ODCIEXTTABLEFETCH callout
ORA-29400: data cartridge error
KUP-04019: illegal length found for VAR record in file ...We can not use the ftp conversion as the file contains packed decimals.
There are other options for converting the file but I am wondering if was able to get an external table to read a native ebcdic file without a pre-process step.

I am loading an ebcdic file where the record length is stored in the first 4 bytes. I am able to read the 4 bytes using the db's native character set, ie;
records variable 4
characterset WE8MSWIN1252
data is little endianBut I have to then convert each string column individually on the select, ie;
convert(my_col, 'WE8MSWIN1252', 'WE8EBCDIC37')If I change the character set to ebcdic;
records variable 4
characterset WE8EBCDIC37
data is little endianI get the following error reading the first 4 bytes;
ORA-29913: error in executing ODCIEXTTABLEFETCH callout
ORA-29400: data cartridge error
KUP-04019: illegal length found for VAR record in file ...We can not use the ftp conversion as the file contains packed decimals.
There are other options for converting the file but I am wondering if was able to get an external table to read a native ebcdic file without a pre-process step.

Similar Messages

  • Configuring unicode charcterset for fixed length control file

    Hi all,
    we are setting our control file to support any language characters while data loading, we all set with our database configuration , need to configure our control file which is fixed length, we are using CHARACTERSET UTF8 and and also tried with CHARACTERSET AL32UTF16, its working fine for variable length control file but for fixed length the foriegn charecers like latin-I,greek, danish charactrers are taking more byte and affecting to next position data. and our data file is in UTF8 (not in regular ANSI formatt).
    please advise
    here is our control file example:
    options (errors=999,SKIP=0)
    Load DATA
    CHARACTERSET UTF8
    append
    INTO TABLE TABLE_NAME
    TRAILING NULLCOLS
    field_name1 position(1:30) "trim(:fiels_name1)",
    field_name2 position(247:306) "trim(:field_name2)",
    )

    I think you should move thread to: {forum:id=732}.

  • Can we create single External Table for multiple files?

    HI,
    Can we create External table for multiple files? Could anyone please explain it.
    Thanks and regards
    Gowtham Sen.

    to merge 16 files having same structureWell, if files have the same structure, as per the reading of the example from the following documentation, you can create one external table for all your files :
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14231/tables.htm#i1007480
    Nicolas.

  • Create an external table based on an XML file

    Hi ,
    I am trying to create an external table based on XML file .Is it possible to do in OWB ?If Yes .Can someone please let me know the same .
    I was successfully able to create an external table based on a flat file which is of the extension *.txt.
    I was even able to load an XML file to a normal
    table .How do we do it to an external table?
    Thanks,
    Manjula

    Hello Manjula,
    Is it possible for you to spare sometime to list down the steps to be followed for creating External Table using flat file *.txt?
    I am trying to do it but not getting through it.
    Thanks in Advance,
    Ripesh

  • Table for variable

    Hi gurus,
    Where can I find the definition of the variable in my queries ... in which table are they stored ?
    Thanks in advance
    Aleksi

    Hi,
    RSZGLOBV is table for variables.
    For variable definition:
    1.Open any Query in Query designer
    2.in lafet panel,navigate to required characteristic
    3.Expand it(click on + sign)
    4.Expand 'characteristic value variables
    5.From context menu of variable-->Edit.
    It will show variable definition.
    or
    right click on a characteristic(if variable is being used in Query)>restrict>click on 'variables' tab>right click on required variable->change
    Thanks
    Message was edited by: Murali

  • I have Adobe Design and Web Premium CS6. If I buy adobe CC, can I easily open my for example indesign CS6 files with no complications?

    I have Adobe Design and Web Premium CS6. If I buy adobe CC, can I easily open my for example indesign CS6 files with no complications?

    I cannot imagine any problems in doing so, but you can keep your cs6 installation anyway.

  • SQL*Loader or external table for load a MSG (email) file

    Hi there!
    I'm looking for a way to load an email in a Oracle DB.
    I mean, not all the email's body in a column, but to "parse" it in a multi column/table fashion.
    Is it possible to do with a sql*loader script or an external table?
    I think it is not possible, and that I must switch to XML DB.
    Any idea?
    Thanks,
    Antonio

    Hello,
    Why don't you just load the entire MSG (email) as clob into one email_body column or whatever column name you want to use.
    To load data upto 32k, you can use varchar2(32656) but its not a good idea to load clob in that manner because it's very inconsistent as length can
    vary resulting in string literal too long. So you have 2 choices now, first you have to use either procedure or anonymous block to load clob data.
    First Method -- I loaded alert.log successfully and you can imagine how big this file can be (5MB in my test case)
    CREATE OR REPLACE DIRECTORY DIR AS '/mydirectory/logs';
    DECLARE
       clob_data   CLOB;
       clob_file   BFILE;
    BEGIN
       INSERT INTO t1clob
       VALUES (EMPTY_CLOB ())
       RETURNING clob_text INTO clob_data;
       clob_file   := BFILENAME ('DIR', 'wwalert_dss.log');
       DBMS_LOB.fileopen (clob_file);
       DBMS_LOB.loadfromfile (clob_data,
                              clob_file,
                              DBMS_LOB.getlength (clob_file)
       DBMS_LOB.fileclose (clob_file);
       COMMIT;
    END;Second Method: Use of Sqlldr
    Example of controlfile
    LOAD DATA
    INFILE alert.log "STR '|\n'"
    REPLACE INTO  table t1clob
       clob_text char(30000000)
    )Hope this helps

  • External table max record length check

    This question is regarding fixed length input file.
    I am checking to see if it is possible to add a check to verify the max length of a record when defining an external table.
    For example, if I am expecting a fixed length file with max record/row length of 100, is it possible to reject lines in the
    file that are more than 100 characters long?
    Thanks.

    What you can do is something like:
    DROP TABLE TBL_EXT
    CREATE TABLE TBL_EXT(
                         VAL       VARCHAR2(4),
                         INDICATOR VARCHAR2(1)
      ORGANIZATION EXTERNAL(
                            TYPE ORACLE_LOADER
                            DEFAULT DIRECTORY TEMP
                            ACCESS PARAMETERS (
                                               FIELDS TERMINATED BY ','
                                               OPTIONALLY ENCLOSED BY '"'
                                               MISSING FIELD VALUES ARE NULL
                                               REJECT ROWS WITH ALL NULL FIELDS
                                                VAL       POSITION(1:4),
                                                INDICATOR POSITION(5:5) CHAR NOTRIM
                            LOCATION ('tbl_ext.txt')
    SELECT  *
      FROM  TBL_EXT
      WHERE INDICATOR IS NULL
    {code}
    Now tbl_ext.txt:
    {code}
    X
    XX
    XXX
    XXXX
    XXXX    XXXXXX
    XXXX    <-- this line has trailing spaces
    XXX
    XX
    X
    {code}
    Now:
    {code}
    SQL> CREATE TABLE TBL_EXT(
      2                       VAL       VARCHAR2(4),
      3                       INDICATOR VARCHAR2(1)
      4                      )
      5    ORGANIZATION EXTERNAL(
      6                          TYPE ORACLE_LOADER
      7                          DEFAULT DIRECTORY TEMP
      8                          ACCESS PARAMETERS (
      9                                             FIELDS TERMINATED BY ','
    10                                             OPTIONALLY ENCLOSED BY '"'
    11                                             MISSING FIELD VALUES ARE NULL
    12                                             REJECT ROWS WITH ALL NULL FIELDS
    13                                             (
    14                                              VAL       POSITION(1:4),
    15                                              INDICATOR POSITION(5:5) CHAR NOTRIM
    16                                             )
    17                                            )
    18                          LOCATION ('tbl_ext.txt')
    19                         )
    20  /
    Table created.
    SQL> SELECT  *
      2    FROM  TBL_EXT
      3    WHERE INDICATOR IS NULL
      4  /
    VAL  I
    X
    XX
    XXX
    XXXX
    XXX
    XX
    X
    7 rows selected.
    SQL> As you can see, lines 'XXXX XXXXXX' and 'XXXX    ' were not selected since WHERE INDICATOR IS NULL for these rows results in FALSE.
    SY.

  • Work flow for syncing separate Audio files with Video files in FCP

    It may be too late for me to use this workflow that I want with my current project, but I need to figure out what it is anyway for future reference.
    Right now I'm editing a movie which is near completion. When we recorded the movie, the camera's deck recorded reference audio from the sound guy at 48k @ 16bit. This audio also went through an additional set of preamps which added a small amount of noise. So we don't want to use the reference audio because of it's low resolution and less clean audio. The sound guy recorded straight to his deck at 48k @ 24bit, besides the better resolution, his audio is noticeably better.
    The camera deck and 'clapper' (I think that's what you call it) were not connected or synced. So the video files and the soundsguy's audio files are slightly different lengths, but at least have a 'clap sound' to manually sync to. And I don't mean that the audio and video files won't play in sync with each other, I mean that the soundguy always started recording before the camera, so his audio files have slightly different start and stop times.
    Could I have synced the audio files with the video files before I started editing this project? If so, could it have been in the way that the soundguy's audio would be connected to my video files while editing? What would that procedure have been?
    My current workflow right now is I have my finished sequence, I change the bit rate to 24 in Sequence Settings, and start manually dragging the soundguy's files to the sequence for every little edited clip. This is going to take forever, there are 99 scenes in this movie. Anyway, at the end of the day these sequences are exported as .omf files and imported into Pro Tools for audio post production.
    I was not thinking to figure this out before I started editing the movie, this is unfortunate, a newb move in a decent production.
    Anyway, I don't know if there is a standard for this situation or if I just opened up a can of worms for many possible workflows. Please comment if you have experience in this area or please refer me to any reading material.
    Thanks for your time!
    -Monty

    The normal workflow (besides manually syncing up before editing!)
    is to have ' some ' way of auto syncing the clips.
    So you must have common timecode.
    With external audio, you can slave the cam's TC to the TC output of the BWF recorder.
    Then you can use BWF / QT merge (one of my apps) to sync them, or use Sync 'n Link.
    (another third party application)
    If it is not possible cause you're shooting with a cam without a TC input, you can record the TC output on one of the audio tracks of your cam, and use FCPauxTC reader to decode the beeps and translate that to QT TC, and again use the former tricks to sync them.
    It is difficult when you have never done it, but very easy once you get the hang of it, and it saves a huge amount of time to do it right from the start.
    Have a look at the FCP aux TC reader here:
    http://www.videotoolshed.com/?page=products&pID=26
    Sync 'n Link can be found here:
    http://www.assistedediting.com/Sync-N-Link/
    /// disclaimer, i AM the owner of Videotoolshed, and i WILL (at least try) to make money on it. ///
    /// i do NOT have any relation with AssistedEditing.com, besides friendship with the owner. ///

  • High Score Table: Writing a Simple Text File with Flash and PHP

    I am having a problem getting Flash to work with PHP as I need Flash to read and write to a text file on a server to store simple name/score data for a games hi score table. I can read from the text file into Flash easily enough but also need to write to the file when a new high score is reached, so I need to use PHP to do that. I can send the data from flash to the php file via POST but so far it is not working. The PHP file is confirmed as working as I added an echo to the file which displayed a message so I  could check that the server was running PHP - the files were also uploaded to a remote server so I  could test them properly. Flash code is as follows:
    //php filewriter
    var myLV = new LoadVars();
    function sendData() {
    //sets up variable 'hsdata' to send to php
    myLV.hsdata = myText;
    myLV.send("hiscores.php");
    I believe this sends the variable 'myText' to the php file as a variable called 'hsdata' which I want the php file to write into a text file. The mytext variable is just a long string that has all the scores and names in the hiscore. OK, XML would be better way of doing this but for speed I just want to get basic functionality working, so storing a simple text sting is adequate for now. The PHP code that reads the Flash 'hsdata' variable and writes it to the text file 'scores.txt' follows:
    <?php
    //assigns to variable the data POSTed from flash
    $flashdata = $_POST["hsdata"];
    //file handler opens file and erases all contents with w arg
    $fh = fopen("scores.txt","w");
    //adds data to file
    fwrite ($fh,$flashdata);
    //closes file
    fclose ($fh);
    echo 'php file is working';
    ?>
    Any help with this would be greatly appreciated - once I can get php to write simple text files I should be ok. Thanks.

    Thanks for your help.
    I have got Flash working to a certain extent with PHP using loadVars but have been unable to get flash to receive a variable declared in PHP. Here's my Flash code:
    var outLV = new LoadVars();
    var inLV = new LoadVars();
    function sendData() {
    outLV.hsdata = "Hello from Flash";
    outLV.sendAndLoad("http://www.mysite.com/hiscores/test23.php",inLV,"post");
    inLV.onLoad = function(success) {
    if (success) {
      //sets dynamic text box to show variable sent from php
      statusTxt.text = phpmess;
    } else {
      statusTxt.text = "No Data Received";
    This works ok and the inLV.onLoad function reports that it is receiving data but does not display the variable received from PHP. The PHP file is like this:
    <?php
    $mytxt =$_POST['hsdata'];
    $myfile = "test23.txt";
    $fh = fopen($myfile,'w');
    //adds data to file
    fwrite($fh, $mytxt);
    //closes file
    fclose ($fh);
    $mess = "hello there from php";
    echo ("&phpmess=$mess&");
    ?>
    The PHP file is correctly receiving the hsdata from flash and writing it to a text file, but there seems to be a problem with the final part of the code which is intended to send a variable called 'phpmess' back to Flash, this is the string "hello there from php". How do I set up Flash and PHP so that PHP can send a variable back to Flash using echo? Really have tried everything but am totally baffled. Online tutorials have given numerous different syntax configurations for how the PHP file should be written which has really confused me - any help would be greatly appreciated.

  • Error in creating an external table referring to a XML file

    I've got an XML file and I've tried to create an external table referring to it in this way:
    CREATE TABLE mytable
        XML_DATA_COLUMN XMLType
      ORGANIZATION EXTERNAL
        TYPE ORACLE_LOADER DEFAULT DIRECTORY TEST_DIR
        ACCESS PARAMETERS ( records delimited BY newline
        (XML_DATA_COLUMN LOB) ) LOCATION ( 'myfile.xml' )
    where TEST_DIR is the directory where myfile.xml is stored,
    but I get this message:
    Error at Command Line:3 Column:4
    Error report:
    SQL Error: ORA-30656: column type not supported on external organized table
    30656.0000 -  "column type not supported on external organized table"
    *Cause:    Attempt to create an external organized table with a column
               of type LONG, LOB, BFILE, ADT, or VARRAY.
    *Action:   These column types are not supported, change the DDL.
    I want to have in the XML_DATA_COLUMN the content of myfile.xml so as to handle it by using extract and extractvalue functions.
    My oracle version is 10gR2 Express Edition
    Thanks!

    The examples in the following thread include an insert, but you could also use the select statement alone without the insert.
    http://www.orafaq.com/forum/mv/msg/172162/511897/0/#msg_511897

  • Formatting external drive for storage/backup/video files

    Hi,
    I just purchased a 500mb My Book Pro external drive for use with my imac duo which runs Windows XP via bootcamp. This computer is shared by three family with very different skills and needs. My dilemma. I want to format the drive so that the imac can be backed up easily three users. It is formated Fat32 and is supplied with Restrospect Express 7.5 backup software. It would be nice to backup the modestly used windows sector, but that's a secondary consideration. My problem is that one user has a lot of larger than 4 gb video files which are too large the Fat 32 format. My notion is to segment the backup drive so that I leave 300 mb in fat 32 to facilitate backup with supplied software, and segment a second 200 gb drive using mac os extended so that the user can manually move her video files for storage/backup on the backup drive. Is there a simpler solution? For example, if I formatted the entire 500gb as mac os extended, could I still run the retrospect backup software? If not, is there a reasonably priced alternative software? And finally, with either Fat32 or Mac OS extended, can I move files from the Windows platform? Would I be better off just biting the bullet and telling my daughter to make her own arrangements to compress and backup her video files or get her own hard drive, thus leaving the backup drive to the simple factory supplied software solution?
    G-4 and iMac core duo   Mac OS X (10.4.9)   use emacs and imacs at work location

    Hi,
    I just purchased a 500mb My Book Pro external drive
    for use with my imac duo which runs Windows XP via
    bootcamp. This computer is shared by three family
    with very different skills and needs. My dilemma. I
    want to format the drive so that the imac can be
    backed up easily three users. It is formated Fat32
    and is supplied with Restrospect Express 7.5 backup
    software. It would be nice to backup the modestly
    used windows sector, but that's a secondary
    consideration. My problem is that one user has a lot
    of larger than 4 gb video files which are too large
    the Fat 32 format. My notion is to segment the backup
    drive so that I leave 300 mb in fat 32 to facilitate
    backup with supplied software, and segment a second
    200 gb drive using mac os extended so that the user
    can manually move her video files for storage/backup
    on the backup drive. Is there a simpler solution? For
    example, if I formatted the entire 500gb as mac os
    extended, could I still run the retrospect backup
    software? If not, is there a reasonably priced
    alternative software? And finally, with either Fat32
    or Mac OS extended, can I move files from the Windows
    platform? Would I be better off just biting the
    bullet and telling my daughter to make her own
    arrangements to compress and backup her video files
    or get her own hard drive, thus leaving the backup
    drive to the simple factory supplied software
    solution?
    G-4 and iMac
    core duo   Mac OS X (10.4.9)   use emacs
    and imacs at work location
    Hello,
    You're indeed in a pickle. If you use Bootcamp and want the HD accessible via the Mac and WinXP, then you don't want to format it as Mac HFS because WInXP wouldn't be able to access it. If you go FAT32 then both WInXP and Mac OS can access it, but you face the dilemma of the 4GB threshold.
    If you format as NTFS, then you eliminate the 4GB threshold but then Mac OS cannot access it.
    I have a similar dilemma, which is why i use Parallels more than Bootcamp. I have 2 external FW HD's (160GB/250GB), both formatted to Mac HFS. The 160GB i have partitioned as 50GB and 100GB. I have a bootable backup of Mac OS residing on the 100GB partition (yay to SuperDuper!) and some other stuff on the remaining 50GB. The 250GB is exclusive for movies (cough..cough..bittorrent) and for streaming via Orb 2.0 to my Treo. I have WinXP running in Parallels, and Vista Ultimate via Bootcamp. In Parallels, i can access my external HD's via Parallel's Shared Folders but in Vista (Bootcamp) since the HD's are in a non-Windows recognised formatting, they're not accessible (which is a bummer, as i'm loving Win media center).
    What you can do is partition the HD the way you're thinking and format (one part Mac HFS and the other NTFS), but my best recommendation is that with the falling prices of HD's nowadays, why not just get a seperate HD do what you want with it. I spied a WD MyBook 500GB USB HD at CompUSA for $129.99 (no mail-in rebate nonsense) and similar good prices at Bestbuy and Newegg.com.
    iMac 17" 2GHZ C2Duo 2GB RAM 160GB HD   Mac OS X (10.4.9)  

  • Steps for the IDOC TO FILE with ACKNOWLEDGMENT

    Hello experts,
       Kindly give me the step by step procedure for the following scenario.
    My scenario is an IDOC( any idoc) for R/3 is coming to XI and send to FTP as XML file with out any modifications, and ftp have to send an response (acknowledgment) to XI and that to R/3 as an IDOC.
    I have seen snd but i not able to find the exact steps for the above requirement. Probably i may failed to find it.
    So kindly give me the steps or any blogs links explaining the above scenario.
    Thanks inadvance.
    Kiran.

    Hi
    Pls check the following docs.
    ALEAUD not coming to SAP from XI & u0093Acknowledgment not possible" in idx5
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/903a0abc-e56e-2910-51a8-9dc616df56eb
    if you are looking to receive the File Acknowledgements..pls check the below link
    /people/michal.krawczyk2/blog/2006/06/22/xi-playing-with-the-file-adapters-acknowledgments
    Regards
    Abhijit

  • External table, can't see the file

    Hi
    --This is what I do
    CREATE OR REPLACE DIRECTORY data_dir AS 'C:\TEMP\'
    GRANT READ, WRITE ON DIRECTORY data_dir TO my_user;
    --I have my actual GAS.TXT file in the folder, the file looks like this
    0003450305NG-5E6, TUSCANY VILLAS,26 FENTON STREET ROTORUA 3201, ROTORUA
    002343043NG-9DE, LORALIS LIMITED,18 HARINGTON STREET TAURANGA 3001, TAURANGA
    ...etc...
    --I do a select
    SELECT * FROM all_directories
    --and it shows
    SYS DATA_DIR C:\TEMP\
    --Then I create my ext table like this
    CREATE TABLE external_table(
    ICP CHAR(10) ,
    NAME CHAR(20),
    ADDRESS CHAR(30),
    CITY CHAR(20)
    ORGANIZATION EXTERNAL
    ( TYPE oracle_loader
    DEFAULT DIRECTORY DATA_DIR
    ACCESS parameters
    (RECORDS DELIMITED BY NEWLINE
    FIELDS TERMINATED BY ','
    OPTIONALLY ENCLOSED BY '"' AND '"'
    (ICP CHAR(40),
    NAME CHAR(100),
    ADDRESS CHAR(100),
    CITY CHAR(100)
    location (DATA_DIR:'GAS.TXT')
    --The table is created
    --then when I try and do a select I end up with an error message
    SELECT * FROM EXTERNAL_TABLE
    ORA-29913 blah, blah
    ORA-29400 blah blah
    KUP-04040 file can't be found
    ORA-06512 SYS.ORACL_LOADER
    ORA-06512 blah blah
    So, I reckon of some reason it can't see the file, but I do not know why?
    The file sits on the Server in the C:\TEMP folder and the error log ends up in the C:\TEMP folder
    I have tried several variations on this, but still same error. However, then I also tried these exact same scripts on another Oracle box, and it worked fine. So something with the machine/box I am using is not alright.
    Would appreciate your thoguhts.
    Thanks
    Kari

    As suggested, change your table definition to match the available data, and post an example like below with complete error message (not the edited version that is hard to understand).
    SQL> $ type c:\temp\gas.txt
    0003450305NG-5E6, TUSCANY VILLAS,26 FENTON STREET ROTORUA 3201, ROTORUA
    002343043NG-9DE, LORALIS LIMITED,18 HARINGTON STREET TAURANGA 3001, TAURANGA
    SQL> CREATE OR REPLACE DIRECTORY data_dir AS 'C:\TEMP\'
      2  /
    Directory created.
    SQL> CREATE TABLE external_table(
      2  ICP CHAR(16) ,
      3  NAME CHAR(20),
      4  ADDRESS CHAR(35),
      5  CITY CHAR(20)
      6  )
      7  ORGANIZATION EXTERNAL
      8  ( TYPE oracle_loader
      9  DEFAULT DIRECTORY DATA_DIR
    10  ACCESS parameters
    11  (RECORDS DELIMITED BY NEWLINE
    12  FIELDS TERMINATED BY ','
    13  OPTIONALLY ENCLOSED BY '"' AND '"'
    14  (ICP CHAR(40),
    15  NAME CHAR(100),
    16  ADDRESS CHAR(100),
    17  CITY CHAR(100)
    18  )
    19  )
    20  location (DATA_DIR:'GAS.TXT')
    21  )
    22  reject limit unlimited
    23  /
    Table created.
    SQL> select * from external_table ;
    ICP              NAME                 ADDRESS
    CITY
    0003450305NG-5E6 TUSCANY VILLAS       26 FENTON STREET ROTORUA 3201
    ROTORUA
    002343043NG-9DE  LORALIS LIMITED      18 HARINGTON STREET TAURANGA 3001
    TAURANGA
    2 rows selected.
    SQL>Message was edited by:
    Kamal Kishore

  • External Drives for Mac Experiencing Data Loss with Maverick OS -- UPDATED FOR NOVEMBER 6, 2013

    --- Updated November 6, 2013 ---
    On October 30th, 2013 Western Digital informed registered customers of affected products via E-mail regarding reports of Western Digital and other external HDD products experiencing data loss when updating to OS X Mavericks (10.9).  Our investigation to date has found that for a small percentage of customers that have the WD Drive Manager, WD Raid Manager and/or WD SmartWare software applications installed on their Mac, there can be cases of a repartition and reformat of their Direct Attached Storage (DAS) devices without customer acknowledgement which can result in data loss.  
    WD has been tracking this issue closely through our WD Forum and through our Technical Support hotline and the occurrence rate of this event has been very low.  A specific set of conditions and timing sequences between the OS and the WD software utilities has to occur to cause this issue.  Should this event occur, the data on the product can likely be recovered with a third party software utility if the customer stops using the device immediately after the OS X Mavericks (10.9) upgrade.  WD will be issuing updated versions of these software applications that resolve this issue.
    WD strongly urges our customers to uninstall these software applications before updating to OS X Mavericks (10.9), or delay upgrading until we provide an update to the applications.  If you have already upgraded to Mavericks,  WD recommends that you remove these applications and restart your computer.  If you have already upgraded to Mavericks and are experiencing difficulty in accessing your external hard drive,  please do not save anything to the drive, disconnect the drive from your computer, and contact Western Digital Customer Service at http://support.wdc.com/contact/.
    --- Updated November 5, 2013 ---
    There are reports of Western Digital and other external HDD products experiencing data loss when updating to Apple's OS X Mavericks (10.9).  Western Digital is urgently investigating these reports and the possible connection to the WD Drive Manager, WD Raid Manager and WD SmartWare software applications. 
    Until the issue is understood and the cause identified, WD strongly urges our customers to uninstall these software applications on their systems before updating to OS X Mavericks (10.9), or delay upgrading.  If you have already upgraded to Mavericks, WD recommends that you remove these applications and restart your computer. WD has removed these software applications from our web site solely as a precaution as we investigate this issue.
    If you have already upgraded to Mavericks and are experiencing difficulty in accessing your external hard drive, please do not save anything to the drive, disconnect the drive from your computer, and contact Western Digital Customer Service at http://support.wdc.com/country/ for further assistance.
    You can now download the WD Software Uninstaller.  This utility will remove Mac WD SmartWare and WD Drive Manager software.  You can find the uninstaller under any of the Mac Drive Downloads sections such as the My Book Studio below.
    http://support.wdc.com/product/download.asp?groupid=124&sid=214&lang=en

    I agree. After installing Mavericks I was troubleshooting and reinstalling drivers for days. Many Apps did not work anymore, although the updates slowly arrive. As total divergence of the old Apple philosophy, I had to use endless library cleaning terminal commands to get a new Canon network printer running again. Canon provided the procedures after updating from OS X10.6 to 10.7 already. Now it seems, that the first time I used the Super Drive (CD-DVD Drive) trying to burn an audio CD with baffling error messages (Drive already used..). After this, the RAID1 status of the two MyBook archives changed to JBOD. The changes of OS X10.8 to 10.9 I find unnecessary (iBooks could be an App, Maps we have already the same on other channels). Some changes are even a step back (calendar graphics), the so much more user friendly Office suite iWorks is free, but degraded an of limited use!MadOverlord wrote:
    I have had multiple cases of data loss on WD drives since upgrading to Mavericks, and I do not use any WD software. I was using a 4-bay PROBOX USB3 enclosure with 4 independant drives, each with 1 volume, no RAID. I have managed to copy large files off the WD drive onto my MBP internal drive using the finder, and then find that they are not identical. This problem is intermittent, does not generate any Finder errors, and the drives all show 100% health via SMART. The configuration was rock-solid before Mavericks, and has trashed the directories of 4 drives since I upgraded last week. I am attempting to find a solid replication case for this, but it is difficult. I have not been able to replicate the issue on another 2-bay USB2 dock that I have (different manufacturer). One thing is clear: only one thing changed -- I upgraded to Mavericks. 

Maybe you are looking for

  • HOW TO FIND THE REQUIRED DELIVERY DATE IN VA02

    hi HOW TO FIND THE REQUIRED DELIVERY DATE IN VA02. i want to display this field in my report. what is the fieldname and in which table it is ?

  • Integration Process not continuing after Synchronous BAPI call

    I have an integration process that splits up a batch file of purchase orders into single purchase order messages. This allows me to use the "ForEach" block to call the synchronous BAPI_PO_CREATE1. I have managed to get the process to call the BAPI an

  • Screen shots

    Hi , We are trying to implement EP 7.0 based on NW 2004 s . Does anybody have a document with some screen shots ( step by step ) out their own experience . I really appreciate this help Thanks J

  • Why it is not overriding

    Hi, I m puzzled by the output of : public class MyClass2 { private void f() { System.out.println("private f()"); public static void main(String[] args) { MyClass2 po = new Derived(); po.f(); class Derived extends MyClass2 { public void f() { System.o

  • Help! please! digital-in not working in vista with xfi ga

    I just bought a digital I/O module for my Xfi Gamer card. I was using the youppax driver set. I am not getting any sound from the Digital in on the card. Also the digital I/O selection is greyed out in my control panel. Does anyone know how to get th