character not recognized - loading data with httpuritype

Hi all

I have a table with one field XML, the schema is:

DBMS_XMLSCHEMA. REGISTERSCHEMA (SCHEMAURL = > 'Ordenes.xsd', SCHEMADOC = > ')

" < xs: schema xmlns: XS =" http://www.w3.org/2001/XMLSchema "" xmlns: xsi = " " http://www.w3.org/2001/XMLSchema-instance ">

< xs: element name = "Monsigniore" >

< xs: complexType >

< xs: SEQUENCE >

< xs: element name = "Quantity" type = "Integer" / >

< xs: element name = "FechaCreacion" type = "xs: String" / >

< xs: element name = "Version" type = "xs: String" / >

< xs: element name = "News" >

< xs: complexType >

< xs: SEQUENCE >

< xs: element name = "OrdenCompra" maxOccurs = "unbounded" >

< xs: complexType >

< xs: SEQUENCE >

< xs: element name = "Code" type = "xs: String" / >

< xs: element name = "Number" type = "xs: String" / >

< xs: element name = "CodigoEstado" >

< xs:simpleType >

< xs:restriction base = "XS: String" >

< xs:enumeration value = "4" / >

< xs:enumeration value = "6" / >

< xs:enumeration value = "9" / >

< xs:enumeration value = "12" / >

< xs:enumeration value = "13" / >

< xs:enumeration value = "14" / >

< xs:enumeration value = "15" / >

< / xs:restriction >

< / xs:simpleType >

< / xs: element >

< / xs: SEQUENCE >

< / xs: complexType >

< / xs: element >

< / xs: SEQUENCE >

< / xs: complexType >

< / xs: element >

< / xs: SEQUENCE >

< / xs: complexType >

< / xs: element >

< / xs: Schema > ', LOCAL = > true, GENTYPES = > false, GENBEAN = > false, GENTABLES = > false,

FORCE = > false, OPTIONS = > DBMS_XMLSCHEMA. REGISTER_BINARYXML, OWNER = > USER);

When I insert data directly, the Spanish as character 'Nn', aeiou is charged properly.

insert into Monsigniore values (current_date, ' 02032014', null, null, null,)

' ' < Command containing = ' http://www.w3.org/2001/XMLSchema "" xmlns: xsi = " " http://www.w3.org/2001/XMLSchema-instance ">

< Number > 178 < / quantity >

< FechaCreacion > 2015-05-26T 10: 41:42.003 < / FechaCreacion >

v1 < version > < / Version >

< Return >

< OrdenCompra >

4475 37-SE14 < code > < / code >

< Number > CANAS APPROPRIATE DEL ORFE PARAOn < / number >

< CodigoEstado > 6 < / CodigoEstado >

< / OrdenCompra >

< OrdenCompra >

4559 32-SE14 < code > < / code >

Operating SYSTEM TRASLADÓ < number > < / number >

< CodigoEstado > 6 < / CodigoEstado >

< / OrdenCompra >

< OrdenCompra >

2367 106-SE14 < code > < / code >

< Number > REPARACI SERVICIOON Y LIMPIEZA DEPENDENCE DAEM < / number >

< CodigoEstado > 6 < / CodigoEstado >

< / OrdenCompra >

< / News >

< / Monsigniore >

'

);

but when I do so by:

