SQL*LOADER ERROR 비교 (ORA-2359, ORA-1401)

제품 : ORACLE SERVER
작성날짜 : 2002-04-09
SQL*LOADER ERROR 비교 (ORA-2359, ORA-1401)
==========================================
PURPOSE
SQL*LOADER 를 사용하는 경우 ORA-2359 ERROR가 나는 경우와
ORA-1401 ERROR가 나는 경우를 비교한다.
Examples
table 의 desc가 다음과 같다고 가정하자.
SQL> create table test5(a varchar2(1000));
이 경우 delimiter 가 comma 인지 position 으로 구분되는지에 따라 error
message가 달리 나타난다.
1) ORA-2359 : field in datafile exceeded maximum specified length
load data
infile test.dat
replace
into table test5
fields terminated by ','
(a char) 로 실행 시 발생.
---> a char(1000) 으로 하면 error 해결이 가능하다.
2) ORA-1401: inserted value too large for column
load data
infile test.dat
replace
into table test5
fields terminated by ','
(a position(1:2000) char)
---> 이 경우 a position (1:1000) char 로 하면 해결 가능하다 .
* 참고로 + , - 기호와 comma 를 load 하기 위해서는 decimal external을
사용한다. (a position decimal external (10))
Reference Documents
---------------------

You hit Bug 3531336
Run the script catcio.sql from $ORACLE_HOME/rdbms/admin directory.
Run this in sys schema.
And then load the data with sqlloader.

