ORA-29913 for external table on Windows 7

Hello

Please help with the following problem.

I installed Oracle 11 g on Windows 7 Pro workstation and have created an external table.

I'm getting an ORA-29913 when I select.

What I did is given below.

create the directory imp_files as 'C:\app\user\admin\orcl\dpdump\'-'C:\orcl_work '.
;

drop table people
;
create table people)
first name varchar2 (250).
VARCHAR2 (250) last_name,.
hire_date date,
number of salary
)
(external) Organization
type oracle_loader
the default directory data_pump_dir
(settings) access
records delimited by newline
BadFile data_pump_dir: 'pers1%a_%p.bad' /*'pers.bad'*/
data_pump_dir log file: "pers1%a_%p.log" /*'pers.log'*/
fields termintated by ' |'
missing field values are null
(first_name, last_name, hire_date 'dd.mm.yyyy' format mask, salary)
)
location ("pers_table1.txt")
)
reject limit unlimited
;

Hello

you completed wrongly spelt...

Try to fix that and try again.

See you soon,.

rich

Tags: Database

Similar Questions

  • How can we not consider a field missing for external tables

    My to Oracle. East of 10 gr 2
    I created an external table using the following syntax:

    create the table ext_table
    (a number (5),)
    b number (5),
    c varchar2 (1000))
    external organization
    (type ORACLE_LOADER
    FLAISTD default directory
    access parameters (records delimited by newline
    fields ended by "#".
    (a char (5),
    b tank (5),
    c char (1000)))
    location ("file.csv")
    );

    My problem is the following. I have a file. XLS I save as a file. CSV sometimes any line of the file. XLS for young woman of the last column and so in my folder. CSV, I can have something like this:

    123 123 # #xxx
    456 #456

    and when I try to execute a select * from ext_table, I get an error because he expects a missing field.
    How can I do? 'Say' in the table create above something alert who could miss the last field?

    Thanks in advance!

    Solomon Yakobson says:
    Use TRAILING NULLCOLS:

    Oops, this isn't the external table of SQL * Loader. So it should be MISSING FIELD VALUES ARE NULL:

    create table ext_table
    (a number(5),
    b number(5),
    c varchar2(1000))
    organization external
    (type ORACLE_LOADER
    default directory TEMP
    access parameters (records delimited by newline
    fields terminated by "#" missing field values are null
    (a char(5),
    b char(5),
    c char(1000)))
    location ('file.csv')
    );
    
    Table created.
    
    SQL> select  *
      2    from  ext_table
      3  /
    
             A          B C
    ---------- ---------- ----------
           123        123 xxx
           456        456
    
    SQL>
    

    SY.

  • In the external table files forming themselves!

    Hi all

    I am facing a weird situation.

    Few days back, DB has been improved to 11g 10g R2 and we are facing the situation of the training of logfiles, throw files have joined with external tables in the directory of the OS!

    Without job is calling them and the only procedure in which these paintings have been used in the SELECT statement, are not running, even while these files form themselves and fill space in the BONE.

    Here is the version information:

    Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production

    PL/SQL Release 11.2.0.3.0 - Production

    "CORE 11.2.0.3.0 Production."

    AMT for IBM/AIX RISC System/6000: Version 11.2.0.3.0 - Production

    NLSRTL Version 11.2.0.3.0 - Production

    Please help in this regard.

    Thank you.

    Hi all

    Problem has been identified.

    11 g, dbms_stats.gather_stats_job runs all day until 22:00 and after every 4 hours on weekends.

    He also tried gathering statistics for external tables given through the GATHER_TABLE_STATS procedure.

    In the process, he joint/written in the log files.

    Now, I think of locking statistics from this table, so that no stats will be gathered for what is just an EXTERNAL table which is used/populated only once a month.

    Suggestions or comments?

    Thank you.

  • ORA-29913 of the external table error: error in executing ODCIEXTTABLEOPEN legend

    Hello

    I am getting error for an external table, after trying to load data from external table to a pipe delimited file.
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file BIPO_04_28_2010_18_53_11.txt in AB501 not found
    29913. 00000 -  "error in executing %s callout"
    *Cause:    The execution of the specified callout caused an error.
    *Action:   Examine the error messages take appropriate action.
    Here's the code for creating table
    CREATE TABLE ' || whr_ext_tab || '
        (
            partner_product_code VARCHAR2(30), -- Partner’s product code or part number
            product_description VARCHAR2(60), -- Product description
            po_comments VARCHAR2(254), -- Purchase Order Comments
            wr_member_number VARCHAR2(60), -- Rewards Member Number
        )
        ORGANIZATION EXTERNAL
          (  TYPE ORACLE_LOADER
             DEFAULT DIRECTORY "<dir>"
             ACCESS PARAMETERS
               ( RECORDS DELIMITED BY NEWLINE
                        BADFILE ''BIPO.bad''
                        LOGFILE ''BIPO.log''
                        FIELDS TERMINATED BY ''|''
                        MISSING FIELD VALUES ARE NULL
                 )
             LOCATION ("<dir>":''<fn>'')
          )
        REJECT LIMIT UNLIMITED
        NOPARALLEL
        NOMONITORING
      ';
    Thank you
    Sandy

    Have you seen this in the error message:

    KUP-04040: file BIPO_04_28_2010_18_53_11.txt in AB501 not found
    

    What is the file exists in the directory? You have permissions to read from the object Directory logical Oracle? You have OS permissions to read from this directory?

  • External table: ORA-029913 only through connection allias TNS

    Hello world

    I have a problem on an Oracle 11.2.0.3 database. They have an external table MYTABLE that points to an Oracle MYDIR directory. This directory is a text file MyFile.txt, read by the external table.

    If I connect to the database using "sqlplus user/pass" directly from the DB server, the statement 'select count (*) from' myTable works very well.

    If I connect using a LMO allias "sqlplus user/pass@DB", the statement is wrong:

    SQL> select count (*) from MYTABLE;
    select count (*) from MYTABLE
    *
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file myfile.txt in MYDIR not found
    
    

    The user application oracle has READ and write on the Oracle MYDIR directory.

    The OS 'oracle' user permissions to write to the directory of the OS.

    The problem occurs with the application user, but also with sys and system.

    You have an idea? What could make the statement works in direct relation and fail to remote access?

    Thanks for your help.

    Michael

    I finally found the solution! The oracle user has been recently added to the group. The database was relaunched after this change, but the listener has only been reloaded. All processes spawned by the receiver have been opened with privileges evil and that's why my local connections can get access to the file system and not open remote session.

    THW following note has helped me find the solution: ORA-29283 "Operation file not valid" with OS group and Oracle user is a member (Doc ID 832424.1).

    The note is only on the basis of data Oracle itself, but I tried to restart the receiver and it solved my problem.

    Thanks for your help

  • error when reading flat file of external table... "ORA-01849: time must be between 1 and 12"

    My question is - is it possible for me to fix this error at the level of external table definition? Please advice

    Here is the data file I am trying to download...

    KSEA | 08-10 - 2015-17.00.00 | 83.000000 | 32.000000 | 5.800000

    KBFI | 2015-08-06 - 15.00.00 | 78.000000 | 35.000000 | 0.000000

    KSEA | 08-10 - 2015-11.00.00 | 73.000000 | 55.000000 | 5.800000

    KSEA | 08-08 - 2015-05.00.00 | 61.000000 | 90.000000 | 5.800000

    KBFI | 2015-08-06 - 16.00.00 | 78.000000 | 36.000000 | 5.800000

    KSEA | 2015-08-07 - 18.00.00 | 82.000000 | 31.000000 | 10.400000

    KSEA | 08-10 - 2015-00.00.00 | 65.000000 | 61.000000 | 4.600000

    KBFI | 08-08 - 2015-07.00.00 | 63.000000 | 84.000000 | 4.600000

    KSEA | 08-10 - 2015-15.00.00 | 81.000000 | 34.000000 | 8.100000

    This is the external table script

    CREATE TABLE MWATCH. MWATCH. WEATHER_EXT ".

    (

    LOCATION_SAN VARCHAR2 (120 BYTE),

    DATE OF WEATHER_DATETIME,

    NUMBER (16) TEMP.

    NUMBER (16) OF MOISTURE,

    WIND_SPEED NUMBER (16)

    )

    EXTERNAL ORGANIZATION

    (TYPE ORACLE_LOADER

    THE DEFAULT DIRECTORY METERWATCH

    ACCESS SETTINGS

    (records delimited by newline

    BadFile "METERWATCH": "weather_bad" logfile 'METERWATCH': 'weather_log '.

    fields ended by ' |' missing field values are null

    (location_san, WEATHER_DATETIME char date_format DATE mask "YYYY-mm-dd - hh.mi.ss", TEMPERATURE, MOISTURE, wind_speed)

    )

    LOCATION (METERWATCH: 'weather.dat')

    )

    REJECT LIMIT UNLIMITED

    PARALLEL (DEGREE 5 1 INSTANCES)

    NOMONITORING;

    Here is the error in the weather_bad which is generated files...

    column WEATHER_DATETIME of 55 error processing in the 1st row to the /export/home/camsdocd/meterwatch/weather.dat data file
    ORA - 01849ther_log.log 55 56 error processing column WEATHER_DATETIME in the row 1 for the /export/home/camsdocd/meterwatch/weather.dat data file
    5756 ORA - 01849ther_log.log: time must be between 1 and 12
    58column WEATHER_DATETIME 57 error during treatment number 2 for the /export/home/camsdocd/meterwatch/weather.dat data file
    59ORA-58 01849: time must be between 1 and 12
    60column WEATHER_DATETIME of 59 error processing 5th for the /export/home/camsdocd/meterwatch/weather.dat data file
    61ORA-60 01849: time must be between 1 and 12
    62column WEATHER_DATETIME of 61 error treatment in line 6 to the /export/home/camsdocd/meterwatch/weather.dat data file
    63ORA-62 01849: time must be between 1 and 12
    64column WEATHER_DATETIME of 63 error treatment in row 7 for datafile /export/home/camsdocd/meterwatch/weather.dat
    65ORA-64 01849: time must be between 1 and 12
    66column WEATHER_DATETIME of 65 error treatment 9 for the /export/home/camsdocd/meterwatch/weather.dat data file online
    67: time must be between 1 and 12

    My question is - is it possible for me to fix this error at the level of external table definition? Please advice

    Yes it is possible.  Let's not your date mask.  You're masking for 12-hour format when your data is in 24-hour format.  Change the mask of your date to be "YYYY-mm-dd-hh24. MI.ss ".  Notice the change in "BOLD".

  • Bought the new computer windows 10, itunes has changed location of support for external hard drive. The music does not appear in itunes.

    BOUGHT NEW COMPUTER WINDOWS 10, CHANGED ITUNES MEDIA LOCATION FOR EXTERNAL HARD DRIVE. THE MUSIC DOES NOT APPEAR ON ITUNES.

    Changing the iTunes media folder location setting affects only where new additions to your library will be stored.  To use a disk external drive to store your library complete (and assuming that you have access to the original data of the library on an old computer) you must copy the iTunes folder, by default in C:\Users\username\Music, on the external drive - structure library and its records should be like this:

    The hold button SHIFT DOWN when you start iTunes and when you see this message:

    Click choose a library... then find and select the iTunes Library.itl in iTunes on your external drive folder.

    For more information, see user turingtest2 on make a library of portable split.  You must also acquire a 2nd external drive and allows create and maintain a backup your library.

  • Is there a driver for external hard drive WDME1600 compatible with windows vista?

    Original title: My Passport Essential WDME 1600

    Is there a driver for external hard drive WDME1600 compatible with windows vista?

    Hello

    Please see this link.
    http://www.microsoft.com/Windows/compatibility/windows-vista/Details.aspx?type=Hardware&p=My%20Passport%20Essential%20WDME1600&v=Western%20Digital&uid=WDME1600&pf=4&pi=7&c=Storage%20Devices&sc=Hard%20Drives%2C%20External&os=64-bit

    It says here that if you have a 32-bit Vista system, then a free download is necessary for her. Click on the link to the breast and download the necessary files. I hope this will get this drive works for you.

    I hope this helps.

  • Changes in file name for the external Table

    Hello
    How can I call the dos2unix for Oracle utility?

    I am building an external table in a procedure where every time it is called the file names are different.
    any ideas?

    Thank you

    >
    You cannot call/run utility OS of Oracle with PL/SQL
    >
    Not TRUE! You can!

    DBMS_SCHEDULAR

    Concerning
    Biju

  • External table - date for 20120802032917000 mask

    Hello

    I have a flat file (separator: tab), which has value of date as 20120802032917000 and I try to use the external table but not return all values below. What I am doing wrong.

    create the table xtern_bond_issue_data
    (
    issuelastUpdatedTime timestamp
    )
    external organization
    (
    the default directory xtern_bond_issue_data_dir
    access settings
    (
    records delimited by newline
    BadFile xtern_bond_issue_data_dir: 'xtern_bond_issue_data.bad'
    xtern_bond_issue_data_dir log file: 'xtern_bond_issue_data.log'
    jump 1
    fields terminated by '\t '.
    MISSING FIELD VALUES ARE NULL
    (
    issuelastUpdatedTime TANK (17) DATE_FORMAT TIMESTAMP MASK "YYYYMMDDHHMISSSSS".
    )
    )
    location ("AMER_20120702_BOND_ISSUE.dat")
    )
    REJECT LIMIT UNLIMITED
    NOPARALLEL
    ;

    Thank you
    Kalai

    Hi, Kalai,

    951307 wrote:
    ... issuelastUpdatedTime TANK (17) DATE_FORMAT TIMESTAMP MASK "YYYYMMDDHHMISSSSS".

    I think the desired format is

    YYYYMMDDHH24MISSFF
    

    JACKY is the number of seconds since the start of the day : 17000 seconds after the beginning of a day is 04:43:20. You probably wouldn't SSSSS if you also use HH (or HH24) or MI.
    If 17000 means 17,000 seconds since the start of the minute , then use SSFF. FF is for the fractional part of the second, no matter how many numbers that is.

  • update of a field for a number of forms of an external table

    Good day all.

    This one I could not find in the help section.

    I designed a number of forms that use the same "rate of pay" (there are 4 categories) for the calculation. I was told to expect that it will take more than a few forms and these new forms will also use the same "rate of pay".

    Currently I use 'switch' to insert the "rate of pay" when the user selects a category from a dropdown list.

    Is there a way I can update all forms of external 'table' instead of having to update each form individually?

    Thank you all

    Chomp

    Hello

    If the form is compatible with Acrobat Reader, which will then cut the data connect.

    You should take a look at the blog of John Brinkman: http://blogs.adobe.com/formfeed/2010/07/shared_data_in_packages_part_2.html. Two pieces.

    There is also an example of communication inter-formulaire here, but he can be too clumsy: http://assure.ly/qQivbm.

    Good luck

    Niall

  • External table for the file delimmited by commas

    Im trying to create a table of externla for the comma-delimited file
    but it also has a scenario where the fields can have a comma between "" e.g.

    example of record
    1,one,first
    2,two,second
    3,three,third
    4,four,"4,fourth"
    Example of table
    create table ext_table_csv (
      i   Number,
      n   Varchar2(20),
      m   Varchar2(20)
    )
    organization external (
      type              oracle_loader
      default directory ext_dir
      access parameters (
        records delimited  by newline
        fields  terminated by ','
        missing field values are null
      )
      location ('file.csv')
    )
    reject limit unlimited;
    So when I question this record 4 table of Externla will be read as

    M/2
    i           n                      m
    4         four     "4
    {code}
    Above Ext table is just an example, Im adding bad file and log file in real table.
    
    Please help me if there is a way this can be resolved with external table.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

    Change the definition of:

    FIELDS TERMINATED BY ', '.

    TO:

    FIELDS ENDED BY ',' POSSIBLY FRAMED BY "" "

  • External table ORA-30657: operation not supported on external organized tab

    Hi all
    I'm trying to create a table outside and fill it with data from my DB. Without the AS - Section all right. The external table will be created, but I do not get the data into it. Is there a possible way to write data defined in a flat file via external table or some other mechanism?

    Carsten cordially

    The full statement:

    CREATE or REPLACE DIRECTORY admin_dat_dir
    LIKE 'E:\CDDTEST ';
    CREATE or REPLACE DIRECTORY admin_log_dir
    LIKE 'E:\CDDTEST ';
    CREATE or REPLACE DIRECTORY admin_bad_dir
    LIKE 'E:\CDDTEST ';
    DROP TABLE cdd_ext_vt;
    -creation of the external table
    CREATE TABLE cdd_ext_vt
    (vertrag_nr VARCHAR2 (25),)
    kunden_name VARCHAR2 (60)
    )
    EXTERNAL ORGANIZATION
    (
    TYPE ORACLE_LOADER
    Admin_dat_dir default DIRECTORY
    ACCESS SETTINGS
    (
    records delimited by newline
    BadFile admin_bad_dir:'empxt%a_%p.bad'
    logfile admin_log_dir:'empxt%a_%p.log'
    fields completed by «,»
    missing field values are null
    (vetrag_nr, kunden_name
    )
    )
    LOCATION ("cdd_ext_vt.dat")
    )
    REJECT LIMIT UNLIMITED

    AS
    Select vt.vertrag, chr (34) | Trim (Person.Name) | Chr (34)
    VT, person
    where vt.syskd = person.sysperson
    and rownum < 11
    ;

    Carsten,

    You can use this to dump this procedure in csv file

    create or replace function  dump_csv( p_query     in varchar2,
                                          p_separator in varchar2 default ',',
                                          p_dir       in varchar2 ,
                                          p_filename  in varchar2 )
    return number
    is
        l_output        utl_file.file_type;
        l_theCursor     integer default dbms_sql.open_cursor;
        l_columnValue   varchar2(4000);
        l_status        integer;
        l_colCnt        number default 0;
        l_separator     varchar2(10) default '';
        l_cnt           number default 0;
    begin
        l_output := utl_file.fopen( p_dir, p_filename, 'w' );
    
        dbms_sql.parse(  l_theCursor,  p_query, dbms_sql.native );
    
        for i in 1 .. 255 loop
            begin
                dbms_sql.define_column( l_theCursor, i, l_columnValue, 4000 );
                l_colCnt := i;
            exception
                when others then
                    if ( sqlcode = -1007 ) then exit;
                    else
                        raise;
                    end if;
            end;
        end loop;
    
        dbms_sql.define_column( l_theCursor, 1, l_columnValue, 4000 );
    
        l_status := dbms_sql.execute(l_theCursor);
    
        loop
            exit when ( dbms_sql.fetch_rows(l_theCursor) <= 0 );
            l_separator := '';
            for i in 1 .. l_colCnt loop
                dbms_sql.column_value( l_theCursor, i, l_columnValue );
                utl_file.put( l_output, l_separator || l_columnValue );
                l_separator := p_separator;
            end loop;
            utl_file.new_line( l_output );
            l_cnt := l_cnt+1;
        end loop;
        dbms_sql.close_cursor(l_theCursor);
    
        utl_file.fclose( l_output );
        return l_cnt;
    end dump_csv;
    /
    
    REM Here is an example of using the above:
    
    create or replace procedure test_dump_csv
    as
        l_rows  number;
    begin
        l_rows := dump_csv( 'select * from all_users where rownum < 25', ',', '/tmp', 'test.dat' );
    end;
    /
    

    HTH
    SS

  • external table

    Hello

    I try to get data by using the external table as follows

     create table nfs_acq
     (
      Participant_ID                            char( 3         ),
      Transaction_Type                          char( 2         ),
      From_Account_Type                         char( 2         ),
      To_Account_Type                           char( 2         ),
      Trans_srno                                char( 12        ),
      Response_Code                             char( 2         ),
      PAN_Number                                char( 19        ),
      Member_Number                             char( 1         ),
      Approval_Number                           char( 6         ),
      System_Trace_Number                char( 12       ),
      Transaction_Date                           char( 6        ),
      Transaction_Time                           char( 6        ),
      Merchant_Category_Code                     char( 4        ),
      Card_Acceptor_S_Date                       char( 6        ),
      Card_Acceptor_ID                           char( 15       ),
      Card_Acceptor_t_ID                         char( 8        ),
      Card_Acceptor_t_Location           char( 40       ),
      Acquirer_ID                                char( 11       ),
      Acquirer_Settlement_Date                   char( 6        ),
      Transaction_Currency_code                  char( 3        ),
      Transaction_Amount                         char( 15       ),
      Actual_Transaction_Amount                  char( 15       ),
      Transaction_Acitivity_fee                  char( 15       ),
      Acquirer_Cur_Code                         char( 3         ),
      Acquirer_s_Amount                         char( 15        ),
      Acquirer_Settlement_Fee                    char( 15       ),
      Acquirer_settl_proc_fee                   char( 15        ),
      Tran_Acq_Conv_Rate                        char( 15        )
     )
     --
            ORGANIZATION EXTERNAL
             ( TYPE ORACLE_LOADER
               DEFAULT DIRECTORY HRK_NEW
               ACCESS PARAMETERS
               ( RECORDS fixed 274
           skip 1
             FIELDS (
     --
      Participant_ID                            char( 3         ),
      Transaction_Type                          char( 2         ),
      From_Account_Type                         char( 2         ),
      To_Account_Type                           char( 2         ),
      Trans_srno                                char( 12        ),
      Response_Code                             char( 2         ),
      PAN_Number                                char( 19        ),
      Member_Number                             char( 1         ),
      Approval_Number                           char( 6         ),
      System_Trace_Number                       char( 12       ),
      Transaction_Date                           char( 6        ),
      Transaction_Time                           char( 6        ),
      Merchant_Category_Code                     char( 4        ),
      Card_Acceptor_S_Date                       char( 6        ),
      Card_Acceptor_ID                           char( 15       ),
      Card_Acceptor_t_ID                         char( 8        ),
      Card_Acceptor_t_Location                   char( 40       ),
      Acquirer_ID                                char( 11       ),
      Acquirer_Settlement_Date                   char( 6        ),
      Transaction_Currency_code                  char( 3        ),
      Transaction_Amount                         char( 15       ),
      Actual_Transaction_Amount                  char( 15       ),
      Transaction_Acitivity_fee                  char( 15       ),
      Acquirer_Cur_Code                         char( 3         ),
      Acquirer_s_Amount                         char( 15        ),
      Acquirer_Settlement_Fee                    char( 15       ),
      Acquirer_settl_proc_fee                   char( 15        ),
      Tran_Acq_Conv_Rate                        char( 15        )
     )
                       )
                                 LOCATION ('
           ACQRPKJB110116.mkjb')
          )
     reject limit unlimited
    /
    

    table design

    However

    When I select data from table, I get below error

    ORA-29913: error in executing ODCIEXTTABLEOPEN legend

    ORA-29400: data cartridge error

    KUP-00554: error occurred when parsing the access settings

    KUP-01005: syntax error: found 'minussign': expected an a: 'double-quoted-string, identifier, single-quoted-string '.

    KUP-01007: in column 2 line 4

    29913 00000 - "error in the execution of %s legend".

    * Cause: The execution of the specified legend caused an error.

    * Action: Examine the error messages take appropriate measures.

    This is a sequential I am trying to import

    KJB0403 4643470817234643471601110731336011160111ATM00201 001107001303004213191476009651 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000070000000000000070000000000000000000356000000000070000000000000000000000000000000000000001000000000 CHOWK

    KJB0503 0174520817337281611601110956246011160111ATM00201 001109001320004293932011713114 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000000000000000000000000000000000000000356000000000000000000000000000000000000000000000000001000000000 CHOWK

    KJB0403 0176940817339062491601110957576011160111ATM00201 001109001321004293932011713114 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000050000000000000050000000000000000000356000000000050000000000000000000000000000000000000001000000000 CHOWK

    KJB0402 8653240817340573261601110959156011160111ATM00201 001109001322004722554560104882 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000320000000000000320000000000000000000356000000000320000000000000000000000000000000000000001000000000 CHOWK

    KJB0403 4459000817360340861601111015066011160111ATM00201 001110001326005044372611412016 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000001000000000000001000000000000000000000356000000001000000000000000000000000000000000000000001000000000 CHOWK

    KJB0403 6468820817392369431601111037426011160111ATM00201 001110001335004214090575031872 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000100000000000000100000000000000000000356000000000100000000000000000000000000000000000000001000000000 CHOWK

    KJB0402 9133280817459788951601111119146011160111ATM00201 001111001359006074194560106006 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000600000000000000600000000000000000000356000000000600000000000000000000000000000000000000001000000000 CHOWK

    KJB0402 1985030817481985031601111131596011160111ATM00201 001111001362005360160500127597 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000001000000000000001000000000000000000000356000000001000000000000000000000000000000000000000001000000000 CHOWK

    KJB0403 4400820817484400821601111133216011160111ATM00201 001111001363004213371215519505 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000200000000000000200000000000000000000356000000000200000000000000000000000000000000000000001000000000 CHOWK

    KJB0402 0817491361901601111137166011160111ATM00201 001111001366044135083790012559 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000300000000000000000000000000000000000356000000000000000000000000000000000000000000000000001000000000 CHOWK

    KJB0403 6891010817496562841601111140096011160111ATM00201 001111001368004214090322036455 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000050000000000000050000000000000000000356000000000050000000000000000000000000000000000000001000000000 CHOWK

    KJB0403 1310430817509973121601111147346011160111ATM00201 001111001371004689680028170636 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000001000000000000001000000000000000000000356000000001000000000000000000000000000000000000000001000000000 CHOWK

    KJB0503 0309320817544106971601111206046011160111ATM00201 001112001375005296160001593353 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000000000000000000000000000000000000000356000000000000000000000000000000000000000000000000001000000000 CHOWK

    KJB0403 0322130817546216041601111207116011160111ATM00201 001112001376005296160001593353 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000700000000000000700000000000000000000356000000000700000000000000000000000000000000000000001000000000 CHOWK

    KJB0502 8851180817548851181601111208376011160111ATM00201 001112001377005087530341448208 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000000000000000000000000000000000000000356000000000000000000000000000000000000000000000000001000000000 CHOWK

    KJB0402 0566530817550566531601111209336011160111ATM00201 001112001378005087530341448208 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000420000000000000420000000000000000000356000000000420000000000000000000000000000000000000001000000000 CHOWK

    KJB0403 6943770817556943771601111213006011160111ATM00201 001112001379004214920342912709 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000050000000000000050000000000000000000356000000000050000000000000000000000000000000000000001000000000 CHOWK

    KJB0402 7864780817559532151601111214256011160111ATM00201 001112001380006220180039900075266 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000330000000000000330000000000000000000356000000000330000000000000000000000000000000000000001000000000 CHOWK

    KJB0402 1083880817581341641601111226086011160111ATM00201 001112001382004378990101766440 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000800000000000000800000000000000000000356000000000800000000000000000000000000000000000000001000000000 CHOWK

    KJB0403 4830820817582764451601111226546011160111ATM00201 001112001383006071600100041514 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000700000000000000700000000000000000000356000000000700000000000000000000000000000000000000001000000000 CHOWK

    KJB0403 6286600817597510771601111234376011160111ATM00201 001112001386005326760302103432 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000100000000000000100000000000000000000356000000000100000000000000000000000000000000000000001000000000 CHOWK

    KJB0402 0029180817604353121601111238126011160111ATM00201 001112001389004704560203009224 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000001000000000000001000000000000000000000356000000001000000000000000000000000000000000000000001000000000 CHOWK

    KJB0403 3000000817608080441601111240116011160111ATM00201 001112001390005044339052564987192 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000400000000000000400000000000000000000356000000000400000000000000000000000000000000000000001000000000 CHOWK

    KJB0403 0139290817626145271601111249456011160111ATM00201 001112001396005346800000069646 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000900000000000000900000000000000000000356000000000900000000000000000000000000000000000000001000000000 CHOWK

    KJB0403 1126320817671162161601111313226011160111ATM00201 001113001406005196190081887558 ATM00201TILAK KALYAN THANE MHIN800044 160111356000000000020000000000000020000000000000000000356000000000020000000000000000000000000000000000000001000000000 CHOWK

    Help, please

    External table reference...

    Comments are lines that start with two dashes followed text. Comments must be placed before all access settings, for example:

    access_parameters Clause

    
    The access parameters clause contains comments, record formatting, and field formatting information. The syntax for the access_parameters clause is as follows:
    
    Text description of the illustration et_access_parameter.gif
    
    
    
    

    Comments

    
    Comments are lines that begin with two dashes followed by text. Comments must be placed before any access parameters, for example:
    
    
    --This is a comment
    --This is another comment
    RECORDS DELIMITED BY NEWLINE
    
    
     
    
  • Bulk insert in an external table

    Hi, I get the error ora-29913, ora-01410 trying to do a bulk insert of external table

    INSERT

    IN CORE_TB_LOG

    (SELECT 'MODEL', 'ARCH_BH_MODEL', ROWID, "MODEL-D-000000001', - 45, 'A', SYSDATE, 'R'")

    OF ARCH_BH_MODEL1

    WHERE length (MOD_XCODIGO) > 10)

    INSERT

    *

    ERROR on line 1:

    ORA-29913: error in executing ODCIEXTTABLEFETCH legend

    ORA-01410: invalid ROWID

    ARCH_BH_MODEL1 is the external table.


    What's wrong?


    Thank you.

    Hello

    There is no ROWID in external tables.

    It makes sense: ROWID identifies where a line is stored in the database; It shows the data file and the block number in this file.

    External tables are not stored in the database.  They exist independently of any data file in the database.  The concept of an Oracle block does not apply to them.

    Why would you copy the ROWID, even if you could?

    Apart from ROWID and SYSDATE, you select only literals.  You don't want to select all the real data of the external table?

    What is the big picture here?  Post a small example of data (a CREATE TABLE statement and a small data file for the external table) and the desired results from these sample data (in other words, what core_tb_log must contain after INSERTION is complete.)  Explain how you get these results from data provided.

    Check out the Forum FAQ: Re: 2. How can I ask a question on the forums?

