Loading xml file into oracle table

Please guide as to how can xml file be loaded into corresponding oracle table.

check out this :
http://blogs.oracle.com/warehousebuilder/2007/09/leveraging_xdb.html
Cheers
Nawneet

Similar Messages

  • Loading XML file into DB Table

    Hi
    I m quite new to the loading XML file into database table.
    It will be great if anyone could guide me to through.
    Now,
    i have an XML file which has to be loaded into the DB table.
    what are the steps involved in doing this. How do i go from here ??
    your help is greatly appriciated ???
    Thank you so much!!
    -Shashi

    OK - Although you really should read the XMLDB FAQ on this forum, here is some sample code of ONE of the ways of doing it
    (there are multiple ways - and this is not the most simple one)
    Based on Oracle 11gR1
    -- sqlplus /nolog
    clear screen
    set termout on
    set feed on
    set lines 40
    set long 10000000
    set serveroutput on
    set lines 100
    set echo on
    connect / as sysdba
    col filename for a80
    col xml      for a80
    -- Create schema “OTN”
    drop user OTN cascade;
    purge dba_recyclebin;
    create user OTN identified by OTN;
    grant dba, xdbadmin to OTN;
    EXECUTE dbms_java.grant_permission( 'OTN', 'java.io.FilePermission','G:\OTN\xmlstore','read' );
    prompt pause
    pause
    clear screen
    -- Create directory
    connect OTN/OTN;
    show user
    drop directory OTN_USE_CASE;
    CREATE directory OTN_USE_CASE AS 'G:\OTN\xmlstore';
    SELECT extract((XMLTYPE(bfilename('OTN_USE_CASE','ABANDA-20030407215829881GMT.xml'),NLS_CHARSET_ID('AL32UTF8'))),'*') AS "XML"
    from   dual;
    prompt pause
    pause
    clear screen
    -- Directory Listing - Tom Kyte
    create global temporary table DIR_LIST
    ( filename varchar2(255) )
    on commit delete rows
    create or replace
      and compile java source named "DirList"
    as
    import java.io.*;
    import java.sql.*;
    public class DirList
    {public static void getList(String directory)
                       throws SQLException
    {   File path = new File( directory );
        String[] list = path.list();
        String element;
        for(int i = 0; i < list.length; i++)
        {   element = list;
    #sql { INSERT INTO DIR_LIST (FILENAME)
    VALUES (:element) };
    create or replace procedure get_dir_list( p_directory in varchar2 )
    as language java
    name 'DirList.getList( java.lang.String )';
    prompt pause
    pause
    clear screen
    -- The content of the global temporary table
    exec get_dir_list( 'G:\OTN\xmlstore' );
    select * from dir_list;
    -- "COMMIT" will clear / truncate the global temporary table...
    prompt pause
    pause
    clear screen
    -- Combined: Reading XML content from multiple XML files
    commit;
    exec get_dir_list( 'G:\OTN\xmlstore' );
    select * from dir_list where filename like '%.xml'
    and rownum <= 10;
    prompt pause
    pause
    clear screen
    select extract((XMLTYPE(bfilename('OTN_USE_CASE',dl.filename),NLS_CHARSET_ID('AL32UTF8'))),'*') AS "XML"
    from dir_list dl
    where dl.filename like '%.xml' and rownum <= 2;
    prompt pause
    pause
    clear screen
    -- If you can select it you can insert it...
    -- drop table OTN_xml_store purge;
    create table OTN_xml_store of xmltype
    xmltype store as binary xml
    commit;
    exec get_dir_list( 'G:\OTN\xmlstore' );
    set time on timing on
    insert into OTN_xml_store
    select XMLTYPE(bfilename('OTN_USE_CASE',dl.filename),NLS_CHARSET_ID('AL32UTF8')) AS "XML"
    from dir_list dl
    where dl.filename like '%.xml';
    set time off timing off
    commit;
    select count(*) from OTN_xml_store;
    prompt pause
    pause
    clear screen
    -- If you can select it you can create resources and files
    set time on timing on
    commit;
    exec get_dir_list( 'G:\OTN\xmlstore' );
    select count(*) from dir_list where filename like '%.xml';
    set serveroutput on size 10000
    DECLARE
    XMLdoc XMLType;
    res BOOLEAN;
    v_foldername varchar2(4000) := '/public/OTN/';
    cursor c1
    is
    select dl.filename FNAME
    , XMLTYPE(bfilename('OTN_USE_CASE',dl.filename),NLS_CHARSET_ID('AL32UTF8')) XMLCONTENT
    from dir_list dl
    where dl.filename like '%.xml'
    and rownum <= 100;
    BEGIN
    -- Create XDB repository Folder
    if (dbms_xdb.existsResource(v_foldername))
    then
    dbms_xdb.deleteResource(v_foldername,dbms_xdb.DELETE_RECURSIVE_FORCE);
    end if;
    res:=DBMS_XDB.createFolder(v_foldername);
    -- Create XML files in the XDB Repository
    for r1 in c1
    loop
    if (DBMS_XDB.CREATERESOURCE(v_foldername||r1.fname, r1.xmlcontent))
    then
    dbms_output.put_line(v_foldername||r1.fname);
    null;
    else
    dbms_output.put_line('Loop Exception :'||sqlerrm);
    end if;
    end loop;
    EXCEPTION WHEN OTHERS THEN
    dbms_output.put_line('Others Exception: '||sqlerrm);
    END;
    set time off timing off
    commit;
    prompt pause
    pause
    clear screen
    -- FTP and HTTP
    clear screen
    prompt
    prompt *** FTP - Demo ***
    prompt
    prompt pause
    pause
    host ftp
    -- open localhost 2100
    -- user OTN OTN
    -- cd public
    -- cd OTN
    -- ls
    -- bye
    clear screen
    prompt
    prompt *** Microsoft Internet Explorer - Demo ***
    prompt
    prompt pause
    pause
    host "C:\Program Files\Internet Explorer\IEXPLORE.EXE" http://OTN:OTN@localhost:8080/public/OTN/
    prompt pause
    pause
    -- Accessing the XDB Repository content via Resource View
    -- Selecting content from a resource via XBDUriType
    clear screen
    prompt set long 300
    set long 300
    prompt Relative Path - (path)
    SELECT path(1) as filename
    FROM RESOURCE_VIEW
    WHERE under_path(RES, '/public/OTN', 1) = 1
    and rownum <= 10
    prompt pause
    pause
    clear screen
    prompt Absolute Path - (any_path)
    select xdburitype(any_path).getClob() as xml
    FROM RESOURCE_VIEW
    WHERE under_path(RES, '/public/OTN', 1) = 1
    and rownum <= 1;
    prompt pause
    pause
    -- CLEANUP ENVIRONMENT
    clear screen
    prompt
    prompt >>>>> Clean UP !!! <<<<<<
    prompt
    prompt Cleanup environment and drop user...!!!
    prompt
    pause
    clear screen
    conn / as sysdba
    alter session set current_schema=OTN;
    begin
    dbms_xdb.deleteResource('/public/OTN',dbms_xdb.DELETE_RECURSIVE_FORCE);
    commit;
    end;
    alter session set current_schema=sys;
    drop user OTN cascade;
    Based on http://www.liberidu.com/blog/?p=1053

  • Loading XML files into Database table

    Loading XML files into Database table
    Hi I have some XML files say 100 files in a virtual directory created using &quot;Create or replace directory command&quot; and those files need to be loaded into a table having a column of XMLTYPE. 1)How to load that using Oracle provided procedures/packages

    Check out the Oracle XDB Developer's Guide, Chapter 3. There is an example of using BFileName function to load the xml files from a directory object created using create or replace directory. It works really well.
    Ben

  • Load XML file into oracle xml buffer

    Hi guys,
    I'm a starter in Oracle XML Development, I wander how I can load a xml file into oracle xml buffer(xmlctx* document) through programming with c++ in visual studio.
    When I use orastream structure, it compiled failed.
    Thank you very much!
    Edited by: pomelo on 2010-11-15 下午5:39

    try this
    LOAD DATA
    INFILE '/home/oraread/'
    INTO TABLE xmlloadtable
    (id,
    file_name          filler,
    data_xml          lobfile(file_name) terminated by eof
    )you can add the file_name field as a column to your table between the id and xml column and remove the filler word in the .ldr file if you need to keep the name of the file

  • Loading XML File into Oracle 10G XE

    I am trying to load an XML file into 10G XE from the Utilities interface, I have created a Table to load into but when I try to load I get the following cryptic error "XML Load Error". There is no other information, can someone give me some insight where to start to resolve this problem?

    The error messages when importing fails provided by APEX 2.1 are not very useful as they do not provide any clue...
    If possible, you can try to load XML file with SQL*Loader - probably you will get then more useful error messages.

  • SQL Loader - Loading Text File into Oracle Table that has carriage returns

    Hi All,
    I have a text file that I need to load into a table in Oracle using SQL Loader. I'm used to loading csv or comma delimited files into Oracle so I'm not sure what the syntax is when it comes to loading a text file that essentially has one value per row and each row is separated by a carriage return. So when you open the text file, the records look like this:
    999999999 <CRLF>
    888888889 <CRLF>
    456777777 <CRLF>
    456555535 <CRLF>
    345688888 <CRLF>
    So each row is separated by a hard return and I need to tell sql loader that the hard return or next row is the next value to insert into the table. Below is an example of a control file I tend to use as a template for loading csv files but I need to modify it to accomodate this new structure.
    OPTIONS (DIRECT=TRUE,ROWS=100000)
    UNRECOVERABLE
    LOAD DATA
    INFILE 'C:\input.txt'
    BADFILE 'C:\input.bad'
    APPEND
    INTO TABLE TEST_TABLE
    FIELDS TERMINATED BY ","
    TRAILING NULLCOLS
    COLUMN_1
    How to I modify the control file above to use hard returns as the field/row delimiter for my text file?
    Thanks

    Hi there,
    Obviously my intention wasn't to post the same message 4 times....I pressed the "Submit Message" button but the submission hung and I pressed it a few times and finally it worked but it created several versions of my post. You need to allow users the ability to delete there own postings...I was looking for this option but didn't have it.
    Sorry

  • Need load XML data into Oracle Table

    Hi,
    I want to load 1.5 GB size XML data to Oracle table .
    My Oracle version is 10G
    My Sample XML Data
    <Dealer>
      <Id>10004</Id> is primary column , for 10004 i have address , contact and sales details , sales details will be multiple, now i need to create a table
    Some one please suggest is there anyway to do this?
      <?xml version="1.0" encoding="UTF-8" ?>
    - <Dealers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <Dealer>
      <Id>10004</Id>
      <InternalId xsi:nil="true" />
      <LegalName xsi:nil="true" />
      <DbaName>A-P SUPER SERVICE, INC.</DbaName>
      <Client>ALLY</Client>
      <Frequency>30</Frequency>
      <OutstandingBalance>705354.00</OutstandingBalance>
      <Active>true</Active>
      <GroupId xsi:nil="true" />
      <Tag>07</Tag>
      <SecurityContext>045</SecurityContext>
      <CreditLimit xsi:nil="true" />
      <RiskRating>8+</RiskRating>
      <Comment xsi:nil="true" />
    - <PrimaryAccountManager>
      <Id>01</Id>
      <InternalId xsi:nil="true" />
      <Name>UNKNOWN</Name>
      <Title xsi:nil="true" />
      <BusinessPhone xsi:nil="true" />
      <CellPhone xsi:nil="true" />
      <Email xsi:nil="true" />
      </PrimaryAccountManager>
      <SecondaryAccountManagers xsi:nil="true" />
    - <PrimaryLocation>
      <Id>01</Id>
      <InternalId xsi:nil="true" />
      <Name>A-P SUPER SERVICE, INC.</Name>
      <Address1>338 N THIRD ST</Address1>
      <Address2 xsi:nil="true" />
      <City>ROGERS CITY</City>
      <State>MI</State>
      <Zip>49779</Zip>
      <County xsi:nil="true" />
      <Country xsi:nil="true" />
      <Latitude xsi:nil="true" />
      <Longitude xsi:nil="true" />
      <Phone>9897342941</Phone>
      <Fax>9897343343</Fax>
    - <PrimaryContact>
      <Id>01</Id>
      <InternalId xsi:nil="true" />
      <Name>UNKNOWN</Name>
      <Title xsi:nil="true" />
      <BusinessPhone xsi:nil="true" />
      <CellPhone xsi:nil="true" />
      <Email xsi:nil="true" />
      </PrimaryContact>
      <SecondaryContacts xsi:nil="true" />
      </PrimaryLocation>
      <SecondaryLocations xsi:nil="true" />
    - <Units>
    - <Unit>
      <Id>1C4NJDEB7ED740827</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>1C4NJDEB7ED740827</SerialNumber>
      <Year>2014</Year>
      <Make>JEEP</Make>
      <Model>COMPASS</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2014-03-04T00:00:00</FloorDate>
      <FloorAmount>25344.00</FloorAmount>
      <OutstandingBalance>25344.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>LT</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">50</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-03-20T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>1C4NJRFB8ED799073</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>1C4NJRFB8ED799073</SerialNumber>
      <Year>2014</Year>
      <Make>JEEP</Make>
      <Model>PATRIOT</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2014-03-21T00:00:00</FloorDate>
      <FloorAmount>24172.00</FloorAmount>
      <OutstandingBalance>24172.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>LT</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">42</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-03-21T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>1C4RDJDG8DC604750</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>1C4RDJDG8DC604750</SerialNumber>
      <Year>2013</Year>
      <Make>DODG</Make>
      <Model>DURANGO</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2013-10-02T00:00:00</FloorDate>
      <FloorAmount>27965.00</FloorAmount>
      <OutstandingBalance>25168.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>FA</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">U</Item>
      <Item Name="VtmsCode" Type="System.String" />
      <Item Name="VtmsDate" Type="System.DateTime" />
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>1C6RR7GGXES144098</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>1C6RR7GGXES144098</SerialNumber>
      <Year>2014</Year>
      <Make>RAM</Make>
      <Model>TRUCK</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2014-02-27T00:00:00</FloorDate>
      <FloorAmount>34268.00</FloorAmount>
      <OutstandingBalance>34268.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>LT</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">50</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-01-30T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>1C6RR7GT1ES219073</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>1C6RR7GT1ES219073</SerialNumber>
      <Year>2014</Year>
      <Make>RAM</Make>
      <Model>TRUCK</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2013-11-27T00:00:00</FloorDate>
      <FloorAmount>39863.00</FloorAmount>
      <OutstandingBalance>39863.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>LT</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">50</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-01-30T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>1C6RR7KT7ES312137</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>1C6RR7KT7ES312137</SerialNumber>
      <Year>2014</Year>
      <Make>RAM</Make>
      <Model>TRUCK</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2014-03-07T00:00:00</FloorDate>
      <FloorAmount>37962.00</FloorAmount>
      <OutstandingBalance>37962.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>LT</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">50</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-03-24T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>2A8HR54P08R749355</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>2A8HR54P08R749355</SerialNumber>
      <Year>2008</Year>
      <Make>CHRY</Make>
      <Model>TOWN COUNTRY</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2013-12-02T00:00:00</FloorDate>
      <FloorAmount>8435.00</FloorAmount>
      <OutstandingBalance>8435.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>U</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String" />
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">U</Item>
      <Item Name="VtmsCode" Type="System.String" />
      <Item Name="VtmsDate" Type="System.DateTime" />
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>2C3CCACG3CH142608</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>2C3CCACG3CH142608</SerialNumber>
      <Year>2012</Year>
      <Make>CHRY</Make>
      <Model>300</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>C</Description>
      <FloorDate>2013-12-02T00:00:00</FloorDate>
      <FloorAmount>14840.00</FloorAmount>
      <OutstandingBalance>14840.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>U</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String" />
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">U</Item>
      <Item Name="VtmsCode" Type="System.String" />
      <Item Name="VtmsDate" Type="System.DateTime" />
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>2C4RC1BG2ER236662</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>2C4RC1BG2ER236662</SerialNumber>
      <Year>2014</Year>
      <Make>CHRY</Make>
      <Model>TOWN COUNTRY</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2013-12-17T00:00:00</FloorDate>
      <FloorAmount>30636.00</FloorAmount>
      <OutstandingBalance>30636.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>LT</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">50</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-01-30T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>2C4RC1BG5DR689365</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>2C4RC1BG5DR689365</SerialNumber>
      <Year>2013</Year>
      <Make>CHRY</Make>
      <Model>TOWN COUNTRY</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2013-10-02T00:00:00</FloorDate>
      <FloorAmount>21165.00</FloorAmount>
      <OutstandingBalance>19048.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>FA</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">U</Item>
      <Item Name="VtmsCode" Type="System.String" />
      <Item Name="VtmsDate" Type="System.DateTime" />
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>3C6JR7DT2EG241740</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>3C6JR7DT2EG241740</SerialNumber>
      <Year>2014</Year>
      <Make>RAM</Make>
      <Model>TRUCK</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2014-03-26T00:00:00</FloorDate>
      <FloorAmount>29649.00</FloorAmount>
      <OutstandingBalance>29649.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>LT</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">42</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-03-26T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>1B3CB3HA6BD106858</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>1B3CB3HA6BD106858</SerialNumber>
      <Year xsi:nil="true" />
      <Make xsi:nil="true" />
      <Model xsi:nil="true" />
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description />
      <FloorDate xsi:nil="true" />
      <FloorAmount>0.00</FloorAmount>
      <OutstandingBalance>0.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate>2014-03-26T00:00:00</PayoffDate>
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode xsi:nil="true" />
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">0</Item>
      <Item Name="SecondaryCode" Type="System.String" />
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">U</Item>
      <Item Name="VtmsCode" Type="System.String" />
      <Item Name="VtmsDate" Type="System.DateTime" />
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>1C3CDZCG4DN687530</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>1C3CDZCG4DN687530</SerialNumber>
      <Year>2013</Year>
      <Make>DODG</Make>
      <Model>AVENGER</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>C</Description>
      <FloorDate>2013-10-30T00:00:00</FloorDate>
      <FloorAmount>13965.00</FloorAmount>
      <OutstandingBalance>11171.50</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>FA</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String" />
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">U</Item>
      <Item Name="VtmsCode" Type="System.String" />
      <Item Name="VtmsDate" Type="System.DateTime" />
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>1C4PJMCS3EW246710</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>1C4PJMCS3EW246710</SerialNumber>
      <Year>2014</Year>
      <Make>JEEP</Make>
      <Model>CHEROKEE</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2014-03-21T00:00:00</FloorDate>
      <FloorAmount>29436.00</FloorAmount>
      <OutstandingBalance>29436.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>LT</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">42</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-03-21T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>1C4RJFAG3EC477904</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>1C4RJFAG3EC477904</SerialNumber>
      <Year>2014</Year>
      <Make>JEEP</Make>
      <Model>GR CHEROKEE</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2014-03-24T00:00:00</FloorDate>
      <FloorAmount>34359.00</FloorAmount>
      <OutstandingBalance>34359.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>LT</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">42</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-03-24T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>1C6RR7FG7ES142150</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>1C6RR7FG7ES142150</SerialNumber>
      <Year>2014</Year>
      <Make>RAM</Make>
      <Model>TRUCK</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2013-09-10T00:00:00</FloorDate>
      <FloorAmount>32138.00</FloorAmount>
      <OutstandingBalance>32138.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>LT</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">50</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-01-30T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>1C6RR7LG6ES308730</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>1C6RR7LG6ES308730</SerialNumber>
      <Year>2014</Year>
      <Make>RAM</Make>
      <Model>TRUCK</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2014-03-13T00:00:00</FloorDate>
      <FloorAmount>37613.00</FloorAmount>
      <OutstandingBalance>37613.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>LT</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">42</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-03-13T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>2C3KA43D29H611642</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>2C3KA43D29H611642</SerialNumber>
      <Year>2009</Year>
      <Make>CHRY</Make>
      <Model>300</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>C</Description>
      <FloorDate>2012-10-19T00:00:00</FloorDate>
      <FloorAmount>10680.00</FloorAmount>
      <OutstandingBalance>4975.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>U</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String" />
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">U</Item>
      <Item Name="VtmsCode" Type="System.String" />
      <Item Name="VtmsDate" Type="System.DateTime" />
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>2C4RC1BG7ER133480</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>2C4RC1BG7ER133480</SerialNumber>
      <Year>2014</Year>
      <Make>CHRY</Make>
      <Model>TOWN COUNTRY</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2013-12-11T00:00:00</FloorDate>
      <FloorAmount>29624.00</FloorAmount>
      <OutstandingBalance>29624.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>LT</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">50</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-01-30T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>2C4RDGBG9ER230454</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>2C4RDGBG9ER230454</SerialNumber>
      <Year>2014</Year>
      <Make>DODG</Make>
      <Model>CARAVAN</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2014-02-25T00:00:00</FloorDate>
      <FloorAmount>24205.00</FloorAmount>
      <OutstandingBalance>24205.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>LT</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">50</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-01-30T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>2C4RDGCG2CR321948</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>2C4RDGCG2CR321948</SerialNumber>
      <Year>2012</Year>
      <Make>DODG</Make>
      <Model>CARAVAN</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2013-03-07T00:00:00</FloorDate>
      <FloorAmount>16765.00</FloorAmount>
      <OutstandingBalance>10209.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>U</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">U</Item>
      <Item Name="VtmsCode" Type="System.String" />
      <Item Name="VtmsDate" Type="System.DateTime" />
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>2C4RDGCG8ER345271</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>2C4RDGCG8ER345271</SerialNumber>
      <Year>2014</Year>
      <Make>DODG</Make>
      <Model>CARAVAN</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2014-03-24T00:00:00</FloorDate>
      <FloorAmount>28469.00</FloorAmount>
      <OutstandingBalance>28469.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>LT</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">42</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-03-24T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>3C4PDCBG3ET133327</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>3C4PDCBG3ET133327</SerialNumber>
      <Year>2014</Year>
      <Make>DODG</Make>
      <Model>JOURNEY</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2013-08-30T00:00:00</FloorDate>
      <FloorAmount>25378.00</FloorAmount>
      <OutstandingBalance>25378.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>EI</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">50</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-01-30T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>5GAKRBED2BJ269900</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>5GAKRBED2BJ269900</SerialNumber>
      <Year>2011</Year>
      <Make>BUIC</Make>
      <Model>ENCLAVE</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2013-12-17T00:00:00</FloorDate>
      <FloorAmount>18917.50</FloorAmount>
      <OutstandingBalance>18917.50</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>U</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">U</Item>
      <Item Name="VtmsCode" Type="System.String" />
      <Item Name="VtmsDate" Type="System.DateTime" />
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>1C3CCBBBXDN584242</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>1C3CCBBBXDN584242</SerialNumber>
      <Year>2013</Year>
      <Make>CHRY</Make>
      <Model>200</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>C</Description>
      <FloorDate>2012-11-27T00:00:00</FloorDate>
      <FloorAmount>22796.00</FloorAmount>
      <OutstandingBalance>18236.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>EI</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String" />
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">50</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-01-30T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>1C3CDFBB4ED682758</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>1C3CDFBB4ED682758</SerialNumber>
      <Year>2014</Year>
      <Make>DODG</Make>
      <Model>DART</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>C</Description>
      <FloorDate>2013-11-12T00:00:00</FloorDate>
      <FloorAmount>20464.00</FloorAmount>
      <OutstandingBalance>20464.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode xsi:nil="true" />
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String" />
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">50</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-01-30T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>1C3CDZAB7CN204652</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>1C3CDZAB7CN204652</SerialNumber>
      <Year>2012</Year>
      <Make>DODG</Make>
      <Model>AVENGER</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>C</Description>
      <FloorDate>2013-06-12T00:00:00</FloorDate>
      <FloorAmount>12265.00</FloorAmount>
      <OutstandingBalance>8584.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>FA</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String" />
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">U</Item>
      <Item Name="VtmsCode" Type="System.String" />
      <Item Name="VtmsDate" Type="System.DateTime" />
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>1C4PJMCSXEW203403</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>1C4PJMCSXEW203403</SerialNumber>
      <Year>2014</Year>
      <Make>JEEP</Make>
      <Model>CHEROKEE</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2014-02-18T00:00:00</FloorDate>
      <FloorAmount>30437.00</FloorAmount>
      <OutstandingBalance>30437.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>LT</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">50</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-02-27T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>2C4RDGCG6ER230085</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>2C4RDGCG6ER230085</SerialNumber>
      <Year>2014</Year>
      <Make>DODG</Make>
      <Model>CARAVAN</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>L</Description>
      <FloorDate>2014-01-16T00:00:00</FloorDate>
      <FloorAmount>28285.00</FloorAmount>
      <OutstandingBalance>28285.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>LT</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine xsi:nil="true" />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String">LT</Item>
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">50</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-01-30T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
    - <Unit>
      <Id>1C3CDZCB9EN116900</Id>
      <InternalId xsi:nil="true" />
      <SerialNumber>1C3CDZCB9EN116900</SerialNumber>
      <Year>2014</Year>
      <Make>DODG</Make>
      <Model>AVENGER</Model>
      <Series xsi:nil="true" />
      <Color xsi:nil="true" />
      <Mileage xsi:nil="true" />
      <LocationId xsi:nil="true" />
      <StockId xsi:nil="true" />
      <Description>C</Description>
      <FloorDate>2013-08-27T00:00:00</FloorDate>
      <FloorAmount>23468.00</FloorAmount>
      <OutstandingBalance>23468.00</OutstandingBalance>
      <InvoiceNumber xsi:nil="true" />
      <MaturityDate xsi:nil="true" />
      <PayoffDate xsi:nil="true" />
      <PreviousStatus xsi:nil="true" />
      <FloorPlanCode>EI</FloorPlanCode>
      <Comment xsi:nil="true" />
      <ProductLine />
      <ProductLineCategory xsi:nil="true" />
      <ProductLineDescription xsi:nil="true" />
      <Curtailments xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="IW_DAC_KEY" Type="System.Int32">33231</Item>
      <Item Name="SecondaryCode" Type="System.String" />
      <Item Name="ManuallyFloored" Type="System.String" xsi:nil="true" />
      <Item Name="NewUsed" Type="System.String">N</Item>
      <Item Name="VtmsCode" Type="System.String">50</Item>
      <Item Name="VtmsDate" Type="System.DateTime">2014-01-30T00:00:00</Item>
      <Item Name="BarsDeliveryDate" Type="System.DateTime" />
      </LaunchExtensions>
      </Custom>
      </Unit>
      </Units>
      <Charges xsi:nil="true" />
    - <Custom p7:Version="1.0" Schema="http://www.launchtechnologies.com/Integration/Service/Import/V3/Extension.xsd" xmlns:p7="http://www.launchtechnologies.com/Integration/schema/Entity/3.0/">
    - <LaunchExtensions xmlns="">
      <Item Name="InDefaultDate" Type="System.DateTime" />
      <Item Name="Sched_Restrict" Type="System.String" />
      <Item Name="FullUVE" Type="System.Boolean">false</Item>
      <Item Name="HighLevelUVE" Type="System.Boolean">false</Item>
      <Item Name="ExcludeSVA" Type="System.Boolean">true</Item>
      <Item Name="ConcurrentAudit" Type="System.Boolean">false</Item>
      <Item Name="CheckAllDemos" Type="System.Boolean">false</Item>
      <Item Name="CheckAllTitles" Type="System.Boolean">false</Item>
      <Item Name="CallBranch" Type="System.Boolean">false</Item>
      <Item Name="TemporaryAuditComment" Type="System.String" />
      <Item Name="ReleaseDaysAfterFunding" Type="System.Int32" />
      <Item Name="FILLER" Type="System.Int32" />
      <Item Name="Cash_24_48_Hr" Type="System.Int32" />
      <Item Name="Lien_Payoff_Sched" Type="System.Boolean">false</Item>
      <Item Name="Ally_Holds_Title_MCO" Type="System.Boolean">false</Item>
      <Item Name="ReleaseDaysAfterSale" Type="System.Int32">3</Item>
      </LaunchExtensions>
      </Custom>
      </Dealer>
    Cheers ,
    San

    Hope you have seen my Sample XML record, that is related to one dealer , i need to populate all the nodes, even if he have option to populate selected node that will also help.
    for example
    ID- 100004 contains many info like contacts, units now i need to do populate into DB , for single ID i too have many units child node ,
    from table i need to the selection. i have tried with
    CREATE OR REPLACE VIEW shan_v AS
    SELECT *
    FROM XMLTable('/Dealer'
            PASSING XMLTYPE(
                     bfilename('DEV_CSG_DIR','dealer2.xml')
                    , nls_charset_id('AL32UTF8')
                    columns id           varchar2(10) path 'Id'
            --,               dbaname     varchar2(30) path 'DbaName'
    But no luck , bcz my view doesnt have any data.
    even i tired with external tables but that was too complex with large xml.

  • Load XML file into oracle database

    Hi
    i have a xml file and the XSD(Schema definition file for XML). i need to load the xml file into the database.
    Can you please tell me the best approach for this ?

    There are plenty of examples of this on the XML DB Forum.
    Here is a link to the FAQ for that forum...
    XML DB FAQ

  • Loading XML File in Oracle Tables through Concurrent Request

    I am posting a working program which reads an XML File and loads in Oracle database table through Concurrent Request. Input parameter for this program is file name. I have added directory name ASPEN_DIR as /interface/inbound in ALL_DIRECTORIES table.
    /* This is a sample program reading an input xml file and loads data in Oracle Database table
    This program is executed through concurrent request and it has an input file name
    it also creates a log for reading and inserting records from file and into a table
    CREATE OR REPLACE PACKAGE BODY CBAP_ACCRUENT_XML_PKG AS
    PROCEDURE read_emp_xml_file (errbuf out varchar2,
    retcode out number,
    in_filename in varchar2)
    is
    my_dir varchar2(10) := 'ASPEN_DIR';
    l_bfile BFILE;
    l_clob CLOB;
    l_parser dbms_xmlparser.Parser;
    l_doc dbms_xmldom.DOMDocument;
    l_nl dbms_xmldom.DOMNodeList;
    l_n dbms_xmldom.DOMNode;
    l_temp VARCHAR2(1000);
    v_empno number(10);
    v_ename varchar2(50);
    v_job varchar2(30);
    v_mgr number(10);
    v_hiredate date;
    v_sal number(10);
    v_comm number(10);
    src_csid NUMBER := NLS_CHARSET_ID('UTF8');
    v_read NUMBER(5);
    v_insert NUMBER(5);
    dest_offset INTEGER := 1;
    src_offset INTEGER := 1;
    lang_context INTEGER := dbms_lob.default_lang_ctx;
    warning INTEGER;
    BEGIN
    v_read := 0;
    v_insert := 0;
    l_bfile := BFileName(my_dir, in_filename);
    dbms_lob.createtemporary(l_clob, cache=>FALSE);
    dbms_lob.open(l_bfile, dbms_lob.lob_readonly);
    dbms_lob.loadclobfromfile(l_clob, l_bfile, dbms_lob.getlength(l_bfile), dest_offset,src_offset, src_csid, lang_context, warning);
    dbms_lob.close(l_bfile);
    -- make sure implicit date conversions are performed correctly
    dbms_session.set_nls('NLS_DATE_FORMAT','''DD/MM/RR HH24:MI:SS''');
    -- Create a parser.
    l_parser := dbms_xmlparser.newParser;
    -- Parse the document and create a new DOM document.
    dbms_xmlparser.parseClob(l_parser, l_clob);
    l_doc := dbms_xmlparser.getDocument(l_parser);
    -- Free resources associated with the CLOB and Parser now they are no longer needed.
    dbms_lob.freetemporary(l_clob);
    dbms_xmlparser.freeParser(l_parser);
    -- Get a list of all the nodes in the document using the XPATH syntax.
    l_nl := dbms_xslprocessor.selectNodes(dbms_xmldom.makeNode(l_doc),'/EMPLOYEES/EMP');
    -- Loop through the list and create a new record in a tble collection
    -- for each record.
    FOR cur_emp IN 0 .. dbms_xmldom.getLength(l_nl) - 1 LOOP
    l_n := dbms_xmldom.item(l_nl, cur_emp);
    v_read := v_read + 1;
    -- Use XPATH syntax to assign values to he elements of the collection.
    dbms_xslprocessor.valueOf(l_n,'EMPNO/text()',v_empno);
    dbms_xslprocessor.valueOf(l_n,'ENAME/text()',v_ename);
    dbms_xslprocessor.valueOf(l_n,'JOB/text()',v_job);
    dbms_xslprocessor.valueOf(l_n,'MGR/text()',v_mgr);
    dbms_xslprocessor.valueOf(l_n,'HIREDATE/text()',v_hiredate);
    dbms_xslprocessor.valueOf(l_n,'SAL/text()',v_sal);
    dbms_xslprocessor.valueOf(l_n,'COMM/text()',v_comm);
    insert into emp(empno,ename,job,mgr,hiredate,sal,comm)
    values(v_empno,v_ename,v_job,v_mgr,v_hiredate,v_sal,v_comm);
    v_insert := v_insert + 1;
    END LOOP;
    -- Free any resources associated with the document now it
    -- is no longer needed.
    dbms_xmldom.freeDocument(l_doc);
    --remove file to another directory
    commit;
    fnd_file.put_line(fnd_file.LOG,'Number of Records Read : '||v_read);
    fnd_file.put_line(fnd_file.LOG,'Number of Records Insert : '||v_insert);
    EXCEPTION
    WHEN OTHERS THEN
    dbms_lob.freetemporary(l_clob);
    dbms_xmlparser.freeParser(l_parser);
    dbms_xmldom.freeDocument(l_doc);
    retcode := sqlcode;
    ERRBUF := sqlerrm;
    ROLLBACK;
    END read_emp_xml_file;
    END;
    <?xml version="1.0" ?>
    - <EMPLOYEES>
    - <EMP>
    <EMPNO>7369</EMPNO>
    <ENAME>SMITH</ENAME>
    <JOB>CLERK</JOB>
    <MGR>7902</MGR>
    <HIREDATE>17-DEC-80</HIREDATE>
    <SAL>800</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7499</EMPNO>
    <ENAME>ALLEN</ENAME>
    <JOB>SALESMAN</JOB>
    <MGR>7698</MGR>
    <HIREDATE>20-FEB-81</HIREDATE>
    <SAL>1600</SAL>
    <COMM>300</COMM>
    </EMP>
    - <EMP>
    <EMPNO>7521</EMPNO>
    <ENAME>WARD</ENAME>
    <JOB>SALESMAN</JOB>
    <MGR>7698</MGR>
    <HIREDATE>22-FEB-81</HIREDATE>
    <SAL>1250</SAL>
    <COMM>500</COMM>
    </EMP>
    - <EMP>
    <EMPNO>7566</EMPNO>
    <ENAME>JONES</ENAME>
    <JOB>MANAGER</JOB>
    <MGR>7839</MGR>
    <HIREDATE>02-APR-81</HIREDATE>
    <SAL>2975</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7654</EMPNO>
    <ENAME>MARTIN</ENAME>
    <JOB>SALESMAN</JOB>
    <MGR>7698</MGR>
    <HIREDATE>28-SEP-81</HIREDATE>
    <SAL>1250</SAL>
    <COMM>1400</COMM>
    </EMP>
    - <EMP>
    <EMPNO>7698</EMPNO>
    <ENAME>BLAKE</ENAME>
    <JOB>MANAGER</JOB>
    <MGR>7839</MGR>
    <HIREDATE>01-MAY-81</HIREDATE>
    <SAL>2850</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7782</EMPNO>
    <ENAME>CLARK</ENAME>
    <JOB>MANAGER</JOB>
    <MGR>7839</MGR>
    <HIREDATE>09-JUN-81</HIREDATE>
    <SAL>2450</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7788</EMPNO>
    <ENAME>SCOTT</ENAME>
    <JOB>ANALYST</JOB>
    <MGR>7566</MGR>
    <HIREDATE>19-APR-87</HIREDATE>
    <SAL>3000</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7839</EMPNO>
    <ENAME>KING</ENAME>
    <JOB>PRESIDENT</JOB>
    <HIREDATE>17-NOV-81</HIREDATE>
    <SAL>5000</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7844</EMPNO>
    <ENAME>TURNER</ENAME>
    <JOB>SALESMAN</JOB>
    <MGR>7698</MGR>
    <HIREDATE>08-SEP-81</HIREDATE>
    <SAL>1500</SAL>
    <COMM>0</COMM>
    </EMP>
    - <EMP>
    <EMPNO>7876</EMPNO>
    <ENAME>ADAMS</ENAME>
    <JOB>CLERK</JOB>
    <MGR>7788</MGR>
    <HIREDATE>23-MAY-87</HIREDATE>
    <SAL>1100</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7900</EMPNO>
    <ENAME>JAMES</ENAME>
    <JOB>CLERK</JOB>
    <MGR>7698</MGR>
    <HIREDATE>03-DEC-81</HIREDATE>
    <SAL>950</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7902</EMPNO>
    <ENAME>FORD</ENAME>
    <JOB>ANALYST</JOB>
    <MGR>7566</MGR>
    <HIREDATE>03-DEC-81</HIREDATE>
    <SAL>3000</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7934</EMPNO>
    <ENAME>MILLER</ENAME>
    <JOB>CLERK</JOB>
    <MGR>7782</MGR>
    <HIREDATE>23-JAN-82</HIREDATE>
    <SAL>1300</SAL>
    </EMP>
    </EMPLOYEES>

    http://download-west.oracle.com/docs/cd/B13789_01/appdev.101/b10790/toc.htm
    Take a look at Examples 4-8 and 4-9. Even thought this is 10g doc code should work on 9.2.4 or later

  • Loading xml file into external tables

    emp.xml is xml file namewhich is saved in C:\Documents and Settings\james\Desktop\emp.xml
    xml file
    <EMPLOYEES>
    <EMP>
    <EMPNO>7369</EMPNO>
    <ENAME>SMITH</ENAME>
    <JOB>CLERK</JOB>
    <HIREDATE>17-DEC-80</HIREDATE>
    <SAL>800</SAL>
    </EMP>
    <EMP>
    <EMPNO>7499</EMPNO>
    <ENAME>ALLEN</ENAME>
    <JOB>SALESMAN</JOB>
    <HIREDATE>20-FEB-81</HIREDATE>
    <SAL>1600</SAL>
    <COMM>300</COMM>
    </EMP>
    </EMPLOYEES>
    CREATE DIRECTORY my_xml_dir AS 'C:\Documents and Settings\james\Desktop\emp.xml'
    CREATE TABLE my_xml_et ( EMPNO NUMBER, EMPNAME VARCHAR2(10), JOB VARCHAR2(10), HIREDATE DATE, SAL NUMBER )
    using external tables how this xml data is loaded into my_xml_et

    http://download-west.oracle.com/docs/cd/B13789_01/appdev.101/b10790/toc.htm
    Take a look at Examples 4-8 and 4-9. Even thought this is 10g doc code should work on 9.2.4 or later

  • Load XML File into temporary tables using sql loader

    Hi All,
    I have an XML file as below. I need to insert the contents into a temporary staging table using sql loader. Please advice how I need to do that.
    For example Portfolios should go into a seperate table, and all the tags inside it should be populated in the columns of the table.
    Family should go into a seperate table and all the tags inside it should be populated in the columns of the table.
    Similarly offer, Products etc.
    - <ABSProductCatalog xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    - <ProductSalesHierachy>
    - <Portfolios>
    - <Portfolio productCode="P1">
      <Attribute name="CatalogProductName" value="Access" />
      <Attribute name="Status" value="Active" />
      </Portfolio>
    - <Portfolio productCode="P2">
      <Attribute name="CatalogProductName" value="Data" />
      <Attribute name="Status" value="Active" />
      </Portfolio>
    - <Portfolio productCode="P3">
      <Attribute name="CatalogProductName" value="Voice" />
      <Attribute name="Status" value="Active" />
      </Portfolio>
    - <Portfolio productCode="P4">
      <Attribute name="CatalogProductName" value="Wireless" />
      <Attribute name="Status" value="Active" />
      </Portfolio>
      </Portfolios>
    - <Families>
    - <Family productCode="F1">
      <Attribute name="CatalogProductName" value="Internet Access Services" />
      <Attribute name="Status" value="Active" />
    - <ParentHierarchy>
      <Item productCode="P1" modelType="Portfolio" />
      </ParentHierarchy>
      </Family>
    - <Family productCode="F2">
      <Attribute name="CatalogProductName" value="Local Access Services" />
      <Attribute name="Status" value="Active" />
    - <ParentHierarchy>
      <Item productCode="P2" modelType="Portfolio" />
      </ParentHierarchy>
      </Family>
      </Families>
    - <SubFamilies>
    - <SubFamily productCode="SF1">
      <Attribute name="CatalogProductName" value="Business Internet service" />
      <Attribute name="Status" value="Active" />
    - <ParentHierarchy>
      <Item productCode="F1" modelType="Family" />
      </ParentHierarchy>
      </SubFamily>
      </SubFamilies>
    - <ProductRefs>
    - <ProductRef productCode="WSP1" modelType="Wireline Sales Product">
      <ActiveFlag>Y</ActiveFlag>
    - <ProductHierarchy>
      <SalesHierarchy family="F1" subFamily="SF1" portfolio="P1" primary="Y" />
      <SalesHierarchy family="F2" portfolio="P2" primary="N" />
      <FinancialHierarchy quotaBucket="Voice" strategicProdCategory="Local Voice" />
      </ProductHierarchy>
      </ProductRef>
    - <ProductRef productCode="MSP2" modelType="Handset">
      <ActiveFlag>Y</ActiveFlag>
    - <ProductHierarchy>
      <SalesHierarchy portfolio="P4" primary="Y" />
      </ProductHierarchy>
      </ProductRef>
      </ProductRefs>
      </ProductSalesHierachy>
    - <Offers>
    - <Offer productCode="ABN">
      <OfferName>ABN</OfferName>
      <OfferDescription>ABN Description</OfferDescription>
    - <Segments>
      <Segment>SCG</Segment>
      <Segment>PCG</Segment>
      </Segments>
      <OfferUpdateDate>2009-11-20</OfferUpdateDate>
      <ActiveFlag>Y</ActiveFlag>
      </Offer>
    - <Offer productCode="OneNet">
      <OfferName>OneNet</OfferName>
      <OfferDescription>OneNet Description</OfferDescription>
    - <Segments>
      <Segment>SCG</Segment>
      <Segment>PCG</Segment>
      <Segment>PCG2</Segment>
      </Segments>
      <OfferUpdateDate>2009-11-20</OfferUpdateDate>
      <ActiveFlag>Y</ActiveFlag>
      </Offer>
      </Offers>
    - <Products>
    - <Product productCode="WSP1" modelType="Wireline Sales Product">
      <ProductName>AT&T High Speed Internet</ProductName>
      <ProductDescription>High Speed Internet</ProductDescription>
      <LegacyCoProdIndicator>SBC</LegacyCoProdIndicator>
      <RevenueCBLCode>1234B</RevenueCBLCode>
      <VolumeCBLCode>4567A</VolumeCBLCode>
      <SAARTServiceIDCode>S1234</SAARTServiceIDCode>
      <MarginPercentRequired>Y</MarginPercentRequired>
      <PercentIntl>%234</PercentIntl>
      <UOM>Each</UOM>
      <PriceType>OneTime</PriceType>
      <ProductStatus>Active</ProductStatus>
      <Compensable>Y</Compensable>
      <Jurisdiction>Everywhere</Jurisdiction>
      <ActiveFlag>Y</ActiveFlag>
    - <Availabilities>
      <Availability>SE</Availability>
      <Availability>E</Availability>
      </Availabilities>
    - <Segments>
      <Segment>SCG</Segment>
      <Segment>PCG</Segment>
      </Segments>
      <VDIndicator>Voice</VDIndicator>
      <PSOCCode>PSOC 1</PSOCCode>
      <USBilled>Y</USBilled>
      <MOWBilled>N</MOWBilled>
      <ProductStartDate>2009-11-20</ProductStartDate>
      <ProductUpdateDate>2009-11-20</ProductUpdateDate>
      <ProductEndDate>2010-11-20</ProductEndDate>
    - <AliasNames>
      <AliasName>AT&T HSI</AliasName>
      <AliasName>AT&T Fast Internet</AliasName>
      </AliasNames>
    - <OfferTypes>
      <OfferType productCode="ABN" endDate="2009-11-20" />
      <OfferType productCode="OneNet" />
      </OfferTypes>
    - <DynamicAttributes>
    - <DynamicAttribute dataType="String" defaultValue="2.5 Mbps" name="Speed">
      <AttrValue>1.5 Mbps</AttrValue>
      <AttrValue>2.5 Mbps</AttrValue>
      <AttrValue>3.5 Mbps</AttrValue>
      </DynamicAttribute>
    - <DynamicAttribute dataType="String" name="TransportType">
      <AttrValue>T1</AttrValue>
      </DynamicAttribute>
      </DynamicAttributes>
      </Product>
    - <Product productCode="MSP2" modelType="Handset">
      <ProductName>Blackberry Bold</ProductName>
      <ProductDescription>Blackberry Bold Phone</ProductDescription>
      <LegacyCoProdIndicator />
      <RevenueCBLCode />
      <VolumeCBLCode />
      <SAARTServiceIDCode />
      <MarginPercentRequired />
      <PercentIntl />
      <UOM>Each</UOM>
      <PriceType />
      <ProductStatus>Active</ProductStatus>
      <Compensable />
      <Jurisdiction />
      <ActiveFlag>Y</ActiveFlag>
    - <Availabilities>
      <Availability />
      </Availabilities>
    - <Segments>
      <Segment>SCG</Segment>
      <Segment>PCG</Segment>
      </Segments>
      <VDIndicator>Voice</VDIndicator>
      <PSOCCode />
      <USBilled />
      <MOWBilled />
      <ProductStartDate>2009-11-20</ProductStartDate>
      <ProductUpdateDate>2009-11-20</ProductUpdateDate>
    - <AliasNames>
      <AliasName />
      </AliasNames>
    - <OfferTypes>
      <OfferType productCode="ABN" />
      </OfferTypes>
    - <DynamicAttributes>
    - <DynamicAttribute dataType="String" name="StlmntContractType">
      <AttrValue />
      </DynamicAttribute>
    - <DynamicAttribute dataType="String" name="BMG 2 year price">
      <AttrValue>20</AttrValue>
      </DynamicAttribute>
    - <DynamicAttribute dataType="String" name="MSRP">
      <AttrValue>40</AttrValue>
      </DynamicAttribute>
    - <DynamicAttribute dataType="String" name="BMGAvailableType">
      <AttrValue />
      </DynamicAttribute>
    - <DynamicAttribute dataType="String" name="ProductId">
      <AttrValue>123456</AttrValue>
      </DynamicAttribute>
    - <DynamicAttribute dataType="String" name="modelSource">
      <AttrValue>product</AttrValue>
      </DynamicAttribute>
      </DynamicAttributes>
      </Product>
      </Products>
      <CatalogChanged>Y</CatalogChanged>
      </ABSProductCatalog>

    Two options that come to mind. Others exist.
    #1 - {thread:id=474031}, which is basically storing the XML in an Object Relational structure for parsing
    #2 - Dump the XML into either an XMLType based table or column and use SQL (with XMLTable) to create a view that parses the data. This would be the same as the view shown in the above post.
    Don't use sql*loader to parse the XML. I was trying to find a post from mdrake about that but couldn't. In short, sql*loader was not build as an XML parser so don't try to use it that way.

  • How to load XML files into oracle

    I am new to XML.I have a few XML files.I want to load them into oracle.I have oracle client on my win2000 machine version 8.1.6.3.
    I cannot find Loadjava.jar file in ORACLE_HOME\bin directory.
    Where is the XSU-dsl and the XDK utility?Do i need to down load it?

    This forum is dedicated to the XML Features of 9iR2, and to a lesser extent 9i. Questions related to XML and earlier versions of the database should be posted in Technologies -> General -> XML...
    I will move this thread to the appropriate forum if required.

  • Loading XML files into multiple tables

    I've got XML like so...
    <?xml version="1.0" encoding="UTF-8"?>
    <MainTitle Version="1.0" Date="2009-01-11">
    <MainName>
    <ID1>A</ID1>
    <ID2>ABC</ID2>
    <ID3>ABC123</ID3>
    <Desc>Some text</Desc>
    <feature>f1</feature>
    <feature>f2</feature>
    <Category>
    <name>n1</name>
    <attribute>more stuff</attribute>
    </Category>
    <Category>
    <name>n2</name>
    <attribute>even more stuff</attribute>
    </Category>
    <Category>
    <name>n3</name>
    <attribute>different stuff</attribute>
    </Category>
    <Category>
    <name>n4</name>
    <attribute>More of the same<attribute>
    <attribute>But different still</attribute>
    <attribute>Even more different junk<attribute>
    </Category>
    </MainName>
    </MainTitle>
    Where each MainName instance in the file can have 0 or more ( unbounded ) Category and Feature tags and each Category instance can have multiple attribute tags. The file contains many thousands of MainName instances and has embedded a good mix of possible tags.
    I believe I can load this into 9i xmltype table or a 9i table with an xmltype column, then query the data to get it out...
    SQL> create table mytab (
    2 xmlraw XMLType
    3 );
    Table created.
    SQL>
    SQL> insert into mytab values ( sys.xmltype.createxml(
    2 '<?xml version="1.0" encoding="UTF-8"?>
    3 <MainTitle Version="1.0" Date="2009-01-11">
    4 <MainName>
    5 <ID1>A</ID1>
    6 <ID2>ABC</ID2>
    7 <ID3>ABC123</ID3>
    8 <Desc>Some text</Desc>
    9 <feature>f1</feature>
    10 <feature>f2</feature>
    11 <Category>
    12 <name>n1</name>
    13 <attribute>more stuff</attribute>
    14 </Category>
    15 <Category>
    16 <name>n2</name>
    17 <attribute>even more stuff</attribute>
    18 </Category>
    19 <Category>
    20 <name>n3</name>
    21 <attribute>different stuff</attribute>
    22 </Category>
    23 <Category>
    24 <name>n4</name>
    25 <attribute>More of the same</attribute>
    26 <attribute>But different still</attribute>
    27 <attribute>Even more different junk</attribute>
    28 </Category>
    29 </MainName>
    30 </MainTitle>')
    31 );
    1 row created.
    1 select
    2 extract(a.xmlraw,'/MainTitle/MainName/ID1/text()'),
    3 extract(a.xmlraw,'/MainTitle/MainName/ID2/text()'),
    4 extract(a.xmlraw,'/MainTitle/MainName/ID3/text()'),
    5 extract(a.xmlraw,'/MainTitle/MainName/Desc/text()'),
    6 extract(a.xmlraw,'/MainTitle/MainName/feature/text()'),
    7 extract(a.xmlraw,'/MainTitle/MainName/Category/text()'),
    8 extract(a.xmlraw,'/MainTitle/MainName/Category/name/text()'),
    9 extract(a.xmlraw,'/MainTitle/MainName/Category/attribute/text()')
    10* from mytab a
    SQL> /
    A
    ABC
    ABC123
    Some text
    f1f2
    n1n2n3n4
    more stuffeven more stuffdifferent stuffMore of the sameBut different stillEven
    more different junk
    This all works just fine, however, it's not quite what I need. For starters, the multiple tag data is concatenated and when I try to specifically query it out using a where clause I get ORA 22950. So, not sure how to deal with that.
    Is it possible to use sqlldr to get the 200MB XML file loaded into a table like that above?
    Now, given multiple "feature" and "category" data per "MainName", I need to use the SQL to dump the XML data into a set of tables built to model the structure of the XML...
    roughly..
    Main_Table (
    ID1 Varchar2(10)
    ID2 varchar2(10)
    ID3 varchar2(10)
    desc varchar2(100)
    Features_Table (
    ID1 varchar2(10)
    feature varchar2(100)
    Category_Table (
    ID1 varchar2(10)
    name varchar2(100)
    attribute varchar2(100)
    What are the groups recommendations here? Should I continue down this route or is there a better way?

    When I suggested the option to parse the XML in PL/SQL I was referring to pulling the data into PL/SQL and then performing all parsing activity against the PL/SQL copy and you don't need to make SQL calls.
    Here is a quick sample for parsing out all the Category/name elements from the XML once it is loaded into PL/SQL
    DECLARE
      l_index     PLS_INTEGER;
      l_category  XMLTYPE;
      l_db_row    XMLTYPE := XMLTYPE('<?xml version="1.0" encoding="UTF-8"?>
    <MainTitle Version="1.0" Date="2009-01-11">
       <MainName>
          <ID1>A</ID1>
          <ID2>ABC</ID2>
          <ID3>ABC123</ID3>
          <Desc>Some text</Desc>
          <feature>f1</feature>
          <feature>f2</feature>
          <Category>
             <name>n1</name>
             <attribute>more stuff</attribute>
          </Category>
          <Category>
             <name>n2</name>
             <attribute>even more stuff</attribute>
          </Category>
          <Category>
             <name>n3</name>
             <attribute>different stuff</attribute>
          </Category>
          <Category>
             <name>n4</name>
             <attribute>More of the same</attribute>
             <attribute>But different still</attribute>
                   <attribute>Even more different junk</attribute>
              </Category>
         </MainName>
    </MainTitle>');
    BEGIN
       l_index := 1;
       WHILE l_db_row.Existsnode('/MainTitle/MainName/Category[' ||
                                 To_Char(l_index) || ']') > 0
       LOOP
          l_category := l_db_row.Extract('/MainTitle/MainName/Category[' ||
                                           To_Char(l_index) || ']');
          dbms_output.put_line(l_category.extract('Category/name/text()').getStringVal());
          l_index := l_index + 1;
       END LOOP;
    END;You could repeat the WHILE loop to parse out the attribute column as well since it repeats. This is what Dave's post was showing and what I was referring to.
    Hint: If you are trying to use .extract to go after an optional node, you need to verify the node exists via existsNode first. If you don't you can get an "ORA-30625: method dispatch on NULL SELF argument is disallowed" error when trying to extract a non-existent node.

  • Issue with Date Conversion when loading XML File into Oracle 10g Database

    Hello all,
    I have the interface shown in the screenshot below. In it, amongst other actions, I'm mapping an XML file element representing a date to an Oracle table column defined as DATE. The source and target columns are highlighted in the screenshot.
    !http://img223.imageshack.us/img223/1565/odiscr275.jpg!
    When I execute the interface, I get the following error message:
    java.lang.IllegalArgumentException at java.sql.Date.valueOf(Date.java:103)
    I'm assuming this refers to the date conversion!
    I've already tried replacing SRC_TRADES.DEAL_DATE with TO_DATE( SRC_TRADES.DEAL_DATE, 'DD/MM/YYYY' ) in the Implementation tab. This function was not recognised when I executed the interface, so it didn't work! The date value in the XML file is in DD/MM/YYYY format.
    I'm guessing that Oracle SQL Date functions don't work in the Implementation tab. Please could somebody let me know:
    1. Which Date Conversion function I could use instead?
    2. Where I can find a reference for the methods/functions I can use in the Implementation tab (if such a reference exists)?
    Cheers.
    James

    Hi.
    Try to change the execution area to staging area. After You change it, write in the mapping box just SRC_TRADERS.DEAL_DATE. When You use TO_DATE, the source field typu should be varchar2, not date (as it is in your source datastore)

  • Load xml data into oracle table

    Hi,
    How to load the xml data in to oracle table plz guide in this context
    thanks

    Use the DBMS_XMLSAVE.INSERTXML procedure.
    It works fine.

Maybe you are looking for

  • Possible resolution to sorting issue in iTunes 9 and 3.1

    For those experiencing issues sorting Podcasts chronologically: One particular daily podcast I subscribe to was not sorting correctly (was in random order on the iPod Touch 32gb 2nd Gen). I did notice the "Release Date" wasn't carrying over to the iP

  • AME CS4 darkens h.264 video files after export

    Finding something really weird happening.  Whenever I am exporting a file through AME into a quicktime movie file, h.264, the final product is darkened, almost like there is a grey filter in front of it.  I can't find any setting that might be doing

  • DDR-333 unstable on 648 MAX

    I have runned memtest86, and I get 16 errors on test#5 when running ddr-333 (167 mhz) on normal speed. Is the ram bad ? Or is the mainboard bad ? .. It's Apacer PC-2700 CAS 2,5 memory.

  • Data for Storage Location of Material Doc. stored in table QAMB

    Hi, I am developing a report in which i have to fetch data on the basis of inspection lot and i want to have the STORAGE LOCATION data for inspection present in the QAMB table(QM: Link Between Inspection Lot and Material Document). I am not able aces

  • User self registration !

    Hi, Does anyone have idea / detailed documentation of the step by step process of setting up user self registration in SAP SRM ? Are there better ways of automating the user creation after approval from the authorized administrators within a company