httpuritype('___http://api.mercadopublico.cl/servicios/v1/publico/ordenesdecompra.xml?fecha=02032014&ticket=F8537A18-6766-4DEF-9E59-426B4FEE2844).getxml ()

Does not recognize the Spanish characters.

Please if anyone can tell me how I should configure works well

Thank you very much

Carlos

The Content-Type of the response specifies UTF-8 encoding:

SQL> select httpuritype('http://api.mercadopublico.cl/servicios/v1/publico/ordenesdecompra.xml?fecha=02032014&ticket=F8537A18-6766-4DEF-9E59-426B4FEE2844')
  2  .getcontenttype()
  3  from dual;

HTTPURITYPE('HTTP://API.MERCAD
--------------------------------------------------------------------------------
application/xml; charset=utf-8

so the question looks like a typical conversion problem, which is usually managed through UTL_HTTP. SET_BODY_CHARSET.

However, it doesn't seem to work in conjunction with HTTPURITYPE.

Here's a possible solution, implement something similar to what HTTPURITYPE done in-house:

create or replace function getXMLResource (
  p_url     in varchar2
, p_charset in varchar2
)
return xmltype
is
  req     utl_http.req;
  resp    utl_http.resp;
  tmp     varchar2(32767);
  result  clob;
begin
  req := utl_http.begin_request(p_url);
  utl_http.set_body_charset(req, p_charset);
  resp := utl_http.get_response(req);
  dbms_lob.createtemporary(result, true);
  begin
    loop
      utl_http.read_text(resp, tmp);
      dbms_lob.writeappend(result, length(tmp), tmp);
    end loop;
  exception
    when utl_http.end_of_body then
      null;
  end;
  utl_http.end_response(resp);
  return xmltype(result);
end;
/

Test:

SQL> select *
  2  from xmltable('/Ordenes/Listado/OrdenCompra'
  3         passing getxmlresource(
  4                   'http://api.mercadopublico.cl/servicios/v1/publico/ordenesdecompra.xml?fecha=02032014&ticket=F8537A18-6766-4DEF-9E59-426B4FEE2844'
  5                 , 'utf-8'
  6                 )
  7         columns codigo  varchar2(20)   path 'Codigo'
  8               , nombre  varchar2(4000) path 'Nombre'
  9       )
10  where rownum < 20 ;

CODIGO               NOMBRE
-------------------- --------------------------------------------------------------------------------
4475-37-SE14         CAÑAS PARA INSTRUMENTOS DEL ORFEÓN.
4559-32-SE14         TRASLADO OPERATIVO
2367-106-SE14        SERVICIO DE REPARACIÓN Y LIMPIEZA DEPENDENCIA DAEM
1554-659-SE14        FORMULARIOS
584105-122-SE14      Servicio de Aseo Seremi Magallanes y la Anatártica Chilena
2591-248-SE14        SERVICIO DE ARRIENDO DE VIDEO CAMARA
3674-86-SE14         ORDEN DE COMPRA DESDE 3674-7-L114
3181-239-SE14        Materiales de construcción para mejorar condición
4050-155-SE14        ORDEN DE COMPRA DESDE 4050-29-L114
586-149-SE14         ORDEN DE COMPRA DESDE 586-9-LE14
3791-225-SE14        ayuda asistencial a marlene alvarez palacios
3791-253-SE14        Materiales Escolares
3791-255-SE14        Calzados y Ropa de Colegio
3791-254-SE14        Material para Manualidades
3791-261-SE14        Materiales para Actividades
1524-224-SE14        SAS
2341-394-SE14        ORDEN DE COMPRA DESDE 2341-115-L114
2393-155-SE14        s.m. nº 229 comuna segura
2273-373-SE14        DECRETO COMPRA 2000-313 (mms)

19 rows selected.

Tags: Oracle Development

Similar Questions

  • 'Pilot of custom computer manufacturer' not up to date with Intel driver... solution?

    I tried to update my driver Intel HD Graphics of Intel Driver Update Utility and I get:

    "A custom computer manufacturer driver is installed on your computer. The Intel Driver Update utility is not able to update the driver. Install a generic Intel driver instead of the driver from the computer manufacturer custom can cause technical problems. Contact your computer manufacturer for the latest driver for your computer.

    I used HP updates day & Solution Finder to get the latest driver, but again, I am still not up-to-date with the drivers supplied via the update utility drivers Intel


    1. What are the differences between HP "s"custom"Intel HD Graphics driver and pilot generic Intel's HD Graphics? (What are customized drivers computer manufacturer in general?)
    2. Is it possible to install these drivers workaround?
    3. What are the technical problems that might occur if installed if they are radically different?

    My laptop:

    Spoiler (Highlight to read)

    Windows 7 Home Premium Edition Service Pack 1

    64 bit

    Laptop HP G72-b63NR

    Spoiler (Highlight to read)

     

    Windows 7 Home Premium Edition Service Pack 164 bitHP PC laptop G72-b63NR

    Hello

    I can tell you one thing with certainty. Even if you install latest graphic driver Intel then will not increase performance much, because these cards are low quality products. In their case, the most important is the stability that is afforded by the driver provided by HP.

  • Member not found when loading data with SQL

    Hello everyone:

    I created a cube map extract all information with SQL statements and it works perfectly. Now I'm trying to load data in the same way, but I can't.

    I created a view that returns data in this format:

    Dimension 1 < tab > axis 2 < tab > member... Member of dimension 5 < tab > measure 1 < tab > 2 < tab > measure 3

    I designed a new rule, indicating for each column in the dimension; and for each measure which specific member of dimension of accounts must be used. I have check and everything is ok, but when I try to load data, it does not work and tells me error:

    + "Data value [3.5] met before that all the selected Dimensions, [1] Records duly filled.
    + Essbase error unexpected 1003007 "+"

    If I get the names of the members with quotes (because they contain spaces, and it is perhaps the reason for the previous error, although the rule analysis correctly) with the SQL statement, when Essbase import, it deletes these quotes. I must use another symbol, and as a rule change this another symbol quotes. Is this normal? I know that this issue when importing formulas, but not here.

    Why in 'Dimension building' I don't have this problem with quotes?

    And when changing the symbols of quotes, this error occurs:

    + "Member x not found in the database" +. " But I check the Member and there are in general terms. What's wrong with that? »


    Thanks in advance

    Concerning

    Javier

    Published by: Javi M on 26-mar-2011 05:52

    Yes, the SQL files and data (of all kinds) are supported by more than one column of data. As you noted, you just point to the Member that represents the column.

    That said, I bet that if you look at your view/table and load the rule against your outline, I bet you find a dimension be mismapped, for example, you think that this column 4 points to the scenario, but you really repointe it produces and which purported to be the column 1, or you missed a dimension. Happens to me all the time.

    Kind regards

    Cameron Lackpour

  • DVD drive not recognized on laptop with Vista

    on inserting a dvd into the laptop, it does not start automatically, click on my computer, no sign of drive D.

    Hello

    Step 1: Please do all the same underneath if you did some before as is often total
    a process that solves the problem.

    Try this - Panel - Device Manager - CD/DVD - double click on the device - driver tab.
    Click on update drivers (this will probably do nothing) - RIGHT click ON the drive - uninstall.
    RESTART this will refresh the default driver stack. Even if the reader does not appear to continue
    below.

    Then, work your way through these - don't forget the drive might be bad, could be a coward
    cable or slight corrosion on the contacts (usually for a laptop) and other issues.

    Your CD or DVD drive is missing or is not recognized by Windows or other programs
    http://support.microsoft.com/kb/314060 - a Mr Fixit

    Try this fix manually if the Fixit 314060 does not work
    http://www.pchell.com/hardware/cd_drive_error_code_39.shtml

    Your CD or DVD drive is missing or is not recognized by Windows or other programs-
    a Mr Fixit
    http://support.Microsoft.com/kb/982116

    The CD drive or the DVD drive does not work as expected on a computer that you upgraded to
    for Windows Vista
    http://support.Microsoft.com/kb/929461

    When you insert a CD or a DVD, Windows Vista may not recognize the disc
    http://support.Microsoft.com/kb/939052

    Your CD or DVD drive cannot read or write media - A Mr Fixit
    http://support.Microsoft.com/GP/cd_dvd_drive_problems

    CD/DVD drive does not appear in Windows Vista, or you receive this error in Windows
    Vista installation after booting from the DVD (AHCI)
    http://support.Microsoft.com/kb/952951
    Drive CD - R or CD - RW Drive is not recognized as a recordable device
    http://support.Microsoft.com/kb/316529/

    Hardware devices not detected or not working - A Mr Fixit
    http://support.Microsoft.com/GP/hardware_device_problems

    Another possibility is that the cables are loose. Remove ALL power, then make sure that the cables in both
    ends. Remove and replace, do not just tight. For laptops, you can often clean power and
    contacts data with a pencil eraser.

    Some DVD players do not use the Windows default drivers so check with the manufacturer of system and
    manufacturer of device to see if there is a firmware or drivers for your drive if necessary.

    ===============================

    Step 2: You have disc problems as the CD/DVD is actually 4 discs in 1 case (CD & DVD
    Burn and CD and DVD read). So it is not unusual for 1 or 2 operational so that other parts
    do it right.

    Did you follow the Troubleshooting Guide for the reader who still does not work? There are
    the entries in registry that the troubleshooter does not solve and those who "might" be the cause.

    Check with your Maker system and a device for the two possible firmware updates and
    the correct registry entries for your car.

    Here are the keys that I of course are those in question - for the subkeys of the CD/DVD drive
    as there will be other subkeys in these keys. Do not forget to ask specific keys involved as well as
    the parameters.

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\IDE

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Hardware Profiles\0001\System\CurrentControlSet\Enum\IDE

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\ {4D36E965-E325-11CE-BFC1-08002BE10318}

    -----------------------------------------------------------------------

    You can probably find more info here and maybe even the exact registry for your CD/DVD settings
    drive from someone with the same model.

    Forums - a lot of expert real help
    http://Club.myce.com/

    CD/DVD units
    http://www.myce.com/storage/

    Use DevManView to locate the CD/DVD in the registry (be careful and do a prior Restore Point)
    nothing change) - find the DevManView device and then make a right click on it free in RegEdit.

    DevManView - free - an alternative to the standard Windows Device Manager, which displays all the
    devices and their properties in flat table, instead of the tree viewer
    http://www.NirSoft.NET/utils/device_manager_view.html

    I hope this helps.

    Rob Brown - MS MVP - Windows Desktop Experience: Bike - Mark Twain said it right.

  • Loading data with the size of the attribute.

    I have a currency attribute dimension asociated to dimension of entities and I would download data using the dimension of the associated attribute. I have a file with a column with the name of the entity and also a column with the name of the attribute. Could someone tell me how to set the column attribute of the rule of load?

    Published by: user5170363 on March 22, 2012 12:55

    I guess that, dimensions of attribute are not County while you load data... Data file always have the standard dimension members...

    Thus, you can filter your features according to your attribute or load only on these entities...

    -----
    Vivek jerbi

  • Error loading data with a rule in 11.1.2.1 file loading

    When I do the dim the Parent child build and alias will not load?

    Rule reading information SQL for the database [DP]
    Rule of reading of the purpose of the database rule [DP]
    Active parallel loading: [1] block to prepare the discussions, block [1] write discussions.
    DATAERRORLIMIT reached [1000]. Rejected records will be is more connected
    No value data modified by this data file loading
    Data load time for [Accounts01.txt] with [ACCOUNT.rul]: [0.512] seconds
    There were errors, look in C:\Oracle\Middleware\EPMSystem11R1\products\Essbase\eas\client\dataload.err
    Completed import data ['RPIWORK'.'] [DP ']
    Out of the prepared columns: [0]

    Outline = measurement Demension

    Measure
    Balance sheet
    Profit & loss

    Data file

    is a SQL query
    to Excel and save it as a text (delimited by tabs)

    Account.txt

    Parent | Child | Alias
    Total assets of the balance sheet 10000
    Total liabilities of the balance sheet 20000
    Balance Sheet Total 30000 of the owner
    Profit & loss 40000 recipes
    Profit & loss 50000 cost of goods sold
    Profits & losses 60000 S.G./A.
    Profit & loss 70000 other operating income
    Profit & loss 80000 other expenses
    Profit & loss 85000 interest income/expenses
    Profit & loss 90000 taxes
    Profit & loss 99000 capitalized Contra
    10000 10100 short-term assets
    10000-14000 «wood, forest and roads land»
    10000 17000 "goods, materials and equipment.
    10000 to 19000 active other long-term
    10000 19750 deferred tax assets
    20000 20001 short-term liabilities
    20000 21200 other Long term liabilities
    20000-22000 timber contracts
    20000 25100 long-term debt
    20000-26000 deferred tax liability
    30000 Equity subsidiary 30001
    30000 30250 voting common shares
    30000 30350 according to Common Stock
    30000 30450 capital paid in additional
    30000 30550 retained earnings
    30000 30610 other comprehensive income items
    30000 30675 tax distribution to Shareholde
    40000 40055 wholesales
    40000 41500 chips recipes
    40000 43000 power sales
    40000 nursery 45000 income
    40000 46000 transfer logs
    40000 47000 Intraco sales
    40000-49000 sale deduction
    50000 Labor 51000
    50000 52000 raw
    50000 rental 52800
    50000 53000 operating expenses
    50000 53900 forestry supplies
    50000 capitalized 53999 Contra-forestry
    50000 maintenance 54000
    50000 55000 fuels & lubricants
    50000-56000 utilities
    50000 57000 cost of direct registration
    50000 57500 personalized services
    50000 impoverishment 57700
    50000 58000 cost allocations of goods sold
    fixed cost 50000 59000
    50000 59510 changes in inventories
    60000 60100 salaries
    60000 60300 maintenance of PC hardware
    60000 60400 other G & A
    61000 60000 licenses/fees/charges
    60000 61400 benefits not
    60000 61550 furniture/fixtures
    60000 legal 61750
    60000 62000 fresh office
    60000 62500 professional services
    60000 63000 activities pre & Post jobs
    60000 63200 telecommunication costs
    60000 63550 employee activities
    60000 63800 sales & Promotions
    60000 63900 banking questions
    60000 64000 Admin depreciation
    60000 64500 insurance and property taxes
    60000 65000 allowances S G & A
    60000 66000 outside management
    70000 70100 rental income
    70000 disposals of fixed assets 70200
    70000 70400 Misc income
    80000 80200 factory inactive
    85000 85001 interest expense
    85000 85200 interest income
    90000-90100 income tax charges

    error file

    ------20000 not found in the database members
    20000 25100 long-term debt

    ------20000 not found in the database members
    20000-26000 deferred tax liability

    ------Member 30000 not found in the database
    30000 Equity subsidiary 30001

    ------Member 30000 not found in the database
    30000 30250 voting common shares

    ------Member 30000 not found in the database
    30000 30350 according to Common Stock

    ------Member 30000 not found in the database
    30000 30450 capital paid in additional

    ------Member 30000 not found in the database
    30000 30550 retained earnings

    ------Member 30000 not found in the database
    30000 30610 other comprehensive income items

    ------Member 30000 not found in the database
    30000 30675 tax distribution to Shareholde

    ------Member 40000 not found in the database
    40000 40055 wholesales

    ------Member 40000 not found in the database
    40000 41500 chips recipes

    ------Member 40000 not found in the database
    40000 43000 power sales

    ------Member 40000 not found in the database
    40000 nursery 45000 income

    ------Member 40000 not found in the database
    40000 46000 transfer logs

    ------Member 40000 not found in the database
    40000 47000 Intraco sales

    ------Member 40000 not found in the database
    40000-49000 sale deduction

    ------Member 50000 not found in the database
    50000 Labor 51000

    ------Member 50000 not found in the database
    50000 52000 raw

    ------Member 50000 not found in the database
    50000 rental 52800

    ------Member 50000 not found in the database
    50000 53000 operating expenses

    ------Member 50000 not found in the database
    50000 53900 forestry supplies

    ------Member 50000 not found in the database
    50000 capitalized 53999 Contra-forestry

    ------Member 50000 not found in the database
    50000 maintenance 54000

    ------Member 50000 not found in the database
    50000 55000 fuels & lubricants

    ------Member 50000 not found in the database
    50000-56000 utilities

    ------Member 50000 not found in the database
    50000 57000 cost of direct registration

    ------Member 50000 not found in the database
    50000 57500 personalized services

    ------Member 50000 not found in the database
    50000 impoverishment 57700

    ------Member 50000 not found in the database
    50000 58000 cost allocations of goods sold

    ------Member 50000 not found in the database
    fixed cost 50000 59000

    ------Member 50000 not found in the database
    50000 59510 changes in inventories

    ------Member 60000 not found in the database
    60000 60100 salaries

    ------Member 60000 not found in the database
    60000 60300 maintenance of PC hardware

    ------Member 60000 not found in the database
    60000 60400 other G & A

    ------Member 60000 not found in the database
    61000 60000 licenses/fees/charges

    ------Member 60000 not found in the database
    60000 61400 benefits not

    ------Member 60000 not found in the database
    60000 61550 furniture/fixtures

    ------Member 60000 not found in the database
    60000 legal 61750

    ------Member 60000 not found in the database
    60000 62000 fresh office

    ------Member 60000 not found in the database
    60000 62500 professional services

    ------Member 60000 not found in the database
    60000 63000 activities pre & Post jobs

    ------Member 60000 not found in the database
    60000 63200 telecommunication costs

    ------Member 60000 not found in the database
    60000 63550 employee activities

    ------Member 60000 not found in the database
    60000 63800 sales & Promotions

    ------Member 60000 not found in the database
    60000 63900 banking questions

    ------Member 60000 not found in the database
    60000 64000 Admin depreciation

    ------Member 60000 not found in the database
    60000 64500 insurance and property taxes

    ------Member 60000 not found in the database
    60000 65000 allowances S G & A

    ------Member 60000 not found in the database
    60000 66000 outside management

    ------Member 70000 not found in the database
    70000 70100 rental income

    ------Member 70000 not found in the database
    70000 disposals of fixed assets 70200

    ------Member 70000 not found in the database
    70000 70400 Misc income

    ------Member 80000 not found in the database
    80000 80200 factory inactive

    ------Member 85000 not found in the database
    85000 85001 interest expense

    ------Member 85000 not found in the database
    85000 85200 interest income

    ------Member 90000 N
    t database
    90000-90100 income tax charges


    That's how I build my loading rules file

    Create-> rules file
    File-> opendatafile->

    account01.txt

    Field-> Dimension Build Properties properties

    Dimension =
    Field 1 measure; Type = Parent
    Measurement of field 2; Type = child
    Measurement of field 2; Type = Alais

    Click the Dimension Build field
    Click on setting Dimension build - Parent\Child
    Ok

    Validate - rule is correct

    Save as account

    Load the data file = Acciount.txt
    Rule file = account

    Ok

    Published by: level following December 11, 2011 06:24

    Published by: level following December 11, 2011 06:25

    Published by: level following December 11, 2011 06:27

    The drop-down list in the EA when you right click on the database and select load data. I have a question, the Member that already in outline? If this isn't the case, you will have problems. You would have to add it or have a line in the file to load at the top, with something like account, balance sheet in it. Also in the State of charge have you changed the load parameters of dimension for the dimension of accounts to be parent/child for the dimension of accounts. Often enough, the people don't realize they have to double-click the dimension name to make sure it gets set as the dimension that gets changed.

    I'm sure that your question is she trying to make loading the data and not the generation dim, but it might just be the first problem

  • Device not recognized USB message with iPhone 3g

    Here's the story from the beginning, I hope that I have provide sufficient detail.

    I got my iPhone 3 G is replaced. Therefore, a new phone... I went on iTunes in the middle of the restoration... It gave an error message and put my phone in recovery mode. Since my computer gives me the message "USB DEVICE NOT RECOGNIZED" and appears as an "unknown device" in Bus USB controller in Device Manager.

    I went to apple and they finished the restoration... I plugged the phone on other computers... It is therefore not the phone.

    Still nothing pops up... It keeps giving me "USB DEVICE NOT RECOGNIZED" I have uninstalled iTunes the right way... as Apple people walking through and reinstalled... the Apple Mobile Device is started.

    I still get nothing... everything is... newly installed... Windows doesn't recognize just... that it doesn't show up as a camera... and it does not even charge my phone.

    I tried different ports... and I get the same message... my camera and my sisters iPod shuffle connect correctly.

    I really need help! I don't know what else to do... I need to work on this computer. It's a Toshiba Satellite Windows Xp SP3

    I just went through two weeks of tampering with my 'old' computer trying to recognize my new 4370dn Canon multifunction printer after installing Windows 7.  I tried to reinstall Windows XP, uninstall the USB ports and hubs in Device Manager, update the printer drivers and several combinations of these elements.  In my case the ports would recognize external hard drives and flash drives, but my printer would come as a device not recognized.  Finally, what worked for me was to uninstall all the ports/USB hubs listed in Device Manager (they get automatically reinstalled with a soft reboot of the computer) again, download a driver from the Intel website (http://downloadcenter.intel.com/confirm.aspx?httpDown=http://downloadmirror.intel.com/16023/a08/infinst_autol.exe&agr=&ProductID=&DwnldId=16023&strOSs=&OSFullName=&lang=eng) chipset installation utility and restart the computer.  When I plugged the USB cable from the printer, the normal process of new device was launched.
  • Windows media player is not recognized loaded CDs

    Media Player does not recognize the CD loading.

    Perhaps the following links would offer a few ideas:

    (982116) your CD or DVD drive is missing
    or is not recognized by Windows or other programs
    http://support.Microsoft.com/kb/982116
    (Windows XP / Windows Vista / Windows 7)

    Your CD or DVD drive cannot read or write media
    http://support.Microsoft.com/GP/cd_dvd_drive_problems

  • USB not recognized device error with the Logitech Wireless Mouse

    Greetings, Im having trouble getting my recognized usb wireless receiver. Worked fine on Vista premium edition... recently updgraded to windows 7 do not work now? I tried Device Manager to scan for hardware changes... no luck. I tried the Drivers but logitech claims it is compatible with windows 7 and you don't need all drivers... would appreciate any help!

    Thank you
    Stem

    I also had this problem, but finally found a solution. You need to reset the motherboard. It is more than a simple reset of the computer as the motherboard continues to feed into "stop".  You must turn off the system and unplug a few minuets.  In the case of my laptop, I also removed the dough for good measure.  Then I turned it back and the mouse worked without trouble or the same recognition that there had never been a problem.

    Credit when it is earned, I found the solution here http://www.online-tech-tips.com/computer-tips/usb-device-not-recognized/

  • "Cannot complete order because the extension could not be loaded." with the sample CEP5

    Hello

    I have trouble with my extension porting to CEP5. I get the error message "Cannot finish order because the extension could not be loaded." when I open the Panel.

    Is it possible to get more information about what happened and why? My post was properly signed zxp and managed Extension installed without problem.

    Also, to debug the problem, I tried to open the Test HTML CEP Extension - https://github.com/Adobe-CEP/Samples/tree/master/CEP_HTML_Test_Extension_5.0

    I copied on '~/Library/Application Support/Adobe/CEP/extensions/com.adobe.CEPHTMLTEST ", created .debug inside (https://gist.github.com/m6k/39a49786b7a85a9e312b), empty the file inside Photoshop CC 2014.app .debug (to remove the verification of the signature). When I open Photoshop CC 2014, I see test listed in menu extension panels, but when I try to open them, I also get the error "cannot complete order because the extension could not be loaded.".


    No reference to what I'm doing wrong and what I can do to debug this problem?


    Jan

    Please read this: Adobe Extension Builder and Creative Cloud 2014

  • Sony RX100 II not recognized by LR with DNG 8.2

    Hello. I just bought a Sony RX100 II. I have LR 4.4 and downloaded and installed DNG Converter 8.2.0.94.  This version supports the Sony RX100 II.   I checked.

    4.4 LR will not open the Sony. ARW files. In the import window, it displays the message "Preview not available for this file" on every file. When he imported from the States in the import results window "the following files have been not recognized by management of raw in Lightroom.

    I have run the DNG Converter se application and used to directly open and convert these Sony RX100 II. ARW in DNG files. I then imported the DNG files in LR, and they opened the good, which is what you expect.

    So my problem is that LR 4.4 with DNG 8.2 will not open these files or impoirt them, even if the DNG application not this agreement.

    It almost seems that LR does not use the latest version of DNG that I downloaded. He is currently in the application directory on my iMac.

    If anyone has any ideas I would be very appreciate.

    concerning

    Steve

    iMac 3.4 GHz, 27 in., Intel Core i7, 32 GB of RAM, OS10.8.5.

    Steve Bruhn wrote:

    "So, my problem is that LR 4.4 with DNG 8.2 will not open these files or impoirt them, even if the DNG application looks great."

    4.4 LR cannot read the Sony DSC-RX100 II RAW files, but you can use the v8.2 DNG Converter to convert these files into DNG files supported which can then be imported into Lightroom.

    The conversion to DNG is a separate process carried out by the DNG Converter and it cannot be done within Lightroom. If you want direct support for DSC-RX100 II of RAW files, you will need to switch to Lightroom 5.2

    The complete and updated camera raw support is detailed at: http://www.adobe.com/products/photoshop/extend.html

  • Problem loading data with SmartView

    Hello

    When I try to load the data with Smart View (Lock & send), I received this message:

    "+ OLAP_error (1020011): Maximum number of lines [5000] exceeded +".

    Is there a limit of lines to load in Smart mode?

    Thank you.

    Virgil.

    Yes, there is a limit, but it can be extended.

    See: Maximum lines exceed of SmartView

    Kind regards

    Cameron Lackpour

  • Error in loading data with SQLLDR in Oracle 10 G

    Hello

    Can one suggest what the problem is in the slot mentioned control file used for loading data via SQL * LOADER

    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    DOWNLOAD THE DATA
    INFILE 'D:\test\temt.txt '.
    BADFILE "test.bad."
    DISCARDFILE 'test.dsc '.

    IN THE TABLE 'TEST '.
    INSERT
    (INTEGER SRNO (7))
    PROD_ID INTEGER (10),
    PROMO_ID INTEGER (10),
    CHANNEL_ID INTEGER (10),
    UNIT_COST INTEGER (10),
    UNIT_PRICE INTEGER (10)
    )

    -------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    I'm trying to load data in the schema SCOTT scott user.

    Why make such a mistake, please see the attached log file.

    --------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    SQL * Loader: Release 10.2.0.1.0 - Production on Fri Mar 20 14:43:35 2009

    Copyright (c) 1982, 2005, Oracle. All rights reserved.

    Control file: D:\test\temt.ctl
    Data file: D:\test\temt.txt
    Bad leadership: test.bad
    Delete the file: test.dsc
    (Allow all releases)

    Number of loading: ALL
    Number of jump: 0
    Authorized errors: 50
    Link table: 64 lines, maximum of 256000 bytes
    Continuation of the debate: none is specified
    Path used: classics

    Table 'TEST', loaded from every logical record.
    Insert the option in effect for this table: INSERT

    Column Position Len term Encl. Datatype name
    ------------------------------ ---------- ----- ---- ---- ---------------------
    SRNO FIRST 7 INTEGER
    PROD_ID INTEGER 10 NEXT
    PROMO_ID INTEGER 10 NEXT
    CHANNEL_ID INTEGER 10 NEXT
    UNIT_COST INTEGER 10 NEXT
    UNIT_PRICE INTEGER 10 NEXT

    Sheet 1: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Sheet 2: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Sheet 3: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Folder 4: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Sheet 5: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Sheet 6: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Sheet 7: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Sheet 8: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    File 9: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Case 10: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Factsheet 11: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Sheet 12: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    File 13: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Fact sheet 14: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Fact sheet 15: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Sheet 16: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    File 17: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Sheet 18: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    File 19: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Sheet 20: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Sheet 21: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Account 22: rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Sheet 23: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Record number of 24: rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Sheet 25: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Fact sheet 26: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Fact sheet 27: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Record 28: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Record 29: rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Record 30: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Record of 31: rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    • Statement 32: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Record 33: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Page 34: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Record 35: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Record 36: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Record 37: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Record 38: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Sheet 39: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Record 40: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Sheet 41: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Page 42: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Record 43: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Sheet 44: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Record 45: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    • Statement 46: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Record 47: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Record 48: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Record 49: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Page 50: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested

    Record 51: Rejected - error on the table 'TEST '.
    ORA-01460: dead letter or unreasonable conversion requested


    NUMBER of MAXIMUM ERRORS EXCEEDED - above the statistics reflect partial performance.

    Table 'TEST'
    0 rows successfully loaded.
    51 lines not filled due to data errors.
    0 rows not loading because all WHEN clauses were failed.
    0 rows not populated because all fields are null.


    The space allocated to bind table: 3648 bytes (64 lines)
    Bytes of read buffer: 1048576

    Total logical records ignored: 0
    Total logical records read: 64
    Total rejected logical records: 51
    Total logical records ignored: 0

    Run started on Fri Mar 20 14:43:35 2009
    Run finished Fri Mar 20 14:43:43 2009

    Time was: 00:00:07.98
    Time processor was: 00:00:00.28



    --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Here is the method to use SQLLDR and table details


    --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    SQL > desc test
    Name Null? Type
    ----------------------- -------- ----------------
    SRNO NUMBER (7)
    PROD_ID NUMBER (10)
    PROMO_ID NUMBER (10)
    CHANNEL_ID NUMBER (10)
    UNIT_COST NUMBER (10)
    UNIT_PRICE NUMBER (10)




    Use sqlldr process is:

    cmd PROMT,

    d:\ > sqlldr scott/tiger

    Control = D:\test\temt.ctl

    SQL * Loader: Release 10.2.0.1.0 - Production on Fri Mar 20 15:55:50 2009

    Copyright (c) 1982, 2005, Oracle. All rights reserved.

    Commit the point reached - the number of logical records 64

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    I even tried a few examples,

    -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Which of the below control record make sense,

    -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    -1

    DOWNLOAD THE DATA
    INFILE 'D:\test\temt.txt '.
    BADFILE "test.bad."
    DISCARDFILE 'test.dsc '.

    IN THE TABLE 'TEST '.
    INSERT
    COMPLETED FIELD BY (EN)

    (INTEGER SRNO (7))
    PROD_ID INTEGER (10),
    PROMO_ID INTEGER (10),
    CHANNEL_ID INTEGER (10),
    UNIT_COST INTEGER (10),
    UNIT_PRICE INTEGER (10)
    )





    -2

    DOWNLOAD THE DATA
    INFILE 'D:\test\temt.txt '.
    BADFILE "test.bad."
    DISCARDFILE 'test.dsc '.

    IN THE TABLE 'TEST '.
    INSERT
    DOMAIN TERMINATED BY, eventually surrounded "" "

    (INTEGER SRNO (7))
    PROD_ID INTEGER (10),
    PROMO_ID INTEGER (10),
    CHANNEL_ID INTEGER (10),
    UNIT_COST INTEGER (10),
    UNIT_PRICE INTEGER (10)
    )




    For the code - 1 I get below mentioned error... *.

    D:\ > sqlldr scott/tiger

    Control = D:\test\temt.ctl

    SQL * Loader: Release 10.2.0.1.0 - Production on Fri Mar 20 16:36 2009

    Copyright (c) 1982, 2005, Oracle. All rights reserved.

    SQL * Loader-350: error of syntax on line 8.
    Expecting "(", found "FIELD".
    COMPLETED FIELD BY (EN)
    ^




    * And for the code - 2 I get the error below *.

    D:\ > sqlldr scott/tiger

    Control = D:\test\temt.ctl

    SQL * Loader: Release 10.2.0.1.0 - Production on Fri Mar 20 16:39:22 2009

    Copyright (c) 1982, 2005, Oracle. All rights reserved.

    SQL * Loader-350: error of syntax on line 8.
    Expecting "(", found "FIELD".
    DOMAIN TERMINATED BY, eventually surrounded "" "
    ^
    ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Hello

    This will help for you

    LOAD DATA
    INFILE 'D:\test\temt.txt'
    BADFILE 'test.bad'
    DISCARDFILE 'test.dsc'
    INSERT
    INTO TABLE "TEST"
    FIELDS TERMINATED BY ','
    (SRNO INTEGER EXTERNAL ,
    PROD_ID INTEGER EXTERNAL,
    PROMO_ID INTEGER EXTERNAL,
    CHANNEL_ID INTEGER EXTERNAL,
    UNIT_COST INTEGER EXTERNAL,
    UNIT_PRICE INTEGER EXTERNAL
    )
    

    Thank you

  • HDR HC3 be not recognized by computer with XP

    My computer does not recognize my camera which is a sony HDR HC3

    If the USB connection is not recognized, try the following steps:

    • Make sure a Memory Stick is inserted and recognized correctly by the camcorder;

    • Slide the MODE switch repeatedly until the PLAY/EDIT is on;

    • Value [USB SELECT] [Memory Stick];

    • Disconnect other devices to your computer;

    • Try a different USB port. If you are using a desktop computer, try the USB ports at the back of the CPU Tower.

    • Try a different USB cable, if possible;

    • Press the RESET button using a pointed object. The RESET button is located on the front of the lid of the cassette compartment.

    If my post answered your question, please mark it as "accept as a Solution.

  • Loading data with sql loader

    Hi Experts,

    I have a file in the following format. I have to insert the data from these files in a table. Can I use SQL Loader to load these files.

    My question is that I need to schedule the download of these files. Can I integrate sql loader in a procedure?
    Agent Id|Agent Type|Create Date|Termination CDC|Activation CDC|Deactivation CDC|Agent IdX|Agent Status|Status Date|Status Reason Code|Update CDC|Update Serial|Update User|New Owner Agent Id|Previous Owner Agent Id|Agent Name|Primary Address1|Primary Address2|Primary Address3|Secondary Address1|Secondary Address2|Secondary Address3| Primary City|Primary State|Primary Zip|Primary Zip Suffix|Primary Country|Secondary City|Secondary State|Secondary Zip|Secondary Zip Suffix|Secondary Country|Phone Number|Fax number|Mobile Number|Business Type|Field Rep|Bill to Chain Id|Mon Open Time|Mon Close Time|Tue Open Time|Tue Close Time|Wed Open Time|Wed Close Time|Thu Open Time|Thu Close Time|Fri Open Time|Fri Close Time|Sat Open Time|Sat Close Time|Sun Open Time|Sun Close Time|Zone Id|Line Charge Class|Chain Id|Chain Code| Primary Contact  Name| Primary Contact Title| Primary Contact Phone|Secondary Contact Name|Secondary Contact Title|Secondary Contact Phone|Tertiary contact Name|Tertiary Contact Title|Tertiary Contact Phone| Bank Id| Bank Account Id| bank Account Type| Bank Account Date| EFT Flag| Fund Limit|Invoicable|TaxCode|Tax Id|Sales Tax|Service Charge|Instant Cashing Type|Instant Telsel Rep| Instant Number of Bins| Instant Number Itvms| InstantCredit Limit|Auto Reorder| Instant Terminal Reorder| Instant Telsel Reorder| Instant Teleset Active CDC| Instant Initial Distribution|Auto Telsel Schedule| Instant Auto Settle| Instant Call Day| Instant Call Week| Instant Call Cycle| Instant Order Restriction| Instant Delivery Flag| Instant Account Type| Instant Settle Class| Region|County|Territory|Route|Chain Statement|Master Agent Id| Minority Owned| Tax Name| State Tax Id|Mailing Name| Bank Account Name| DSR
    0|1|0|0|0|0|0|1|0|0|302|0|0|0|0|||||||||||||||||||||0|0|0|||||||||||||||0|0|0|||||||||||||0|-2145916800|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0||0|0|0|||||
    1|1|1256213087|0|-39081|-39081|1|2|1256213087|999|302|0|0|0|0|Pseudo Outlet||||||||MU|||MU||MU|||MU||||0|0|1|06:00|23:59|06:00|23:59|06:00|23:59|06:00|23:59|06:00|23:59|06:00|23:59|06:00|23:59|0|0|0|||||||||||||
    {code)
    
    Edited by: Kevin CK on 02-Feb-2010 03:28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

    Here you go...

    drop table agent_dump_csv_temp
    /
    
    create table agent_dump_csv_temp
      (Agent_Id                   NUMBER
      ,Agent_Type                 NUMBER
      ,Create_Date                NUMBER
      ,Termination_CDC            NUMBER
      ,Activation_CDC             NUMBER
      ,Deactivation_CDC           NUMBER
      ,Agent_IdX                  NUMBER
      ,Agent_Status               NUMBER
      ,Status_Date                NUMBER
      ,Status_Reason_Code         NUMBER
      ,Update_CDC                 NUMBER
      ,Update_Serial              NUMBER
      ,Update_User                NUMBER
      ,New_Owner_Agent_Id         NUMBER
      ,Previous_Owner_Agent_Id    NUMBER
      ,Agent_Name                 VARCHAR2(50)
      ,Primary_Address1           VARCHAR2(50)
      ,Primary_Address2           VARCHAR2(50)
      ,Primary_Address3           VARCHAR2(50)
      ,Secondary_Address1         VARCHAR2(50)
      ,Secondary_Address2         VARCHAR2(50)
      ,Secondary_Address3         VARCHAR2(50)
      ,Primary_City               VARCHAR2(50)
      ,Primary_State              VARCHAR2(50)
      ,Primary_Zip                VARCHAR2(50)
      ,Primary_Zip_Suffix         VARCHAR2(50)
      ,Primary_Country            VARCHAR2(50)
      ,Secondary_City             VARCHAR2(50)
      ,Secondary_State            VARCHAR2(50)
      ,Secondary_Zip              VARCHAR2(50)
      ,Secondary_Zip_Suffix       VARCHAR2(50)
      ,Secondary_Country          VARCHAR2(50)
      ,Phone_Number               VARCHAR2(50)
      ,Fax_number                 VARCHAR2(50)
      ,Mobile_Number              VARCHAR2(50)
      ,Business_Type              NUMBER
      ,Field_Rep                  NUMBER
      ,Bill_to_Chain_Id           NUMBER
      ,Mon_Open_Time              VARCHAR2(5)
      ,Mon_Close_Time             VARCHAR2(5)
      ,Tue_Open_Time              VARCHAR2(5)
      ,Tue_Close_Time             VARCHAR2(5)
      ,Wed_Open_Time              VARCHAR2(5)
      ,Wed_Close_Time             VARCHAR2(5)
      ,Thu_Open_Time              VARCHAR2(5)
      ,Thu_Close_Time             VARCHAR2(5)
      ,Fri_Open_Time              VARCHAR2(5)
      ,Fri_Close_Time             VARCHAR2(5)
      ,Sat_Open_Time              VARCHAR2(5)
      ,Sat_Close_Time             VARCHAR2(5)
      ,Sun_Open_Time              VARCHAR2(5)
      ,Sun_Close_Time             VARCHAR2(5)
      ,Zone_Id                    NUMBER
      ,Line_Charge_Class          NUMBER
      ,Chain_Id                   NUMBER
      ,Chain_Code                 NUMBER
      ,Primary_Contact_Name       VARCHAR2(50)
      ,Primary_Contact_Title      VARCHAR2(50)
      ,Primary_Contact_Phone      VARCHAR2(50)
      ,Secondary_Contact_Name     VARCHAR2(50)
      ,Secondary_Contact_Title    VARCHAR2(50)
      ,Secondary_Contact_Phone    VARCHAR2(50)
      ,Tertiary_contact_Name      VARCHAR2(50)
      ,Tertiary_Contact_Title     VARCHAR2(50)
      ,Tertiary_Contact_Phone     VARCHAR2(50)
      ,Bank_Id                    NUMBER
      ,Bank_Account_Id            NUMBER
      ,Bank_Account_Type          NUMBER
      ,Bank_Account_Date          NUMBER
      ,EFT_Flag                   NUMBER
      ,Fund_Limit                 NUMBER
      ,Invoicable                 NUMBER
      ,TaxCode                    NUMBER
      ,Tax_Id                     NUMBER
      ,Sales_Tax                  NUMBER
      ,Service_Charge             NUMBER
      ,Instant_Cashing_Type       NUMBER
      ,Instant_Telsel_Rep         NUMBER
      ,Instant_Number_of_Bins     NUMBER
      ,Instant_Number_Itvms       NUMBER
      ,InstantCredit_Limit        NUMBER
      ,Auto_Reorder               NUMBER
      ,Instant_Terminal_Reorder   NUMBER
      ,Instant_Telsel_Reorder     NUMBER
      ,Instant_Teleset_Active_CDC NUMBER
      ,Instant_Initial_Distribution NUMBER
      ,Auto_Telsel_Schedule       NUMBER
      ,Instant_Auto_Settle        NUMBER
      ,Instant_Call_Day           NUMBER
      ,Instant_Call_Week          NUMBER
      ,Instant_Call_Cycle         NUMBER
      ,Instant_Order_Restriction  NUMBER
      ,Instant_Delivery_Flag      NUMBER
      ,Instant_Account_Type       NUMBER
      ,Instant_Settle_Class       NUMBER
      ,Region                     NUMBER
      ,County                     NUMBER
      ,Territory_x                NUMBER
      ,Route                      NUMBER
      ,Chain_Statement            NUMBER
      ,Master_Agent_Id            NUMBER
      ,Minority_Owned             NUMBER
      ,Tax_Name                   VARCHAR2(50)
      ,State_Tax_Id               NUMBER
      ,Mailing_Name               VARCHAR2(50)
      ,Bank_Account_Name          VARCHAR2(50)
      ,DSR                        NUMBER
      )
      ORGANIZATION EXTERNAL (
       TYPE oracle_loader
        DEFAULT DIRECTORY TEST_DIR
        ACCESS PARAMETERS (
          RECORDS DELIMITED BY NEWLINE
          SKIP 1
          BADFILE 'test.bad'
          DISCARDFILE 'test.dis'
          LOGFILE 'test.log'
          FIELDS TERMINATED BY '|'
          MISSING FIELD VALUES ARE NULL
          REJECT ROWS WITH ALL NULL FIELDS
            (Agent_Id
            ,Agent_Type
            ,Create_Date
            ,Termination_CDC
            ,Activation_CDC
            ,Deactivation_CDC
            ,Agent_IdX
            ,Agent_Status
            ,Status_Date
            ,Status_Reason_Code
            ,Update_CDC
            ,Update_Serial
            ,Update_User
            ,New_Owner_Agent_Id
            ,Previous_Owner_Agent_Id
            ,Agent_Name
            ,Primary_Address1
            ,Primary_Address2
            ,Primary_Address3
            ,Secondary_Address1
            ,Secondary_Address2
            ,Secondary_Address3
            ,Primary_City
            ,Primary_State
            ,Primary_Zip
            ,Primary_Zip_Suffix
            ,Primary_Country
            ,Secondary_City
            ,Secondary_State
            ,Secondary_Zip
            ,Secondary_Zip_Suffix
            ,Secondary_Country
            ,Phone_Number
            ,Fax_number
            ,Mobile_Number
            ,Business_Type
            ,Field_Rep
            ,Bill_to_Chain_Id
            ,Mon_Open_Time
            ,Mon_Close_Time
            ,Tue_Open_Time
            ,Tue_Close_Time
            ,Wed_Open_Time
            ,Wed_Close_Time
            ,Thu_Open_Time
            ,Thu_Close_Time
            ,Fri_Open_Time
            ,Fri_Close_Time
            ,Sat_Open_Time
            ,Sat_Close_Time
            ,Sun_Open_Time
            ,Sun_Close_Time
            ,Zone_Id
            ,Line_Charge_Class
            ,Chain_Id
            ,Chain_Code
            ,Primary_Contact_Name
            ,Primary_Contact_Title
            ,Primary_Contact_Phone
            ,Secondary_Contact_Name
            ,Secondary_Contact_Title
            ,Secondary_Contact_Phone
            ,Tertiary_contact_Name
            ,Tertiary_Contact_Title
            ,Tertiary_Contact_Phone
            ,Bank_Id
            ,Bank_Account_Id
            ,Bank_Account_Type
            ,Bank_Account_Date
            ,EFT_Flag
            ,Fund_Limit
            ,Invoicable
            ,TaxCode
            ,Tax_Id
            ,Sales_Tax
            ,Service_Charge
            ,Instant_Cashing_Type
            ,Instant_Telsel_Rep
            ,Instant_Number_of_Bins
            ,Instant_Number_Itvms
            ,InstantCredit_Limit
            ,Auto_Reorder
            ,Instant_Terminal_Reorder
            ,Instant_Telsel_Reorder
            ,Instant_Teleset_Active_CDC
            ,Instant_Initial_Distribution
            ,Auto_Telsel_Schedule
            ,Instant_Auto_Settle
            ,Instant_Call_Day
            ,Instant_Call_Week
            ,Instant_Call_Cycle
            ,Instant_Order_Restriction
            ,Instant_Delivery_Flag
            ,Instant_Account_Type
            ,Instant_Settle_Class
            ,Region
            ,County
            ,Territory_x
            ,Route
            ,Chain_Statement
            ,Master_Agent_Id
            ,Minority_Owned
            ,Tax_Name
            ,State_Tax_Id
            ,Mailing_Name
            ,Bank_Account_Name
            ,DSR
          )
        )
        LOCATION ('test.txt')
      )
      PARALLEL
     REJECT LIMIT UNLIMITED
    /
    
    SQL> select * from agent_dump_csv_temp
      2  /
    
      AGENT_ID AGENT_TYPE CREATE_DATE TERMINATION_CDC ACTIVATION_CDC DEACTIVATION_CDC  AGENT_IDX AGENT_STATUS STATUS_DATE STATUS_REASON_CODE UPDATE_CDC UPDATE_SERIAL UPDATE_USER NEW_OWNER_AGENT_ID PREVIOUS_OWNER_AGENT_ID
    ---------- ---------- ----------- --------------- -------------- ---------------- ---------- ------------ ----------- ------------------ ---------- ------------- ----------- ------------------ -----------------------
    AGENT_NAME                                         PRIMARY_ADDRESS1                                   PRIMARY_ADDRESS2                                   PRIMARY_ADDRESS3
    -------------------------------------------------- -------------------------------------------------- -------------------------------------------------- --------------------------------------------------
    SECONDARY_ADDRESS1                                 SECONDARY_ADDRESS2                                 SECONDARY_ADDRESS3                                 PRIMARY_CITY
    -------------------------------------------------- -------------------------------------------------- -------------------------------------------------- --------------------------------------------------
    PRIMARY_STATE                                      PRIMARY_ZIP                                        PRIMARY_ZIP_SUFFIX                                 PRIMARY_COUNTRY
    -------------------------------------------------- -------------------------------------------------- -------------------------------------------------- --------------------------------------------------
    SECONDARY_CITY                                     SECONDARY_STATE                                    SECONDARY_ZIP                                      SECONDARY_ZIP_SUFFIX
    -------------------------------------------------- -------------------------------------------------- -------------------------------------------------- --------------------------------------------------
    SECONDARY_COUNTRY                                  PHONE_NUMBER                                       FAX_NUMBER                                         MOBILE_NUMBER                                      BUSINESS_TYPE  FIELD_REP BILL_TO_CHAIN_ID
    -------------------------------------------------- -------------------------------------------------- -------------------------------------------------- -------------------------------------------------- ------------- ---------- ----------------
    MON_O MON_C TUE_O TUE_C WED_O WED_C THU_O THU_C FRI_O FRI_C SAT_O SAT_C SUN_O SUN_C    ZONE_ID LINE_CHARGE_CLASS   CHAIN_ID CHAIN_CODE PRIMARY_CONTACT_NAME                               PRIMARY_CONTACT_TITLE
    ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ---------- ----------------- ---------- ---------- -------------------------------------------------- --------------------------------------------------
    PRIMARY_CONTACT_PHONE                              SECONDARY_CONTACT_NAME                             SECONDARY_CONTACT_TITLE                            SECONDARY_CONTACT_PHONE
    -------------------------------------------------- -------------------------------------------------- -------------------------------------------------- --------------------------------------------------
    TERTIARY_CONTACT_NAME                              TERTIARY_CONTACT_TITLE                             TERTIARY_CONTACT_PHONE                                BANK_ID BANK_ACCOUNT_ID BANK_ACCOUNT_TYPE BANK_ACCOUNT_DATE   EFT_FLAG FUND_LIMIT INVOICABLE
    -------------------------------------------------- -------------------------------------------------- -------------------------------------------------- ---------- --------------- ----------------- ----------------- ---------- ---------- ----------
       TAXCODE     TAX_ID  SALES_TAX SERVICE_CHARGE INSTANT_CASHING_TYPE INSTANT_TELSEL_REP INSTANT_NUMBER_OF_BINS INSTANT_NUMBER_ITVMS INSTANTCREDIT_LIMIT AUTO_REORDER INSTANT_TERMINAL_REORDER INSTANT_TELSEL_REORDER INSTANT_TELESET_ACTIVE_CDC
    ---------- ---------- ---------- -------------- -------------------- ------------------ ---------------------- -------------------- ------------------- ------------ ------------------------ ---------------------- --------------------------
    INSTANT_INITIAL_DISTRIBUTION AUTO_TELSEL_SCHEDULE INSTANT_AUTO_SETTLE INSTANT_CALL_DAY INSTANT_CALL_WEEK INSTANT_CALL_CYCLE INSTANT_ORDER_RESTRICTION INSTANT_DELIVERY_FLAG INSTANT_ACCOUNT_TYPE INSTANT_SETTLE_CLASS     REGION     COUNTY TERRITORY_X
    ---------------------------- -------------------- ------------------- ---------------- ----------------- ------------------ ------------------------- --------------------- -------------------- -------------------- ---------- ---------- -----------
         ROUTE CHAIN_STATEMENT MASTER_AGENT_ID MINORITY_OWNED TAX_NAME                                        STATE_TAX_ID MAILING_NAME                                          BANK_ACCOUNT_NAME                                 DSR
    ---------- --------------- --------------- -------------- -------------------------------------------------- ------------ -------------------------------------------------- -------------------------------------------------- ----------
             0          1           0               0              0                0          0            1       0                      0        302             0           0                  0                       0
    
                                                                                                                                                                                                                    0          0                0
                                                                                                 0                 0          0
    
                                                                                                                                                                                                0        -2.146E+09          0          0          0
             0                     0              0                    0                  0                      0                    0                   0            0                        0                      0                          0
                               0                    0                   0                1                 0          0                         0                     0                    0                    0          0          0           0
                             0               0              0
    
             1          1  1256213087               0         -39081           -39081          1            2  1256213087                999        302             0           0                  0                       0
    Pseudo Outlet
    
    MU                                                                                                                                               MU
                                                       MU
    MU                                                                                                                                                                                                       0         0                1
    06:00 23:59 06:00 23:59 06:00 23:59 06:00 23:59 06:00 23:59 06:00 23:59 06:00 23:59          0              0     0
    
                                                                                                                                                                                                1        -2.146E+09          1          0          1
             0                     0              0                    0                  0                      0                    0                   0            0                        0                      0                      -3287
                               0                    0                   0                1                 1          2                         0                     0                    0                    1          0        999           0
                             5               0              0
    
    SQL>
    

    He dislikes the identifier 'territory', so I renamed it to "territory_x" (I guess that's a reserved word).
    Your initial problem you had was your fields "SEPARATED"... instead of "TERMINATED" by. ;)