Maybe you are looking for

  • Cannot download files with plupload using Firefox 7 / Aurora (beta)

    I'm unable to download a file (using drag - move OR select file) with plupload and Firefox 7. Everything worked fine with Firefox 6. When I try to download a file with plupload, firefox thinks I'm trying to install an extension. http://www.Plupload.c

  • Several drivers

    I have a HP Pavilion g4-1213nr and when I go to the page drivers I see several different network drivers. Does that mean that all the drivers are compatible with my hardware or is it only a single driver that is compatible with my laptop?

  • Safety source function

    Hi all I'll start to use TFS as my application from a reliable source within labview.  Is there some cool tips that you can share or something critical that I need to beware?  THX! Yik

  • I had blocked some shippers and has not been able to 'remove' to my list of "blocked senders". What should I do?

    I use Windows XP and Outlook Express.  I put some e-mail addresses on my "list of blocked senders," using "Messages". When I tried to 'remove' some of my 'list of blocked senders' email addresses, they kept reappearing. and, I was not allowed to 'rem

  • BlackBerry Smartphones strange symbol in display + Mac Desktop Manager

    Hello everyone, I have a problem with my bb. There is a circle with an arrow inside next to the place where normally the mail sign shows up... does anyone know what it represents and how it will disappear again? My second question concerns the Direct