Similar Messages

  • SQL Loader Error using regexp_replace

    Hi Guys,
    i am trying to using sql loader to load data and one column in control file is
    x1 POSITION(718:725) DATE "YYYYMMDD" NULLIF FI_CLM_RCPT_DT = BLANKS,
    XYZ POSITION(736:745) CHAR "regexp_replace(substr(:XYZ,1,9),\'[^1|Y|N|U|W]\',\' \')||regexp_replace(substr(:XYZ,10,1),\'[^Z]\', \' \'))")
    But at last part i am getting error
    SQL*Loader-951: Error calling once/load initialization
    ORA-02373: Error parsing insert statement for table TDESAI_DBA.HAJI_CLM_A.
    ORA-00933: SQL command not properly ended
    I know the error is with XYZ Column but where. Or am i doing something wrong?
    Can you guys help me

    Please see the discussion on the Semantic Technologies OTN form at SQL*Loader error 350 using SDO_RDF_TRIPLE_S constructor

  • SQL Loader Error : ORA-01830: date format picture ends before converting en

    I am inserting following data
    BES101706     M.E. Deals     7     10/17/2006
    through control file :
    LOAD DATA
    APPEND
    INTO TABLE abc_temp
    FIELDS TERMINATED BY ' '
    TRAILING NULLCOLS
    (BATCH_NAME               ,
    SUPPLIER_NAME          ,
    SUPPLIER_NBR          ,
    INV_DATE "to_date(substr(:INV_DATE,1,10),'MM/DD/YYYY' )"
    But I am getting this error:
    ORA-01830: date format picture ends before converting entire input string
    inv_data is a date field in the database.

    I think it has to do with data format.Exactly.
    You have
    BES101706*M.E.*Deals*7*10/17/2006
    I replace each space with an asterisk. You have 5 columns according to your spec (terminated by '<space>')
    SQL Loader doesn't know that M.E. Deals is the supplier name.
    It's trying to convert 7 as the date.

  • SQL Loader Error ORA-03113

    Hi All,
    I am getting the following error when running sql loader. The SQL Loader Version we are using is Release 9.2.0.5.0. I am using the DIRECT option for SQL Loader as well. Thanks in advance.
    SQL*Loader-961: Error calling once/load finishing for table "TABLE_EX"
    ORA-03113: end-of-file on communication channel
    SQL*Loader-2026: the load was aborted because SQL Loader cannot continue.
    SQL*Loader-925: Error while uldlgs: OCIStmtExecute (ptc_hp)
    ORA-03114: not connected to ORACLE
    SQL*Loader-925: Error while uldlgs: OCIStmtFetch (ptc_hp)
    ORA-24338: statement handle not executed

    You hit Bug 3531336
    Run the script catcio.sql from $ORACLE_HOME/rdbms/admin directory.
    Run this in sys schema.
    And then load the data with sqlloader.

  • SQL loader error ORA-01401:

    I am trying to import a .dat file using SQL loader and
    i am getting error:ORA-01401: inserted value too large for column and i tried changing the column length to bigger too.
    TABLE STRUCTURE
    create table NOTE
    NOTE_EFF_DATE NUMBER,
    NOTE_NDC_NUMBER NUMBER,
    NOTE_PREV_NDC_NUMBER NUMBER,
    NOTE_DEA_CLASS_CD VARCHAR2(5),
    NOTE_PRODUCT_CTGRY_CD VARCHAR2(5),
    NOTE_PRODUCT_NAME VARCHAR2(40),
    NOTE_FORM_CODE VARCHAR2(5),
    NOTE_PRODUCT_STRENGTH VARCHAR2(35),
    NOTE_PRODUCT_MSUR_CD VARCHAR2(5),
    NOTE_PRODUCT_PKG_SZ NUMBER,
    NOTE_PRODUCT_PKG_QTY_CD VARCHAR2(6),
    NOTE_THRPTC_CLS_CD NUMBER,
    NOTE_AWP_CRT_PRC_EF_DT NUMBER,
    NOTE_AWP_CRT_PRC NUMBER,
    NOTE_AWP_UNT_PRC NUMBER,
    NOTE_AWP_1ST_PRV_UNT_PRC NUMBER
    DATA IN .dat FILE:
    093083100002035151 401DARVOCET-N 50 TAB 01000EA 0000000001831780008120000008120000007250
    093083100002011104 08SODIUM SALICYLATE CAP10 GR 01000EA 2808020070880920005519000005519000005158
    .dat FILE format/structure
    01 NOTE-REC.
    05 NOTE-KEY.
    10 NOTE-EFF-DATE.
    15 NOTE-EFF-C PIC X(01).
    15 NOTE-EFF-YY PIC X(02).
    15 NOTE-EFF-MM PIC X(02).
    15 NOTE-EFF-DD PIC X(02).
    10 NOTE-NDC-NUMBER.
    15 NOTE-NDC-NUM-5 PIC X(05).
    15 NOTE-NDC-NUM-4 PIC X(04).
    15 NOTE-NDC-NUM-2 PIC X(02).
    05 NOTE-PREV-NDC-NUMBER.
    10 NOTE-NDC-NUM-5 PIC X(05).
    10 NOTE-NDC-NUM-4 PIC X(04).
    10 NOTE-NDC-NUM-2 PIC X(02).
    05 NOTE-DEA-CLASS-CD PIC X(01).
    05 NOTE-PRODUCT-CTGRY-CD PIC X(02).
    05 NOTE-PRODUCT-NAME PIC X(35).
    05 NOTE-FORM-CODE PIC X(03).
    05 NOTE-PRODUCT-STRENGTH PIC X(25).
    05 NOTE-PRODUCT-MSUR-CD PIC X(02).
    05 NOTE-PRODUCT-PKG-SZ PIC 9(05).
    05 NOTE-PRODUCT-PKG-QTY-CD PIC X(03).
    05 NOTE-THRPTC-CLS-CD PIC 9(10).
    05 NOTE-AWP-CRT-PRC-EF-DT PIC 9(05).
    05 NOTE-AWP-CRT-PRC PIC 9(05)V99.
    05 NOTE-AWP-UNT-PRC PIC 9(04)V9(05).
    05 NOTE-AWP-1ST-PRV-UNT-PRC PIC 9(04)V9(05).
    Control FILE:
    LOAD DATA
    INFILE 'NCD.dat'
    BADFILE 'NCD.bad'
    DISCARDFILE 'NCD.dsc'
    INTO TABLE NOTE
    REPLACE
    FIELDS TERMINATED BY ' '
    TRAILING NULLCOLS
    NOTE_EFF_DATE POSITION(1:7) INTEGER EXTERNAL NULLIF(NOTE_EFF_DATE=BLANKS),
    NOTE_NDC_NUMBER POSITION(8:18) DECIMAL EXTERNAL NULLIF(NOTE_NDC_NUMBER=BLANKS),
    NOTE_PREV_NDC_NUMBER POSITION(19:27) DECIMAL EXTERNAL NULLIF(NOTE_PREV_NDC_NUMBER=BLANKS),
    NOTE_DEA_CLASS_CD POSITION(28) CHAR NULLIF (NOTE_DEA_CLASS_CD=BLANKS),
    NOTE_PRODUCT_CTGRY_CD POSITION(29:30) CHAR NULLIF (NOTE_PRODUCT_CTGRY_CD=BLANKS),
    NOTE_PRODUCT_NAME POSITION(31:65) CHAR NULLIF (NOTE_PRODUCT_NAME=BLANKS),
    NOTE_FORM_CODE POSITION(66:68) CHAR NULLIF (NOTE_FORM_CODE=BLANKS),
    NOTE_PRODUCT_STRENGTH POSITION(69:93) CHAR NULLIF (NOTE_PRODUCT_STRENGTH=BLANKS),
    NOTE_PRODUCT_MSUR_CD POSITION(94:95) CHAR NULLIF (NOTE_PRODUCT_MSUR_CD=BLANKS),
    NOTE_PRODUCT_PKG_SZ POSITION(96:100) INTEGER EXTERNAL NULLIF (NOTE_PRODUCT_PKG_SZ=BLANKS),
    NOTE_PRODUCT_PKG_QTY_CD POSITION(101:103) CHAR NULLIF (NOTE_PRODUCT_PKG_QTY_CD=BLANKS),
    NOTE_THRPTC_CLS_CD POSITION(104:113) INTEGER EXTERNAL NULLIF (NOTE_THRPTC_CLS_CD=BLANKS),
    NOTE_AWP_CRT_PRC_EF_DT POSITION(114:118) INTEGER EXTERNAL NULLIF (NOTE_AWP_CRT_PRC_EF_DT=BLANKS),
    NOTE_AWP_CRT_PRC POSITION(119:225) DECIMAL EXTERNAL NULLIF (NOTE_AWP_CRT_PRC=BLANKS),
    NOTE_AWP_UNT_PRC POSITION(226:234) DECIMAL EXTERNAL NULLIF (NOTE_AWP_UNT_PRC=BLANKS),
    NOTE_AWP_1ST_PRV_UNT_PRC POSITION(235:245) DECIMAL EXTERNAL NULLIF (NOTE_AWP_1ST_PRV_UNT_PRC=BLANKS)

    load data
    APPEND into table TBL1
    fields terminated by "," optionally enclosed by '"'
    TRAILING NULLCOLS          
    columnname
    )Hi!
    Brother, pls give the details of your column. Your exact script. Initially, it seems that - your code is ok. But, that is my guess. Please post the complete script. We cannot say anithing - untill we go through the entire code of your script.
    Regards.
    Satyaki De.

  • SQL*Loader error ORA-00600 and ORA-26095

    Hi all,
    We have a problem with the SQL*Loader Utility. We use an 8i-Database (8.1.7) and SQL*Loader 9.2.0.1.0. We have no Trims or other functions active in the control file and do a direct path load.
    It used to work properly until this morning.
    Now we have the following errors (it is in German - but I can translate it):
    Satz 90153: Abgelehnt - Fehler in Tabelle SCHEMA1.T_IMPORT.
    ORA-00600: Interner Fehlercode, Argumente: [klaprs_50], [7], [], [], [], [], [], []
    ... about 50 equal errors
    Specify SKIP=90171 when continuing the load.
    SQL*Loader-926: OCI-Fehler; uldlm:OCIDirPathFinish für Tabelle SCHEMA1.T_IMPORT
    ORA-26095: Nicht verarbeitete Stream-Daten vorhanden
    SQL*Loader-2026: Der Ladevorgang wurde abgebrochen, weil er nicht fortgesetzt werden kann.
    Specify SKIP=90171 when continuing the load.
    Trnaslation:
    00600 - Internal error code, arguments: ...
    OCI-Fehler = OCI error
    für Tabelle = for table
    ORA-26095: Nicht verarbeitete Stream-Daten vorhanden = Non processed stream data existing
    SQL*Loader-2026: Der Ladevorgang wurde abgebrochen, weil er nicht fortgesetzt werden kann. = Load process has been cancelled as it cannot be continued.
    Has anyone got a clue?!?!?!

    Hi,
    It's very clear that import 9i is for an import into 9i database.
    Upgrade 8i to 9i indicates that we can make an export 8i from 8i database and import 9i into 9i database, but never use a tools like export from other version...
    If you want import data from 9i database into 8i use exp tools 8i, and imp 8i.
    I devise you to read Metalink note 132904.1 - compatibility matrix for export & import between different oracl version.
    Nicolas.

  • SQL Loader error while loading a date field

    Hi,
    I am getting the below error while I am trying to load a table with a date field using SQL Loader
    Record 1: Rejected - Error on table RPT_HOST_USAGE, column USAGE_TIMESTAMP.
    ORA-01861: literal does not match format string
    My input file is as below
    <code>
    Host_Usage_ID,Host_ID,Technology_ID,Environment_ID,Usage_Timestamp,Avg_CPU_Pct,Avg_Memory_MB,CPU_Spike
    1,12,1,8,'2009-08-01 00:00:00',0.000000000,23875.000000000,0.000000000
    <code>
    My Loader.ctl is
    <code>
    OPTIONS (SKIP=1)
    load data
    infile 'C:\rpt_Host_Usage.txt'
    into table RPT_HOST_USAGE
    fields terminated by ","
    HOST_USAGE_ID,
    HOST_ID,
    TECHNOLOGY_ID,
    ENVIRONMENT_ID,
    USAGE_TIMESTAMP,
    AVG_CPU_PCT,
    AVG_MEMORY_MB,
    CPU_SPIKE
    <code>
    I have tried options like USAGE_TIMESTAMP TO_DATE(USAGE_TIMESTAMP,'YYYY-MM-DD HH24:MI:SS') but didn't work...
    Can you please tell me how to resolve this issue?
    Any pointers on this will be helpful
    Thanks
    Mahesh

    I went back and looked at some of my old *.ctl files and I did something simlilar to what you mentioned and it worked for me, but I had surrounded the option in double-quotes and included a colon in front of the item. Example:
    TECHNOLOGY_ID,
    ENVIRONMENT_ID,
    USAGE_TIMESTAMP "to_date(:USAGE_TIMESTAMP,'YYYY-MM-DD HH24:MI:SS')",
    AVG_CPU_PCT,
    AVG_MEMORY_MB,
    ....

  • Sql loader error with date format

    Hi everyone,
    I have table and have a data in one coulmn RECORDED_DATE like '20090224' and my client is asking me to load this coulmn data in 'yyyymmdd' format.I am strucked up with my ideas.I used to_date('20090124','yyyymmdd') in control file.but it is also not working Here it is my control file
    LOAD DATA
    INFILE 'C:\xxxx\SQLLDR\HE data\HE_data_Feb.txt'
    BADFILE 'C:\xxxx\SQLLDR\HE data.bad'
    DISCARDFILE 'C:\xxxx\SQLLDR\HE data.dsc'
    INTO TABLE LSCCMGR.FASTPAY_HE_DATA
    REPLACE
    fields terminated by X'09'
    TRAILING NULLCOLS
    (RECORDED_DATE "TO_DATE(:RECORDED_DATE,'mm/dd/yyyy')"
    AGENT_ID
    MEASURE
    TRANSACTIONS
    FEES
    If i excute like this i am getting the error like
    Record 1: Rejected - Error on table LSCCMGR.FASTPAY_HE_DATA, column RECORDED_DATE.
    ORA-01843: not a valid month
    Getting for all records,what i need o change to get the RECORDED_DATE as dateformat.Ple any one help me in this issue to resolve
    How can we perform this using sql loader pls let me know,Thanks in advance.
    Sravan

    Hi,
    &gt;&gt;(RECORDED_DATE "TO_DATE(:RECORDED_DATE,'mm/dd/yyyy')"
    *Change this line to*
    (RECORDED_DATE "TO_DATE(:RECORDED_DATE,'yyyymmdd')"Regards,

  • SQL*Loader Error Field in data file exceeds maximum length", version 8.1.6

    Hi All,
    I am trying to load a data file into a database table using SQL loader. I
    received the data in an data file but I saved it as a pipe delimited
    file.
    When I run the SQL Loader command no records are loaded - looking at the log
    file I get the following error:
    Rejected - Error on table FARESDATA, column FANOTESIN.
    Then I tried with substr and doesnt seem to work for values greater than 4000 chars, it only works if the field value is below 4000 chars (say doing a substr for first 3000 chars).
    see the code--------
    LOAD DATA
    INFILE 'p.dat'
    APPEND INTO TABLE PROSPECTUS
    FIELDS TERMINATED BY '|' OPTIONALLY ENCLOSED BY '"'
    TRAILING NULLCOLS
    Fanotesin char(4000) "substr(:fanotesin,1,4000)"
    We get the error ORA-01461: can bind a LONG value only for insert into a LONG column when using substr for 4000 chars.
    Please help!
    Thanks,
    Rajesh
    null

    I believe the problem here is that the ORACLE database regards anything > 4000chs as a CLOB (or LONG). 4000 is the maximum length of a varchar2 field in the database, although of course you can declare larger values in PL/SQL. (Since the incoming data is > 4000 chs it is regarded as a LONG and you cannot therefore use SUBSTR on it)
    I think that you must either truncate your data before loading or load into a table with the offending field as a CLOB (or LONG)
    and then use PL/SQL to recreate it in a table with a varchar2(4000) which is otherwise identical. (You can select from a LONG into a varchar2(32000) for example and then truncate before writing out to the new table).

  • Sql-loader error, help!!!!

    Recently I found the following error message in the sql-loader log file.
    ora-704 , I can't find corresponding explainatino in oracle documentation. I use sql-loader 7.3 to load .dat file extracted from our ERP system. This error can't be monitored by pl/sql and quite dangerous . Please kindly help me to solve this problem.Many thanks!!

    The ora-704 error message is pretty serious. It's a boot-strap kind of message that you usually get on db startup when something is seriously wrong. What version of db are you running? If it's pre-8.0 then you might check to see if the sys.bootstrap$ table was set to unlimited extents (one of those weird issue things). Although I wouldn't suggest modifying the sys schema's objects to set the extents to something other than unlimited, this might open some doors into something else.
    If you're truly getting this:
    ORA-00704: "bootstrap process failure"
    Cause: Failure in processing bootstrap data - see accompanying
    error.
    Action: Contact your customer support representative.
    Then you really need to contact a CSR for technical help that is supported by Oracle itself.
    Good luck
    EC

  • SQL*Loader error in windows connection

    Hi ALL,
    While connecting windows XP cmd prompt.
    Error Output:_
    SQL*Loader: Release 10.2.0.1.0 - Production on Fri Feb 22 18:35:59 2013
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL*Loader-704: Internal error: ulconnect: OCIServerAttach [0]
    ORA-12170: TNS:Connect timeout occurred
    sqlnet.log*
    Fatal NI connect error 12170.
    VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
         Windows NT TCP/IP NT Protocol Adapter for 32-bit Windows: Version 10.2.0.1.0 - Production
    Time: 21-FEB-2013 15:47:49
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12535
    TNS-12535: TNS:operation timed out
    ns secondary err code: 12560
    nt main err code: 505
    TNS-00505: Operation timed out
    nt secondary err code: 60
    nt OS err code: 0
    Client address: <unknown>
    Please suggest me to fix the issue.
    Thanks and Regards
    Suresh

    Hello;
    Check if the environment for the user that's using sqlldr is correctly configured. ORACLE_HOME, ORACLE_SID, TNS_ADMIN, SQLNET.ORA can that user connect using SQL Plus?
    This is a connectivity issue for sure. Would also check the sqlnet.log.
    Could be the way you call Loader. This format always works for me :
    sqlldr username/password@sidname control=controlfilename.ctl log=logfilename.log
    Test
    If I back space off a character from the SID I get this : ( Expected )
    SQL*Loader: Release 11.2.0.1.0 - Production on Fri Feb 22 07:59:52 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    SQL*Loader-704: Internal error: ulconnect: OCIServerAttach [0]
    ORA-12154: TNS:could not resolve the connect identifier specifiedWould focus on the ORA-12170. Check SQLNET.ORA for SQLNET.RECV_TIMEOUT and SQLNET.SEND_TIMEOUT parameters. Check for firewall blocking you, both Windows XP and outside.
    Best Regards
    mseberg
    Edited by: mseberg on Feb 22, 2013 7:54 AM

  • SQL Loader error: SQL*Loader-926. Please help

    Hi,
    While loading some files to my database table, I am getting the following error. I am using 'Truncate' option while loading the file:
    Error:
    ====
    SQL*Loader-926: OCI error while executing delete/truncate (due to REPLACE/TRUNCATE keyword) for table LOS_STAGE_DS4
    ORA-01426: numeric overflow
    Here's the loader properties(excerpts from load log)
    ================================
    SQL*Loader: Release 11.1.0.6.0 - Production on Fri Nov 26 04:54:18 2010
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    Control File: d:\Prod\rent_Load\Bin\rent_Load.ctl
    Data File: d:\Prod\rent_Load\Data\rent.704
    Bad File: d:\Prod\rent_Load\Bad\rent.704
    Discard File: none specified
    (Allow all discards)
    Number to load: ALL
    Number to skip: 0
    Errors allowed: 1000000000
    Bind array: 64 rows, maximum of 256000 bytes
    Continuation: none specified
    Path used: Conventional
    Table LS_STAGE, loaded from every logical record.
    Insert option in effect for this table: TRUNCATE
    Column Name Position Len Term Encl Datatype
    Could someone please help and advise what is the root cause of this error?
    Thanks,

    The root cause is in the error ora-1426, which you can look up in the online error documentation at http://tahiti.oracle.com . No one knows every error message by heart. This means it is expected you look up the error prior to posting, and you don't expect any volunteer in this forum to look up the error on your behalf.
    Also this is a typical candidate for being a known problem, and known problems can be found on My Oracle Support.
    Sybrand Bakker
    Senior Oracle DBA

  • OCIStmtFetch  SQL*Loader Error

    I am getting the following error when running sql loader. The SQL Loader Version we are using is Release 9.0.1.
    I am using the DIRECT option for SQL Loader and I am using the TRIM option to load some columns.
    SQL*Loader-961: Error calling once/load finishing for table "TABLE_NAME"
    ORA-03113: end-of-file on communication channel
    SQL*Loader-2026: the load was aborted because SQL Loader cannot continue.
    SQL*Loader-925: Error while uldlgs: OCIStmtExecute (ptc_hp)
    ORA-03114: not connected to ORACLE
    SQL*Loader-925: Error while uldlgs: OCIStmtFetch (ptc_hp)
    ORA-24338: statement handle not executed
    Thanks a lot.

    If your operating system is OPEN VMS, please see note:188422.1 on metalink. You have to install the 9.0.1.3.0 patchset.

  • Sql loader error

    I am using sql loader command line sqlldr to load 141306 records into my table. It ended with an error message --
    SQL*Loader-605: Non-data dependent ORACLE error occurred -- load discontinued.
    Checking for data load failures
    Checking Log data for clinic_biotox table data load
    90970 Rows successfully loaded.
    78 Rows not loaded due to data errors.
    And moreover (90970+78 = 91048) which is much less than 141306
    Any ideas as to what might have happened ?
    Thanks

    Have you checked the sqlldr log file (the name of which you should have supplied at the command line)? This sometimes provides additional information as to what occurred.
    I would also say that the reason why your record counts do not tally up like they should would be because the error occurred before sqlldr was able to complete the load.
    The last thing I can offer would be for you to check what your allowable error threshold is within your logfile. It could be that you exceeded the allowable number of bad records and as such caused the load to fail.
    Hope this helps...

  • SQL Loader error on Fields terminated and optionally enclosed

    When you have fields terminated and optionally enclosed, you should be able to have the enclosure characters within the data by doubling them.
    So if I have fields terminated by '|' optionally enclosed by '"' and my data has a double quote in it, I can get SQL Loader to take it by replacing the double quote with two double quotes.
    But this doesn't always work. For some reason the following string gets the error "no terminator found after TERMINATED and ENCLOSED field"
    |"TRO2 ldj?=)(/&%ç*""aàéè_:;!àèé,jpdjbdbd"|
    Apparently having the double quote immediately after an asterisk makes SQL Loader not see the second double quote. If I edit it and remove the two double quotes it loads OK. Also if I change the string to
    |"TRO2 ldj?=)(/&%ç*aà""éè_:;!àèé,jpdjbdbd"|
    Moving the double quote away from the asterisk it loads OK.
    Anybody encounter this problem before?

    Oracle version is 11.1.0.7.0
    OS is Windows 6.1.7601
    I can't remove the "optionally enclosed by" clause because we're getting the data from another system. Fortunately this is test data and this particular combination of characters is unlikely to occur in production data.

Maybe you are looking for

  • CSV FILE UPLOAD

    DEAR ALL, I am facing one problem while uploading csv file. I have 2 csv files. i use the function module CALL FUNCTION 'KCD_CSV_FILE_TO_INTERN_CONVERT'     EXPORTING       i_filename      = L_FILENAME "'C:\Temp\Book1.csv'       i_separator     = ','

  • Issue connecting via proxy client in SQL Developer 4.0

    Hi SQL Developers, I should have posted this earlier, as I have been using SQL Developer 4.0 for several months and noticed the issue some time ago. The environment I am connecting to uses a Windows ISA Proxy desktop client to allow traffic to some d

  • Repeat is not working in music

    any idea as to how to activate repeat in music.  the repeat icon is lit, but not working.  thanks.

  • Keynote 09 problem.

    I recently installed Keynote 2009. I am trying to display a slide show in the Keynote 2009 window instead of full screen. I spoke with Apple support and was informed this feature was not available and to submit a feedback form. I have done as asked b

  • Bogus Cisco AVPair

    friends, I have a particular requirement that i want to pass an AVpair to the ASR 9K BRAS. So that my billing server which is sniffing radius packets can take particular actions based on those Bogus AVPair.   BRAS should just ignore or take no action