Maybe you are looking for

  • What Version of Windows this laptop has been?

    I have been asked to take a look at a cell phone friends, a C50D - A - 13 G, He sees in a store for him have downgraded to Windows 8 for Windows 7 when he bought it. Now that windows 10 came out he wanted to return to windows 8 and get free upgrade t

  • ProBook 6550 b: new Prob with drivers

    Hi just questions over to install Win7 on my laptop hp6550b, all this because the speakers conked... now the speakers work... and not much else notHere are the codes for 'yellow' Device Manager bits PCI simple Comm Contoller PCI\VEN_8086 & DEV_3B64 &

  • Anthony printer

    I still have a problem of my printer with a new router connection. My printer is a HP Photosmart B110 series. I don't know how to get the printer connected to the system. I was able to add the printer, but then get an error message to print the test

  • Hotmail issue

    Hotmail. We continue to see the same question when we aspire in that the server is down for maintenance. He recommends that we optimize our browser. We have optimized all 4 computers at home. I even went to three other locations (different ISP) and g

  • I use Vista SP2 and updates continuously fail to install. I now get error code 800719E4. Can anyone help?

    I got different error codes and followed the advice online for each of them. I renamed my temporary folder updated and deleted all temporary update files and folders as suggested advice. The problem is not yet solved. Updates install fine, but then o