Need help to read the xml file and place it in a table.

Nice day!

Here is the configuration. I have a xml file from another source which will call a stored procedure in my database (which I am supposed to create). This is a first for me, I've never done development pl/sql or worked with xml. :(

That's what I hoped to accomplish, if there is a better way, that I am open to him.
In short, to have a stored procedure that takes the xml file (transmitted by third parties via the call, no url must be a file), creates a temporary table and populates the two columns needed. Then, the SP will make a select join with the temporary table and other data available in another schema. Once the completed table selection will be truncated and dropped. SP farm.

Details:
DB: Oracle 11.2.0.1 RAC.
Charset: AL32UTF8
Example of XML: (nearly 10,000 lines like this in production)
"< MerchantID report =" "#" name = 'Conversion detail report' ReportStartDate = '2011-09-27 12:00:00GMT' ReportEndDate = '2011-09-27 21:38:13GMT"Version ="1.1"> < Conversion = '1234567891234567 D' MerchantReferenceNumber Convertingdate =" 2011-09-27 13:39:02 "RequestID ="1234567891234567891234"> < OriginalDecision > REVIEW < / OriginalDecision > < NewDecision > ACCEPT < / NewDecision > < Reviewer > testusr < / examiner > < ReviewerComments > no reason to reject. < / ReviewerComments > < Notes > < Note Date = "2011-09-27 13:39:02" AddedBy = "testusr" comment = "Took possession" / > < / Notes > < queue > Digital Review < / queue > < profile > Digital orders QA < / profile > < / Conversion > "
...
< / report >

What I tried.
I found a tutorial: http://it.toolbox.com/blogs/oracle-guide/oracle-and-xml-in-action-a-real-world-example-5319 I tried and was able to make it work. But I could not duplicate the results with my xml file. So I looked away and have had no success. :( I'm not a developer, so I'm really bad...

I found a note of support: (how to load an XML file into a Database Table using DBMS_XMLSave unaided Bfile [227476.1 ID]) and couldn't make it work.

I found some online then Odie son xml and tried these but slipped and couldn't get my versions of these great answers to work for me.

Then... I'm here now and hoping that someone could walk me through this.


I tinkered this SP (it doesn't have to be that way, the suggestions are greatly appreciated)

create or replace procedure xml_to_table (call_1 call_2) as

Start
run immediately "CREATE GLOBAL TEMPORARY TABLE XMLType IMRPT
--(clé primaire contrainte-imrpt_pk (MerchantReferenceNumber))
XmlType store as xml binary basicfile
-(high compression)
virtual columns
(MerchantReferenceNumber as (xmlcast (xmlquery ('/ Conversion/MerchantReferenceNumber ' from object_value content back) as VARCHAR2 (32))))
, NewDecision as (xmlcast (xmlquery ('/ Conversion/NewDecision ' from object_value content back) as VARCHAR2 (10)))
)
-ON COMMIT PRESERVE ROWS

run immediately 'save xml as a file on the local system?'

insert into IMRPT (MerchantReferenceNumber, NewDecision)

run immediately "join select statement.
run immediately 'truncate table IMRPT.
run immediately "drop table IMRTP.

end;
/

On my last test, I tried to select just in the xml file using this:

DECLARE
indomdoc DBMS_XMLDOM. DOMDocument;
innode DBMS_XMLDOM. DOMNode;
myParser DBMS_XMLPARSER.parser;
buf VARCHAR2 (2000);
BEGIN
myParser: = DBMS_XMLPARSER.newParser;

DBMS_XMLPARSER.setBaseDir (myparser, 'XML_DIR');
DBMS_XMLPARSER. Parse (myParser, "test.xml");

indomdoc: = DBMS_XMLPARSER.getDocument (myParser);

-just to test content
innode: = DBMS_XMLDOM.makeNode (indomdoc);
DBMS_XMLDOM.writeToBuffer (innode, buf);
Dbms_output.put_line (BUF);

dbms_xmldom.freeDocument (indomdoc);
dbms_xmlparser.freeParser (myParser);
END;
/

It was another accident and burn.

Any help would be appreciated.

Thank you

Like I said:

Here is an example using a REF CURSOR variable ( you will need to declare a plus for your actual procedure )

Your procedure has two parameters, you must declare two variables to hold the two REF CURSOR ;)

DECLARE

  v_filename      VARCHAR2(50) := 'DMReport.xml';
  v_rc1            SYS_REFCURSOR;
  v_rc2            SYS_REFCURSOR;

  v_order_name       VARCHAR2(100);
  v_reason_text      VARCHAR2(100);

BEGIN

  xml2table(v_filename, v_rc1, v_rc2);

  commit;

  loop
    fetch v_rc1 into v_order_name;
    exit when v_rc1%notfound;
    dbms_output.put_line('ORDER_NAME='||v_order_name);
  end loop;

  close v_rc1;

  loop
    fetch v_rc2 into v_order_name, v_reason_text;
    exit when v_rc2%notfound;
    dbms_output.put_line('ORDER_NAME='||v_order_name||', REASON_TEXT='||v_reason_text);
  end loop;

  close v_rc2;

END;
/

If you test this in SQL * Plus, do not forget to SET SERVEROUTPUT ON to see the result.

Tags: Oracle Development

Similar Questions

  • Need help with loading the XML file

    Hello

    I spent reviewing the web/forums for an example on how to do this for a few days now.  I managed to get this working in Flash Pro easily enough, but I think I'm missing something when I want to do the same thing in Flex.

    Basically, I want to load an XML file and then set the values of the text of labels 5, equal to the data in the XML file.

    So I have a button created in MXML and have put the following click event:

    Click = "dsSetup (Event)" "

    I also stated the following:

    public var myRequest:URLRequest = new URLRequest ("assets/myFile.xml");   folder located under the CBC in project

    public var myLoader:URLLoader = new URLLoader();

    public var myXML:XML;

    My function that loads is as follows:

    public function dsSetup(event:MouseEvent):void

    {

         trace ("dsSetup");

    myXML = new XML (myLoader.data);

    H3. Text = myXML.source.itemA;

    H4.text = myXML.source.itemB;

    H5.text = myXML.source.itemC;

    H7.text = myXML.source.itemD;

    H8.text = myXML.source.itemE;

    currentState = "MainMenu";

    }

    myLoader.addEventListener (Event.COMPLETE, dsSetup);   I think that this line is no longer as I put it in the MXML

    myLoader.load (myRequest);

    It's the way I did in Flash and it worked fine, but I must be missing something when it comes to Flex.

    Can you explain or point me to a good tutorial that shows how to load XML in Flex code?

    Those I've found seems to have about 50 lines of code just to load a file and add through a complex for a beginner.

    Thank you very much

    I suggest you save the data loaded in a variable that can be linked, then bind the properties of the text - who:

    [Bindable]

    var myXML:XML;

    public void dsSetup(event:MouseEvent):void

    {

    myXML = new XML (myLoader.data);

    currentState = "MainMenu";

    }

    ...

  • Need help to retrieve the XML file

    Hello

    I'm new to xml query and I need help badly. I have a file xml with the following content. I need help to extract data as:

    beginTimelocalDnmeasObjLdnhdlcRxErrAborthdlcRxErrCRChdlcRxErrLackOfBufs
    2015 07-28 T 14: 45:00 + 03:00ERSGSN01MagId.SlotId.E1/T1Trunk.FractionId=2.8.6.1240010200
    2015 07-28 T 14: 45:00 + 03:00ERSGSN01MagId.SlotId.E1/T1Trunk.FractionId=2.9.3.1000
    2015 07-28 T 14: 45:00 + 03:00ERSGSN01MagId.SlotId.E1/T1Trunk.FractionId=2.9.4.1000

    and the XML data I have are:

    <? XML version = "1.0" encoding = "UTF-8"? >

    <? XML-stylesheet type = "text/xsl" href = "MeasDataCollection.xsl"? >

    " < measCollecFile xmlns =" http://www.3GPP.org/FTP/specs/archive/32_series/32.435#measCollec ">

    < fileFormatVersion = "32.435 V9.0" fileHeader vendorName = "Ericsson" >

    < fileSender / >

    < measCollec beginTime = "2015-07 - 28 T 14: 45:00 + 03:00" / >

    < / fileHeader >

    < measData >

    < managedElement localDn = "ERSGSN01" / >

    < measInfo measInfoId = ' E1/T1, hdlc' >

    < job jobId = "Meas_E1T1_all" / >

    < duration granPeriod = "PT900S" endTime = "2015-07 - 28 T 15: 00:01 + 03:00" / >

    < duration repPeriod = "PT900S" / >

    < p measType = "1" > hdlcRxErrAbort < / measType >

    < p measType = "2" > hdlcRxErrCRC < / measType >

    < p measType = "3" > hdlcRxErrLackOfBufs < / measType >

    < p measType = "4" > hdlcRxErrMaxFrameLen < / measType >

    < p measType = "5" > hdlcRxErrNonOctetAlign < / measType >

    < p measType = "6" > hdlcRxErrQueue < / measType >

    < p measType = "7" > hdlcRxOK < / measType >

    < p measType = "8" > hdlcRxOctets < / measType >

    < p measType '9' = > hdlcTxOK < / measType >

    < p measType = "10" > hdlcTxOctets < / measType >

    < measValue measObjLdn="MagId.SlotId.E1/T1Trunk.FractionId=2.8.6.1" >

    < p r = "1" > 2400 / < r >

    < p r '2' = > 1020 / < r >

    < p r = "3" >/< r > 0

    < p r = "4" >/< r > 0

    < p r = "5" > </r > 0

    < p r = "6" >/< r > 0

    < p r = "7" >/< r > 0

    < p r = "8" > 0 </r >

    < p r '9' = > 295 / < r >

    < p r = "10" > 4130 / < r >

    < / measValue >

    < measValue measObjLdn="MagId.SlotId.E1/T1Trunk.FractionId=2.9.3.1" >

    < p r = '1' >/< r > 0

    < p r = "2" >/< r > 0

    < p r = "3" >/< r > 0

    < p r = "4" >/< r > 0

    < p r = "5" > </r > 0

    < p r = "6" >/< r > 0

    < p r = "7" >/< r > 0

    < p r = "8" > 0 </r >

    < p r '9' = > 295 / < r >

    < p r = "10" > 4130 / < r >

    < / measValue >

    < measValue measObjLdn="MagId.SlotId.E1/T1Trunk.FractionId=2.9.4.1" >

    < p r = '1' >/< r > 0

    < p r = "2" >/< r > 0

    < p r = "3" >/< r > 0

    < p r = "4" >/< r > 0

    < p r = "5" > </r > 0

    < p r = "6" >/< r > 0

    < p r = "7" >/< r > 0

    < p r = "8" > 0 </r >

    < p r '9' = > 295 / < r >

    < p r = "10" > 4130 / < r >

    < / measValue >

    < / measInfo >

    < / measData >

    < fileFooter >

    < measCollec = endTime "2015-07 - 28 T 15: 00:01 + 03:00" / >

    < / fileFooter >

    < / measCollecFile >

    Help, please. I tried to select a value using the following xml query which does not lead to any output:

    WITH t AS (SELECT xmltype (bfilename('SGSN_STAT_ERICSSON', 'A20150728.1445+0300-20150728.1500+0300_Meas_E1T1_all.52'), nls_charset_id('UTF-8')) FROM dual xmlcol)

    SELECT beginTime, localDn, measObjLdn, hdlcRxErrAbort, hdlcRxErrCRC, hdlcRxErrLackOfBufs

    T, XMLTABLE

    (XMLNAMESPACES ('http://www.3gpp.org/ftp/specs/archive/32_series/32.435#measCollec' as 'ns1'), )

    ' / measCollecFile'

    passage xmlcol

    columns

    beginTime PATH VARCHAR2 (32) ' / measCollec/@beginTime',

    localDn PATH VARCHAR2 (32) ' / measData/managedElement@localDn',

    measObjLdn PATH VARCHAR2 (32) ' / measData/measInfo/measValue@measObjLdn',

    ["hdlcRxErrAbort PATH VARCHAR2 (32) ' / measData/measInfo/measValue/r[@p="1 ']',

    ["hdlcRxErrCRC PATH VARCHAR2 (32) ' / measData/measInfo/measValue/r[@p="2 ']',

    "[" hdlcRxErrLackOfBufs PATH VARCHAR2 (32) ' / measData/measInfo/measValue/r[@p="3 ']"

    )

    Sincere greetings

    Either way, using an XQuery FLWOR expression:

    select x.*
    from xmltable(
           xmlnamespaces(default 'http://www.3gpp.org/ftp/specs/archive/32_series/32.435#measCollec')
         , 'for $h in /measCollecFile
              , $v in $h/measData/measInfo/measValue
            return element row {
              $h/fileHeader/measCollec/@beginTime
            , $h/measData/managedElement/@localDn
            , $v/@measObjLdn
            , element r1 {$v/r[@p="1"]}
            , element r2 {$v/r[@p="2"]}
            , element r3 {$v/r[@p="3"]}
            }'
           passing xmltype(bfilename('TEST_DIR', 'test.xml'), nls_charset_id('AL32UTF8'))
           columns beginTime           timestamp with time zone path '@beginTime'
                 , localDn             varchar2(32)             path '@localDn'
                 , measObjLdn          varchar2(80)             path '@measObjLdn'
                 , hdlcRxErrAbort      number                   path 'r1'
                 , hdlcRxErrCRC        number                   path 'r2'
                 , hdlcRxErrLackOfBufs number                   path 'r3'
         ) x ;
    
  • Reading an XML file and write the content in another file xml in java

    Hello

    I'm new to xml parsing. My requirement is that I get a message (xml) using ibm MQ in the ByteArrayInputStream format. I read this xml message and write to another file.

    To do this, I create a CEP.

    First of all, I used simple reading and writing concept, but the output is "java.io.FileInputStream@3e25a5".
    Example of xml file
    -< customer >
    < > 1234 ClientId < / ClientId >
    STechnology < ClientName > < / ClientName >
    < DTU_ID > 567 < / DTU_ID >
    < ClientStatus > ACTIVE < / ClientStatus >
    -< LEAccount >
    < Customer > 678989 < / customer >
    < > 56743 LEId < / LEId >
    -< account >
    < AccountNumber > 9876543678 < / account number >
    < / account >
    < / LEAccount >
    -< Service >
    Y2Y < Cindicator > < / Cindicator >
    < PrefCode > 980 < / PrefCode >
    < BSCode > 876 < / BSCode >
    < MandatoryContent > MSP < / MandatoryContent >
    < / service >
    < / customer >

    Code:


    import java.io.ByteArrayInputStream;
    import java.io.FileInputStream;
    to import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;

    public class ByteArrayInputStreamToXml {}

    Public Shared Sub main (String [] GIS) throws IOException {}

    InputStream inputStream = new FileInputStream("C:\\soft\\test2\\sample1.xml");
    currentXMLBytes Byte = inputStream.toString () .getBytes ();
    ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream (currentXMLBytes);

    OutputStream out = new FileOutputStream("C:\\soft\\test\\data.xml");
    int read = 0;
    ubyte bytes [] = new byte [1024];

    While ((read = byteArrayInputStream.read (bytes))! = - 1) {}
    out. Write (bytes, 0, read);
    out. Write ("\n");
    }

    inputStream.close ();
    out. Flush();
    out. Close();

    System.out.println ("new file created!");

    }

    }

    Please suggest me how can I use DOM/SAX parser, I see several code on the net to read the xml file using SAX/DOM parser, but write an xml file after reading using ByteArrayInputStream I don't get. Assistance through some link examples will also be useful for me.

    Thank you
    Sumit

    Published by: user8687839 on April 30, 2012 02:37

    Published by: user8687839 on April 30, 2012 02:43

    user8687839 wrote:
    But the file is coming thanks to a queue and byte format. Must read the byte, and write to a file. So, how I tried to read the byte using the code above. Please suggest me the correct way.

    Simply write the bytes of the contents of the queue directly to a FileOutputStream. Still no need to SAX or DOM!

    Pseudo-code-

    Open a FileOutputStream .
    
    Until all the bytes of the queue have been read
        read some bytes from the queue.
        wite these bytes to the FileOutputStream.
    
    Close the FileOutputStream.
    

    Published by: sabre150 on April 30, 2012 11:30

  • Please help to read the XML with XMLTable

    Hi gurus,

    I'm not very familiar with XML parsing. It seems to me that it should be very easy to get the data. For some reason, I'm having a problem to get the data.

    SELECT *.
    OF e util.hlsr_online_entries,.
    XMLTABLE)
    XmlNamespaces)
       ' http://tempuri.org/ '    as "dt",
    ("urn: schemas-microsoft-com: XML-diffgram-v1" as "dg").

    "/ DataTable / dg:diffgram/DocumentElement/JrShowCustomerHeifers.
    PASSAGE XMLTYPE (e.entry_data)
    COLUMNS
    SeqNo TO the ORDINALITE,
    DocumentID NUMBER PATH "DocumentID",.
    PATH of VARCHAR2 (100) ClubName "ClubName") as test
    WHERE e.ref_id = 33422

    The query above does all the data for me. My hunts is the problem with the tab DocumentElement. I tried a different variant management.

    Please help me to resolve the application

    I have the XML document following the DotNet developer

    <? XML version = "1.0" encoding = "utf-8"? >

    " < DataTable xmlns =" http://tempuri.org/ ">

    < xs: Schema id = "NewDataSet" xmlns = "" "xmlns: XS =" " http://www.w3.org/2001/XMLSchema " "xmlns:msdata ="urn: schemas-microsoft-com: xml-msdata" >

    < xs: element name = "NewDataSet" msdata:IsDataSet = "true" msdata:MainDataTable = "JrShowCustomerHeifers" msdata:UseCurrentLocale = "true" >

    < xs: complexType >

    < xs: Choice minOccurs = "0" maxOccurs = "unbounded" >

    < xs: element name = "JrShowCustomerHeifers" >

    < xs: complexType >

    < xs: SEQUENCE >

    < xs: element name = "DocumentID" type = "xs: int" minOccurs = "0" / >

    < xs: element name = "ClubName" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "Name" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "FirstName" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "PreferredName" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "Email" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "Exhibitor" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "AnimalName" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "RegistryNo" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "DateofBirth" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "NameofSire" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "SireRegistryNo" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "NameofDam" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "DamRegistryNo" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "Tattoo" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "SecondaryTattoo" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "UniversalIDNumber" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "Tattoo_Location" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "Secondary_Tattoo_Location" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "OracleBreedID" type = "xs: int" minOccurs = "0" / >

    < xs: element name = "JrValidationBreedName" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "ValidationDate" type = "xs: DateTime" minOccurs = "0" / >

    < xs: element name = "ValidatedBy" type = "xs: String" minOccurs = "0" / >

    < xs: element name = "ValidationComment" type = "xs: String" minOccurs = "0" / >

    < / xs: SEQUENCE >

    < / xs: complexType >

    < / xs: element >

    < / xs: Choice >

    < / xs: complexType >

    < / xs: element >

    < / xs: Schema >

    < xmlns:msdata = diffgr:diffgram "" urn: schemas-microsoft-com: xml-msdata "xmlns:diffgr =" urn: schemas-microsoft-com: XML-diffgram-v1 ">"

    < DocumentElement xmlns = "" >

    < JrShowCustomerHeifers diffgr: ID = "JrShowCustomerHeifers1" msdata:rowOrder = "0" >

    < > 18442 DocumentID < / DocumentID >

    < ClubName > Perrin FFA < / ClubName >

    Hamman < name > < / LastName >

    < FirstName > Charles < / name >

    < email > [email protected] < / email >

    < setting > hammam, Charles < / Exhibitor >

    < > 113 AnimalName < / AnimalName >

    < RegistryNo > C1026447 < / RegistryNo >

    < DateofBirth > 14/01/2013 < / DateofBirth >

    < NameofSire > 808 808 DAYS of MATCH LH < / NameofSire >

    < SireRegistryNo > C961101 < / SireRegistryNo >

    SADIE 7/7 < NameofDam > < / NameofDam >

    < DamRegistryNo > C941067 < / DamRegistryNo >

    < > 113 tattoo < / tattoo >

    < SecondaryTattoo / >

    < UniversalIDNumber > 1194F020 < / UniversalIDNumber >

    < Tattoo_Location > TATTOO - left ear < / Tattoo_Location >

    < Secondary_Tattoo_Location / >

    < OracleBreedID > 6383 < / OracleBreedID >

    Beefmaster < JrValidationBreedName > < / JrValidationBreedName >

    < ValidationDate > 2014-11-25T 08: 39:00 - 06:00 < / ValidationDate >

    < ValidatedBy > laineyb < / ValidatedBy >

    < ValidationComment / >

    < / JrShowCustomerHeifers >

    < JrShowCustomerHeifers diffgr: ID = "JrShowCustomerHeifers2" msdata:rowOrder = "1" >

    < > 18473 DocumentID < / DocumentID >

    < ClubName > Perrin FFA < / ClubName >

    Hamman < name > < / LastName >

    < FirstName > Charles < / name >

    < email > [email protected] < / email >

    < setting > hammam, Charles < / Exhibitor >

    < AnimalName > PURPLE CORALEE 349 KPH < / AnimalName >

    < RegistryNo > P43461953 < / RegistryNo >

    < DateofBirth > 04/11/2013 < / DateofBirth >

    < NameofSire > PURPLE MOXY 22 X AND < / NameofSire >

    < SireRegistryNo > P43126458 < / SireRegistryNo >

    < NameofDam > TCC CORKY 6603 < / NameofDam >

    < DamRegistryNo > P42457119 < / DamRegistryNo >

    < > 349 tattoo < / tattoo >

    < SecondaryTattoo > km/h < / SecondaryTattoo >

    < UniversalIDNumber > 1194F021 < / UniversalIDNumber >

    < Tattoo_Location > TATTOO - left ear < / Tattoo_Location >

    < Secondary_Tattoo_Location > TATTOO - right ear < / Secondary_Tattoo_Location >

    < OracleBreedID > 6389 < / OracleBreedID >

    < JrValidationBreedName > Polled Hereford < / JrValidationBreedName >

    < ValidationDate > 2014 - 12-01 T 11: 55:00 - 06:00 < / ValidationDate >

    Hannah < ValidatedBy > < / ValidatedBy >

    < ValidationComment / >

    < / JrShowCustomerHeifers >

    < JrShowCustomerHeifers diffgr: ID = "JrShowCustomerHeifers3" msdata:rowOrder = "2" >

    < > 18474 DocumentID < / DocumentID >

    < ClubName > Perrin FFA < / ClubName >

    Hamman < name > < / LastName >

    < FirstName > Charles < / name >

    < email > [email protected] < / email >

    < setting > hammam, Charles < / Exhibitor >

    < AnimalName > LANGFORDS SWEET N SOUR 4107 < / AnimalName >

    < RegistryNo > 43504761 < / RegistryNo >

    < DateofBirth > 02/03/2014 < / DateofBirth >

    < NameofSire > LH TNT 1017 < / NameofSire >

    < SireRegistryNo > 43199794 < / SireRegistryNo >

    < NameofDam > LANGFORDS LADY 2206 AND < / NameofDam >

    < DamRegistryNo > 43315143 < / DamRegistryNo >

    < > 4107 tattoo < / tattoo >

    < SecondaryTattoo / >

    < UniversalIDNumber > 1194F018 < / UniversalIDNumber >

    < Tattoo_Location > TATTOO - left ear < / Tattoo_Location >

    < Secondary_Tattoo_Location / >

    < OracleBreedID > 6398 < / OracleBreedID >

    Hereford < JrValidationBreedName > < / JrValidationBreedName >

    < ValidationDate > 2014-11-24T 14:26:00 - 06:00 < / ValidationDate >

    Validator < ValidatedBy > < / ValidatedBy >

    < ValidationComment / >

    < / JrShowCustomerHeifers >

    < JrShowCustomerHeifers diffgr: ID = "JrShowCustomerHeifers4" msdata:rowOrder = "3" >

    < > 18475 DocumentID < / DocumentID >

    < ClubName > Perrin FFA < / ClubName >

    Hamman < name > < / LastName >

    < FirstName > Charles < / name >

    < email > [email protected] < / email >

    < setting > hammam, Charles < / Exhibitor >

    < AnimalName > PURPLE CCC 19A LYDIA < / AnimalName >

    < RegistryNo > P43406978 < / RegistryNo >

    < DateofBirth > 05/02/2013 < / DateofBirth >

    < NameofSire > PURPLE MB WOMANIZER 14UET < / NameofSire >

    < SireRegistryNo > P42945146 < / SireRegistryNo >

    < NameofDam > PURPLE CMCC NASTIA 9U < / NameofDam >

    < DamRegistryNo > P42927201 < / DamRegistryNo >

    < > 19A tattoo < / tattoo >

    < SecondaryTattoo / >

    < UniversalIDNumber > 1194F017 < / UniversalIDNumber >

    < Tattoo_Location > TATTOO - left ear < / Tattoo_Location >

    < Secondary_Tattoo_Location / >

    < OracleBreedID > 6389 < / OracleBreedID >

    < JrValidationBreedName > Polled Hereford < / JrValidationBreedName >

    < ValidationDate > 2014 - 12-01 T 11: 55:00 - 06:00 < / ValidationDate >

    Hannah < ValidatedBy > < / ValidatedBy >

    < ValidationComment / >

    < / JrShowCustomerHeifers >

    < JrShowCustomerHeifers diffgr: ID = "JrShowCustomerHeifers5" msdata:rowOrder = "4" >

    < > 18477 DocumentID < / DocumentID >

    < ClubName > Perrin FFA < / ClubName >

    Hamman < name > < / LastName >

    < FirstName > Charles < / name >

    < email > [email protected] < / email >

    < setting > hammam, Charles < / Exhibitor >

    < AnimalName > PURPLE SGW EDEN 12 b < / AnimalName >

    < RegistryNo > P43521932 < / RegistryNo >

    < DateofBirth > 02/04/2014 < / DateofBirth >

    < NameofSire > first TIME's a WASTINe 0124 < / NameofSire >

    < SireRegistryNo > 43123163 < / SireRegistryNo >

    < NameofDam > PURPLE SM WONDER WOMAN 160Y < / NameofDam >

    < DamRegistryNo > P43235169 < / DamRegistryNo >

    < tattoo > 12 b < / tattoo >

    < SecondaryTattoo > 12 b < / SecondaryTattoo >

    < UniversalIDNumber > 1194F015 < / UniversalIDNumber >

    < Tattoo_Location > TATTOO - left ear < / Tattoo_Location >

    < Secondary_Tattoo_Location > TATTOO - right ear < / Secondary_Tattoo_Location >

    < OracleBreedID > 6389 < / OracleBreedID >

    < JrValidationBreedName > Polled Hereford < / JrValidationBreedName >

    < ValidationDate > 2014 - 12-01 T 11: 56:00 - 06:00 < / ValidationDate >

    Hannah < ValidatedBy > < / ValidatedBy >

    < ValidationComment / >

    < / JrShowCustomerHeifers >

    < / DocumentElement >

    < / diffgr:diffgram >

    < / DataTable >

    user12021633 wrote:

    Regarding your suggestion, I've never used the syntax of FLWOR. I'll try to implement if I can make it work.

    "FLWOR is the abbreviation of ' for Let's where Order by Return" and refers to the full form of an XQuery query expression.

    Do you think it would be faster than the way I have the values?

    You have used a FLWOR expression (the 'for' + 'return' part of it) in this post: Re: Please help to read the XML with XMLTable

    And I have already said: do not use in this case.

    Faster or slower isn't the point. Oracle will evaluate the expression in the same way.

    But from a maintenance point of view, it's obviously much easier to use a simple XPath expression like this:

    /DT:GetJrShowCustomerHeifersResponse / dt:GetJrShowCustomerHeifersResult / dg:diffgram/DocumentElement/JrShowCustomerHeifers

  • OSB: How to read the xml file, which is in OSB project

    Hello

    We have a generic proxy (PG1) reporting and deals alerts, this proxy is called in the pipelines of proxies anothers (P1... PN) in several projects. Each client proxy (P1... PN) PN) before call proxy PG1, configures a variable with syntactic alert or report.

    We thought it would be a good idea to store the specifications for all the proxies of a project as an xml file, so that the proxy PG could read the xml file. This file will be in the OSB project.

    The questions are:
    -proxy can read a xml file that is in the OSB project?
    S ' Please, are all the documentation for this?

    Thank you

    Kind regards

    You can always do customization to work with the properties defined in a XML xquery. The key to this is to use the customization of reference instead of find and replace the customization, similar to the service account customizations.
    Keep your real estate to as properties_dev of env xquery specific xmls, properties_sit etc then apply customization of service proxy xquery reference reference specific correct env.

  • Need help to check the switch VMNIC and VNIC DVS mapping...

    Need help to check the switch VMNIC and VNIC DVS mapping...

    I checked the command net-dvs, but it was not useful.

    Thank you

    Ravinder Singh...

    You do not have access on the interfaces between itself or this info is not visible in vCenter? Probably, you should talk to one who is in charge of your nexus dvSwitch.

    I don't know how it works on the nexus 1000v switch, but the output of the net-dvs provides information on balancing policy for all ports (note that he understands the uplink ports that may still occur as "port id of virtual source"):

    # net-dvs. "grep EI ' (Balancing | port)"

    port 320:

    source port = load balancing virtual id

    port 321:

    source port = load balancing virtual id

    port 177:

    source port = load balancing virtual id

    You should also be able to enter this info from esxcli, but I don't know if there is a hook to esxcli for the link. Perhaps, you can branch off with cisco of dvs esxcli vswitch network or something. On the dVS of vmware, you could do:

    # esxcli dvs lacp vmware vswitch network status

    LACP is disabled on DVSwitch.


    # esxcli dvs lacp get config vmware vswitch network

    DVS name LAG ID cards active network Mode

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

    Vmnic1 Some_DVSwitch 0, vmnic3 false

  • I have the latest downloadable version of the LR5.  It crashed while it was perceived 1:1 uttered during an import. After a restart of the Win764(), it displays a message that LR has to leave because he cannot read the preview files and it will try to fix

    I have the latest downloadable version of the LR5.  It crashed while it was perceived 1:1 uttered during an import. After a restart of the Win764(), it shows a message that LR has to leave because he cannot read the preview files and it will try to fix it the next time's lance.  I get the same message to another and whenever he throws so I can't launch LR at all now.

    I get the preview of a file has been corrupted somehow.  Is it possible to fix this without having to build a new catalog?

    Use Windows Explorer to open the folder containing your catalog. You will see a folder with the extension .lrdata. You must remove this folder, and then restart the Lightroom. Lightroom will generate a new folder of previews.

  • Parse the XML file and extract data

    I want to parse a XML file and get the data as columns.

    Input country.xml file:

    <?xml version="1.0" encoding="UTF-8"?>
    <MAS Action="Insert">
    <Country ObjectId="100000000000000009" VersionId="8"><Id>1</Id><NlTexts><Name Language="de">Land1</Name><Name Language="en">Country1</Name></NlTexts></Country>
    <Country ObjectId="100000000000000033" VersionId="2"><Id>2</Id><NlTexts><Name Language="de">Land2</Name><Name Language="en">Country1</Name></NlTexts></Country>
    </MAS>
    
    

    I would like to analyze the xmlfile to get the following result

    Required result:

    col1        col2           col3
    1            Land1        Country1
    2            Land2        Country2
    

    or alternatively

    col1  col2       
    1            Land1       
    1            Country1
    2            Land2       
    2            Country2
    

    I tried the extract function

    select extract((XMLTYPE(BFILENAME('XML_DAT_DIR', 'country.xml'),
               NLS_CHARSET_ID('AL32UTF8'))) , '/*/*/Id') as "xdata"
    from dual;
    
    xdata
    ------------------------
    <Id>1</Id><Id>2</Id>
    

    and XMLTABLE (but how can I add countries now)

    SELECT *
        FROM XMLTABLE('/*/*/Id'
               PASSING XMLTYPE(BFILENAME('XML_DAT_DIR', 'country.xml'),
               NLS_CHARSET_ID('AL32UTF8'))
           )
      ;
    COLUMN_VALUE
    ------------------------
    <Id>1</Id>
    <Id>2</Id>
    

    DB version 11.2.0.3 on Windows 64-bit

    Thank you

    Tim

    Here are a few examples.

    For your output required:

    SELECT *.

    FROM XMLTable)

    "/ MAS/country".

    from XMLType (bfilename ('TEST_DIR', 'country.xml'), nls_charset_id ('AL32UTF8'))

    number of columns col1 way "Id".

    , col2 varchar2 (30) path "NlTexts/name [1].

    , col3 varchar2 (30) path "NlTexts/name [2]»

    )

    ;

    or, if the Language attribute is significant:

    SELECT *.

    FROM XMLTable)

    "/ MAS/country".

    from XMLType (bfilename ('TEST_DIR', 'country.xml'), nls_charset_id ('AL32UTF8'))

    number of columns col1 way "Id".

    col2 varchar2 (30) path "NlTexts/Name[@Language="de"]"

    col3 varchar2 (30) path "NlTexts/Name[@Language="en"]"

    )

    ;

    For your alternate exit:

    SELECT x1.col1

    x2.col2

    -, x2.col3

    FROM XMLTable)

    "/ MAS/country".

    from XMLType (bfilename ('TEST_DIR', 'country.xml'), nls_charset_id ('AL32UTF8'))

    number of columns col1 way "Id".

    , path of xmltype names ' NlTexts/name '.

    ) x 1

    XMLTable)

    "/ Name".

    in passing x1.names

    path of column col2 varchar2 (30) '.'

    -, col3 to ordinalite

    ) x 2

    ;

    (uncomment col3 to see what he does)

    or in a shorter way:

    SELECT *.

    FROM XMLTable)

    ' for $i/MAS/country

    , $j in $ NlTexts/i/name

    Returns the r element {$i / Id, $j}'

    from XMLType (bfilename ('TEST_DIR', 'country.xml'), nls_charset_id ('AL32UTF8'))

    number of columns col1 way "Id".

    , col2 varchar2 (30) path 'name '.

    ) ;

  • Reading a text file and store it in a table, guard return 0.

    Hello, I have an application where I need to read the speed and rate of a text file. For this application, I use a myRIO NEITHER and I want to save the text file on the drive the myRIO aboard in the tmp folder. I simplified my request to isolate the possible problem and I will attach a sample text file and my VI is used.

    Overview:

    I use a myRIO project because in my real application I myRIO VI of PWM and encoder. I noticed that my problem goes away when just open the main VI and run the application in LabView. My problem then that chairs the VI on a project myRIO folder.

    To address the issue:

    My question is, when running the VI of the hand of a project myRIO folder everything works as it is supposed to, but when you open the text file in my Subvi, it returns 0, as if nothing is in the text file. Now if I open the VI outside myRIO se project file it works just assumed that when X = 1, it opens the text file written data in a table and then close the text file. I can't understand why he reads nothing in the text file executing the main VI of a project of myRIO and when I use run to highlight one can see it opens the text file and then returns nothing. The text "test" file must be placed in the tmp folder on board the myRIO to validate my way.

    Is there a way to fix this?

    I assume because I use a myRIO project I can't access the file text, or because of how LabView?

    Any help is appreciated, thanks in advance!

    You don't have your son wired error upward.  You're files showing error functions?

    What context are you running VI when you are within the project and what context from outside the project?

    My suspicion is that in one case, you run on your PC, the other on the cRIO.  Your file exists only on one device or the other.  And also that when you change your PC for the cRIO, your file path must change.  It's very strange that your watch VI access you the disk R:\.  I bet that the R:\ car n does not exist on your cRIO.

  • Transfer of files from the old HARD DRIVE to new computer without an old computer. (He's dead - can not use) I have the hard drive, but need help to transfer my old files and settings.

    ·        My old Win XP computer died - it is completely unusable. I bought a new PC with Win 7 Pro and 1 TB. I still have the old HARD DRIVE (250 GB) which I have attached on the new computer using an external enclosure supports SATA drives. The external hard drive is connected to the computer in USB 3.0. I checked that the new computer can see the external hard drive. (I also used for backups by changing the hard drive with a 2 TB drive 'mass storage' - that works.)

    I searched the internet for possible solutions and found no help. If the transfer of files from Microsoft would change the disc to analyze, it would be simple. But if I select the OLD computer it scans the disk I'm on (new) - automatically.

    Is there anyone who has had the same problem? He must be because computers die all the time and people buy new computers - who then, somehow, they get the former transferred files. I could do it manually, but that wouldn't change the settings. Last resort would be to buy an old computer XP (SATA), replace the drive. Transfer the files, and then sell this computer.

    You may be able to recover your data files, but I hope that you will set up your new system to automatically backup a second internal hard drive or an external USB hard drive.

    This suggestion may not work, but it's worth a try. Buy an external USB drive enclosure. They come in two sizes 2.5 "for the portable computer drives and 3.5" for desktop disks. You can purchase adapters for 3.5 "envelopes so that they can also be used with a portable player. Place the hard drive in the enclosure and connect to a USB port of another computer. Several hard disks are more able to start, but the contents of the disc can still be accessed, read and copied from the disk because you do not use the operating system on a failed disk.

    Here is an example of the type of device, I suggest:
    http://www.amazon.co.uk/s/?ie=UTF8&keywords=external+hardrive+enclosure&tag=googhydr-21&index=aps&hvadid=14388537836&hvpos=1t1&hvexid=&hvnetw=g&hvrand=556960941559985931&hvpone=&hvptwo=&hvqmt=b&ref=pd_sl_32uorbwbuk_b

    You need only to the speaker, that you see are not necessarily more expensive. Thereafter, you can put an old hard drive usable, an abandoned because you need a larger drive internal, in the enclosure and use it as additional external storage.

  • need help on deleting the recent files in photoshop on Mac.

    When you start up of photoshop and your in the start screen where it shows all your files, how to remove the file from this screen. I can remove them from my finder section where it shows all the documents and files and downloads, but it will not remove them from the recent files in photoshop. I need to clean my files please help.need

    Hi charlienelson,

    Please follow the steps below.

    > Launch Photoshop

    > Click on file > open recent > clear recent files list

    > Restart Photoshop and check for the issue.

    Let me know if it helps.

    ~ UL

  • File adapter to read the Zip file and send it as input to another Web service

    Hello

    I have the below:

    1. a service will generate 3 attachments and place it in a particular directory.

    2 SOA service must take these 3 files and send these files as input for another custom application that will send by e-mail.

    Design:

    1. first SOA will create a file from archive of these 3 attachments and then file adapter queries for this zip file in this location and send this file as a whole to the custom application.

    Query:

    Now my question is above feasible version? If so, how to configure the file adapter to pass the file as input for this custom application?

    Kindly do the needful

    Thank you

    Priya

    You can do this using java embedding activity... Create a java coating, which will create a zip file... This java code is easy to implement...

    You can also do away with unnecessary vote... file adapter and you can use the "Synchronous file read" operation of the file adapter... Read Sync, you will need to pass the name of the zip file, you can easily extract activity integration of java...

    Let me know, if it does not work.

  • Help to read the trace file

    Hi Mike,.
    about my previous post HS Agent vs. Gateway,.
    It is the result of the trace file when the deadlock occurred.

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


    Oracle Corporation - Monday January 11, 2010 11:03:58.901


    Heterogeneous Agent release
    11.1.0.6.0




    Oracle Corporation - Monday January 11, 2010 11:03:58.900

    Version 11.1.0.6.0

    Hgogprd entries
    HOSGIP to 'HS_FDS_TRACE_LEVEL' returned 'DEBUG '.
    Hgosdip entries
    default assignment of 50 HS_OPEN_CURSORS
    HOSGIP returned the value of 'RECOVER' for HS_FDS_RECOVERY_ACCOUNT
    HOSGIP returned value for HS_FDS_RECOVERY_PWD
    layout HS_FDS_TRANSACTION_LOG or "HS_TRANSACTION_LOG".
    layout by default HS_FDS_TRANSACTION_ISOLATION of "READ_COMMITTED".
    layout by default «AL32UTF8» HS_NLS_NCHAR
    parameter HS_FDS_TIMESTAMP_AS_DATE if there is no 'TRUE '.
    layout HS_RPC_FETCH_REBLOCKING failure to 'ON '.
    HS_FDS_FETCH_ROWS layout without '100 '.
    parameter HS_FDS_RESULTSET_SUPPORT default 'FALSE '.
    parameter HS_FDS_PROC_IS_FUNC default 'FALSE '.
    parameter HS_FDS_CHARACTER_SEMANTICS default 'FALSE '.
    parameter HS_FDS_MAP_NCHAR if there is no 'TRUE '.
    setting HS_NLS_DATE_FORMAT or 'YYYY-MM-DD HH24:MI:SS ".
    parameter HS_FDS_REPORT_REAL_AS_DOUBLE default 'FALSE '.
    HS_LONG_PIECE_TRANSFER_SIZE layout without "65536".
    parameter HS_SQL_HANDLE_STMT_REUSE default 'FALSE '.
    parameter HS_FDS_QUERY_DRIVER default 'FALSE '.
    HS_CALL_NAME_ISP layout "gtw$: SQLTables; GTW$: SQLColumns. GTW$: SQLPrimaryKeys. GTW$: SQLForeignKeys. GTW$: SQLProcedures. "gtw$: SQLStatistics.
    Release of hgosdip, rc = 0
    ORACLE_SID is 'sysdevdsn '.
    Product information:
    Port RLS / Upd:6 / 0 PrdStat:0
    Agent: Oracle Database Gateway for MSSQL
    : Installation
    Class: MSSQL, ClassVsn:11.1.0.6.0_0006, Instance: sysdevdsn
    Release of hgogprd, rc = 0
    Hgoinit entries
    HOCXU_COMP_CSET = 1
    HOCXU_DRV_CSET = 31
    HOCXU_DRV_NCHAR = 873
    HOCXU_DB_CSET = 31
    HOCXU_SEM_VER = 90200
    Entry hgolofn at 2010/01/11-11: 03:58
    ODBCINST value ' / oracle11g/ora11_1g/dg4msql/driver/dg4msql.loc '.
    RC =-1 of HOSGIP for 'LD_LIBRARY_PATH '.
    LD_LIBRARY_PATH to environment is "/ oracle11g/ora11_1g/dg4msql/pilot/lib: / lib/ora11_1g/oracle11g."
    Affecting LD_LIBRARY_PATH "/ oracle11g/ora11_1g/dg4msql/pilot/lib: / oracle11g/ora11_1g/dg4msql/pilot/lib: / lib/ora11_1g/oracle11g."
    HOSGIP to 'HS_FDS_SHAREABLE_NAME_ICU' returned ' / oracle11g/ora11_1g/dg4msql/driver/lib/libHGicu22.so '.
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf4c6008
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    HOSGIP to 'HS_FDS_SHAREABLE_NAME_INST' returned ' / oracle11g/ora11_1g/dg4msql/driver/lib/libodbcinst.so '.
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf4c7330
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    HOSGIP to 'HS_FDS_SHAREABLE_NAME' returned ' / oracle11g/ora11_1g/dg4msql/driver/lib/libodbc.so '.
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34eca0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ecb0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ecc0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ecd0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ece0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ecf0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ed00
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ed10
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ed20
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ed30
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ed40
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ed50
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ed60
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ed70
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ed80
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ed90
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34eda0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34edb0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34edc0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34edd0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ede0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34edf0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ee00
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ee10
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ee20
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ee30
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ee40
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ee50
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ee60
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ee70
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ee80
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ee90
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34eea0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34eeb0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34eec0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34eed0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34eee0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34eef0
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ef00
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ef10
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ef20
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ef30
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Entry hgolofns at 2010/01/11-11: 03:58
    symbol_peflctx = 0xbf34ef40
    hoaerr:0
    Output hgolofns 2010/01/11-11: 03:58
    Release of hgolofn, rc = 0 at 2010/01/11-11: 03:58
    HOSGIP to 'HS_OPEN_CURSORS' returned '50 '.
    HOSGIP to 'HS_FDS_FETCH_ROWS' returned '100 '.
    HOSGIP for "HS_LONG_PIECE_TRANSFER_SIZE" returned "65536".
    HOSGIP to 'HS_NLS_NUMERIC_CHARACTER' returned '. "
    Release of hgoinit, rc = 0 at 2010/01/11-11: 03:58
    Entry hgolgon at 2010/01/11-11: 03:58
    name: B2CUPLOAD, reco:0, tflag:0
    Entry hgosuec at 2010/01/11-11: 03:58
    UEncoding = UTF8
    Entry shgosuec at 2010/01/11-11: 03:58
    Release of shgosuec, rc = 0 at 2010/01/11-11: 03:58
    returned shgosuec() rc = 0
    Release of hgosuec, rc = 0 at 2010/01/11-11: 03:58
    HOSGIP to 'HS_FDS_RECOVERY_ACCOUNT' returned 'RECOVER '.
    HOSGIP to 'HS_FDS_TRANSACTION_LOG' returns ""HS_TRANSACTION_LOG"
    HOSGIP for "HS_FDS_TIMESTAMP_AS_DATE" returns 'TRUE '.
    HOSGIP to 'HS_FDS_CHARACTER_SEMANTICS' returned 'FALSE '.
    HOSGIP for "HS_FDS_MAP_NCHAR" returns 'TRUE '.
    HOSGIP to 'HS_FDS_RESULT_SET_SUPPORT' returned 'FALSE '.
    HOSGIP to 'HS_FDS_PROC_IS_FUNC' returned 'FALSE '.
    HOSGIP to 'HS_FDS_REPORT_REAL_AS_DOUBLE' returned 'FALSE '.
    using B2CUPLOAD as a default value to "HS_FDS_DEFAULT_OWNER".
    HOSGIP to 'HS_SQL_HANDLE_STMT_REUSE' returned 'FALSE '.
    Entry hgocont at 2010/01/11-11: 03:58
    HS_FDS_CONNECT_INFO = "cs - sql2:1049 / / sysdev.
    RC =-1 of HOSGIP for 'HS_FDS_CONNECT_STRING '.
    Entry hgogenconstr at 2010/01/11-11: 03:58
    DSN:CS - sql2:1049 / / sysdev, name: B2CUPLOAD
    OPTN:
    Entry shgogohn at 2010/01/11-11: 03:58
    Release of shgogohn, rc = 28500 at 2010/01/11-11: 03:58
    Entry hgocont_OracleCsidToIANA at 2010/01/11-11: 03:58
    Back 4
    Output hgocont_OracleCsidToIANA 2010/01/11-11: 03:58
    # > connection settings (len = 202) < #.
    # DRIVER = Oracle 11 g dg4msql;
    # Address = cs-sql2, 1049;
    # Database = sysdev;
    #! UID = B2CUPLOAD;
    #! PWD = *.
    # AnsiNPW = Yes;
    # QuotedId = Yes;
    # IANAAppCodePage = 4;
    # ArraySize = 100;
    # PadVarbinary = 0;
    # SupportNumericPrecisionGreaterThan38 = 1;
    Release of hgogenconstr, rc = 0 at 2010/01/11-11: 03:58
    DriverName:HGmsss22.so, DriverVer:05.20.0100 (b0062, u0033)
    DBMS name: Microsoft SQL Server DBMS Version: 08.00.2039
    Release of hgocont, rc = 0 at 2010/01/11-11: 03:58
    SQLGetInfo Returns Y for SQL_CATALOG_NAME
    SQLGetInfo Returns 128 for SQL_MAX_CATALOG_NAME_LEN
    Release of hgolgon, rc = 0 at 2010/01/11-11: 03:58
    Entry hgoulcp at 2010/01/11-11: 03:58
    Entry hgowlst at 2010/01/11-11: 03:58
    Release of hgowlst, rc = 1 at 2010/01/11-11: 03:58
    SQLGetInfo Returns Y for SQL_PROCEDURES
    Release of hgoulcp, rc = 0 at 2010/01/11-11: 03:59
    Entry hgouldt at 2010/01/11-11: 03:59
    Release of hgouldt, rc = 0 at 2010/01/11-11: 03:59
    Entry hgobegn at 2010/01/11-11: 03:59
    tflag:0, original: 1
    Hoi:0xffffe1b8, ttid (len 38) is...
    00: 4149 534543 4 434C 4D42532E 5552452E [MBS. CLAIMSECURE.]
    10: 31613362 38643035 2E372E39 [COM.1a3b8d05.7.9] 434F4D2E
    20: 2E333330 3038 [. 33008]
    tbid (len 10) is...
    0: F0800000 07000900 0104 [...]
    Release of hgobegn, rc = 0 at 2010/01/11-11: 03:59
    Entry hgodtab at 2010/01/11-11: 03:59
    number: 1
    Table: DBO. B2C_PIN_PROFILE
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:1 (BP_PIN_ID): dtype:12 (VARCHAR), prc / scl:15 / 0, nullbl:0, byte: 15, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:2 (BP_PIN_STATUS): dtype:1 (CHAR), prc / scl:1 / 0, nullbl:0, byte: 1, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:3 (BP_CREATE_DATE): dtype:93 (TIMESTAMP), prc / scl:23 / 3, nullbl:0, byte: 1, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:4 (BP_ACTIVE_DATE): dtype:93 (TIMESTAMP), prc / scl:23 / 3, nullbl:1, byte: 1, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:5 (BP_LAST_LOGON_DATE): dtype:93 (TIMESTAMP), prc / scl:23 / 3, nullbl:1, byte: 1, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:6 (BP_TERM_DATE): dtype:93 (TIMESTAMP), prc / scl:23 / 3, nullbl:1, byte: 1, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:7 (BP_PSWD): dtype:12 (VARCHAR), prc / scl:255 / 3, nullbl:1, byte: 255, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:8 (BP_PSWD_RESET): dtype:1 (CHAR), prc / scl:1 / 3, nullbl:1, byte: 1, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:9 (BP_PSWD_DATE): dtype:93 (TIMESTAMP), prc / scl:23 / 3, nullbl:1, byte: 1, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:10 (BP_EMAIL_ADDRESS): dtype:12 (VARCHAR), prc / scl:50 / 3, nullbl:0, byte: 50, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:11 (BP_IP_ADDRESS): dtype:12 (VARCHAR), prc / scl:100 / 3, nullbl:1, byte: 100, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:12 (BP_URL_REFERER): dtype:12 (VARCHAR), prc / scl:255 / 3, nullbl:1, byte: 255, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:13 (BP_IN_CERT): dtype:1 (CHAR), prc / scl:10 / 3, nullbl:1, byte: 10, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:14 (BP_IN_GRP): dtype:1 (CHAR), prc / scl:6 / 3, nullbl:1, byte: 6, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:15 (BP_IN_FIRST_NAME): dtype:12 (VARCHAR), prc / scl:30 / 3, nullbl:1, byte: 30, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:16 (BP_IN_LAST_NAME): dtype:12 (VARCHAR), prc / scl:40 / 3, nullbl:1, byte: 40, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:17 (BP_IN_DOB): dtype:93 (TIMESTAMP), prc / scl:23 / 3, nullbl:1, byte: 40, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:18 (BP_IN_QUESTION): dtype:12 (VARCHAR), prc / scl:255 / 3, nullbl:1, byte: 255, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:19 (BP_IN_ANSWER): dtype:12 (VARCHAR), prc / scl:255 / 3, nullbl:1, byte: 255, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:20 (BP_DB_CREATE_DATE): dtype:93 (TIMESTAMP), prc / scl:23 / 3, nullbl:1, byte: 255, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:21 (BP_DB_SOURCE): dtype:1 (CHAR), prc / scl:1 / 3, nullbl:1, byte: 1, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:22 (BP_DB_RELATIONSHIP): dtype:1 (CHAR), prc / scl:2 / 3, nullbl:1, byte: 2, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:23 (BP_DB_DIV): dtype:1 (CHAR), prc / scl:3 / 3, nullbl:1, byte: 3, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:24 (BP_DB_UNIT): dtype:1 (CHAR), prc / scl:3 / 3, nullbl:1, byte: 3, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:25 (BP_DB_FIRST_NAME): dtype:12 (VARCHAR), prc / scl:30 / 3, nullbl:1, byte: 30, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:26 (BP_DB_LAST_NAME): dtype:12 (VARCHAR), prc / scl:40 / 3, nullbl:1, byte: 40, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:27 (BP_DB_GRP_TYPE): dtype:1 (CHAR), prc / scl:1 / 3, nullbl:1, byte: 1, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:28 (BP_DB_CERT_EFF_DATE): dtype:93 (TIMESTAMP), prc / scl:23 / 3, nullbl:1, byte: 1, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:29 (BP_DB_INS): dtype:1 (CHAR), prc / scl:4 / 3, nullbl:1, byte: 4, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:30 (BP_HOLD_EFT): dtype:-7 (BIT), prc / scl:1 / 0, nullbl:1, byte: 4, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:31 (BP_PROVIDER): dtype:1 (CHAR), prc / scl:14 / 0, nullbl:1, byte: 14, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:32 (BP_BENEFIT): dtype:1 (CHAR), prc / scl:2 / 0, nullbl:1, byte: 2, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopcda at 2010/01/11-11: 03:59
    Column:33 (BP_CORP_EMAIL_ADDRESS): dtype:12 (VARCHAR), prc / scl:100 / 0, nullbl:1, byte: 100, sign: 1, radix: 0
    Release of hgopcda, rc = 0 at 2010/01/11-11: 03:59
    The hoada for the dbo. B2C_PIN_PROFILE follows...
    hgodtab, line 577: print hoada @ 600000000035bfa0
    MAX: 33, REAL: 33, BRC:1, WHT = 6
    DTY NULL-OK LEN MAXBUFLEN PR/SC CSE IND MOD NAME
    12 VARCHAR N 15 15 0 / 0 0 0 0 BP_PIN_ID
    1 TANK 1 1 N 0 0 0 0 0 BP_PIN_STATUS
    N DATE 91 16 16 0 / 0 0 0 0 BP_CREATE_DATE
    Y DATE 91 16 16 0 / 0 0 0 0 BP_ACTIVE_DATE
    Y DATE 91 16 16 0 / 0 0 0 0 BP_LAST_LOGON_DATE
    Y DATE 91 16 16 0 / 0 0 0 0 BP_TERM_DATE
    12. IS VARCHAR 255 255 0 / 0 0 0 0 BP_PSWD
    1 CHAR Y 1 1 0 0 0 0 0 BP_PSWD_RESET
    Y DATE 91 16 16 0 / 0 0 0 0 BP_PSWD_DATE
    12 VARCHAR N 50 50 0 / 0 0 0 0 BP_EMAIL_ADDRESS
    12 YEARS OF VARCHAR 100 100 0 / 0 0 0 0 BP_IP_ADDRESS
    12. IS VARCHAR 255 255 0 / 0 0 0 0 BP_URL_REFERER
    1 CHAR Y 10 10 0 / 0 0 0 0 BP_IN_CERT
    TANK 1 Y 6 6 0 / 0 0 0 0 BP_IN_GRP
    12 YEARS OF VARCHAR 30 30 0 / 0 0 0 0 BP_IN_FIRST_NAME
    12 YEARS OF VARCHAR 40 40 0 / 0 0 0 0 BP_IN_LAST_NAME
    Y DATE 91 16 16 0 / 0 0 0 0 BP_IN_DOB
    12. IS VARCHAR 255 255 0 / 0 0 0 0 BP_IN_QUESTION
    12. IS VARCHAR 255 255 0 / 0 0 0 0 BP_IN_ANSWER
    Y DATE 91 16 16 0 / 0 0 0 0 BP_DB_CREATE_DATE
    1 CHAR Y 1 1 0 0 0 0 0 BP_DB_SOURCE
    TANK 1 Y 2 2 0 0 0 0 0 BP_DB_RELATIONSHIP
    TANK 1 Y 3 3 0 / 0 0 0 0 BP_DB_DIV
    TANK 1 Y 3 3 0 / 0 0 0 0 BP_DB_UNIT
    12 YEARS OF VARCHAR 30 30 0 / 0 0 0 0 BP_DB_FIRST_NAME
    12 YEARS OF VARCHAR 40 40 0 / 0 0 0 0 BP_DB_LAST_NAME
    1 CHAR Y 1 1 0 0 0 0 0 BP_DB_GRP_TYPE
    Y DATE 91 16 16 0 / 0 0 0 0 BP_DB_CERT_EFF_DATE
    1 TANK 4 4 Y 0 / 0 0 0 0 BP_DB_INS
    -7-BIT 1 1 Y 0 / 0 0 0 20 BP_HOLD_EFT
    1 CHAR Y 14 14 0 / 0 0 0 0 BP_PROVIDER
    TANK 1 Y 2 2 0 0 0 0 0 BP_BENEFIT
    12 YEARS OF VARCHAR 100 100 0 / 0 0 0 0 BP_CORP_EMAIL_ADDRESS
    Release of hgodtab, rc = 0 at 2010/01/11-11: 03:59
    Entry hgodafr, cursor id 0 at 2010/01/11-11: 03:59
    Release of hgodafr, rc = 0 at 2010/01/11-11: 03:59
    Entry hgotcis at 2010/01/11-11: 03:59
    SQLStatistics requires the DBO. B2C_PIN_PROFILE
    IndexType SQL_TABLE_STAT =: cardinality = 114894
    New index: PK_BP_PIN_ID, = 1, ASCENDING, SINGLE type, cardinality = 114894
    ordinal position = 1
    New index: IDX_BP_IN_CERT, type = 3, ASCENDANT, NON-UNIQUE, cardinality = 114894
    ordinal position = 1
    New index: IDX_PROVIDER_B2C_PIN_PROFILE, type = 3, ASCENDANT, NON-UNIQUE, cardinality = 114894
    ordinal position = 1
    ordinal position = 2
    Call to SQLColumns to DBO. B2C_PIN_PROFILE
    Column 'BP_PIN_ID': dtype = 12, colsize = 15, decdig = 0, char_octet_length = 15, len line cumulative avg = 11
    Column 'BP_PIN_STATUS': dtype = 1 colsize = 1, decdig = 0, char_octet_length = 1, len cumulative average line = 12
    Column 'BP_CREATE_DATE': dtype = 93, colsize = 23, decdig = 3, = 1 char_octet_length, cumulative avg line len = 28
    Column 'BP_ACTIVE_DATE': dtype = 93, colsize = 23, decdig = 3, = 1 char_octet_length, cumulative avg line len = 44
    Column 'BP_LAST_LOGON_DATE': dtype = 93, colsize = 23, decdig = 3, = 1 char_octet_length, cumulative avg line len = 60
    Column 'BP_TERM_DATE': dtype = 93, colsize = 23, decdig = 3, = 1 char_octet_length, cumulative avg line len = 76
    Column 'BP_PSWD': dtype = 12, colsize = 255, decdig = 3, char_octet_length = 255, len line cumulative avg = 267
    Column 'BP_PSWD_RESET': dtype = 1 colsize = 1, decdig = 3, char_octet_length = 1, len cumulative average line = 268
    Column 'BP_PSWD_DATE': dtype = 93, colsize = 23, decdig = 3, = 1 char_octet_length, cumulative avg line len = 284
    Column 'BP_EMAIL_ADDRESS': dtype = 12, colsize = 50 decdig = 3, char_octet_length = 50, len line cumulative avg = 321
    Column 'BP_IP_ADDRESS': dtype = 12, colsize = 100, decdig = 3, char_octet_length = 100, len line cumulative avg = 396
    Column 'BP_URL_REFERER': dtype = 12, colsize = 255, decdig = 3, char_octet_length = 255, len line cumulative avg = 587
    Column 'BP_IN_CERT': dtype = 1, colsize = 10, decdig = 3, char_octet_length = 10, len line cumulative avg = 597
    Column 'BP_IN_GRP': dtype = 1, colsize = 6, decdig = 3, char_octet_length = 6, len line cumulative avg = 603
    Column 'BP_IN_FIRST_NAME': dtype = 12, colsize = 30, decdig = 3, char_octet_length = 30, len line cumulative avg = 625
    Column 'BP_IN_LAST_NAME': dtype = 12, colsize = 40, decdig = 3, char_octet_length = 40, len line cumulative avg = 655
    Column 'BP_IN_DOB': dtype = 93, colsize = 23, decdig = 3, char_octet_length = 40, len line cumulative avg = 671
    Column 'BP_IN_QUESTION': dtype = 12, colsize = 255, decdig = 3, char_octet_length = 255, len line cumulative avg = 862
    Column 'BP_IN_ANSWER': dtype = 12, colsize = 255, decdig = 3, char_octet_length = 255, len line cumulative avg = 1053
    Column 'BP_DB_CREATE_DATE': dtype = 93, colsize = 23, decdig = 3, char_octet_length = 255, len line cumulative avg = 1069
    Column 'BP_DB_SOURCE': dtype = 1 colsize = 1, decdig = 3, char_octet_length = 1, len cumulative average line = 1070
    Column 'BP_DB_RELATIONSHIP': dtype = 1, colsize = 2, decdig = 3, = 2 char_octet_length, len line cumulative avg = 1072
    Column 'BP_DB_DIV': dtype = 1, colsize = 3, decdig = 3, char_octet_length = 3, len line cumulative avg = 1075
    Column 'BP_DB_UNIT': dtype = 1, colsize = 3, decdig = 3, char_octet_length = 3, len line cumulative avg = 1078
    Column 'BP_DB_FIRST_NAME': dtype = 12, colsize = 30, decdig = 3, char_octet_length = 30, len line cumulative avg = 1100
    Column 'BP_DB_LAST_NAME': dtype = 12, colsize = 40, decdig = 3, char_octet_length = 40, len line cumulative avg = 1130
    Column 'BP_DB_GRP_TYPE': dtype = 1 colsize = 1, decdig = 3, char_octet_length = 1, len cumulative average line = 1131
    Column 'BP_DB_CERT_EFF_DATE': dtype = 93, colsize = 23, decdig = 3, = 1 char_octet_length, cumulative avg line len = 1147
    Column 'BP_DB_INS': dtype = 1, colsize = 4, decdig = 3, char_octet_length = 4, len line cumulative avg = 1151
    Column 'BP_HOLD_EFT': dtype = - 7, colsize = 1, decdig = 0, char_octet_length = 4, len line cumulative avg = 1155
    Column 'BP_PROVIDER': dtype = 1, colsize = 14, decdig = 0, char_octet_length = 14, len line cumulative avg = 1169
    Column 'BP_BENEFIT': dtype = 1, colsize = 2, decdig = 0, char_octet_length = 2, len line cumulative avg = 1171
    Column 'BP_CORP_EMAIL_ADDRESS': dtype = 12, colsize = 100, decdig = 0, char_octet_length = 100, len line cumulative avg = 1246
    Release of hgotcis, rc = 0 at 2010/01/11-11: 03:59
    Entry hgopars, id of cursor 1 at 2010/01/11-11: 03:59
    type: 0
    Text SQL hgopars, id = 1, len = 195...
    45 00: 53454 C 43542022 42505F50 494E5F49 [BP_PIN_I SELECT ' ']
    10: 22 44222C 42505F50 494E5F53 54415455 [D', BP_PIN_STATU ' "]
    20: 22 53222C 42505F41 43544956 455F4441 [S', BP_ACTIVE_DA ' "]
    30: 5445222 C 2242505F 494E5F43 45525422 [TE', 'BP_IN_CERT']
    40: 2 C 5F494E5F C 224250 47525022 2, 224250 ['BP_IN_GRP', 'BP]
    50: 52454 41 54494F4E 53484950 5F44425F [_DB_RELATIONSHIP]
    60: 22204652 4F4D2022 44424F22 2E224232 ["FROM"DBO".] ["B2]
    70: 435F5049 4E5F5052 4F46494C 45222057 [C_PIN_PROFILE' W]
    80:48455245 20224250 5F494E5F 47525022 [HERE "BP_IN_GRP"]
    90: 3D3F2041 4E442022 42505F49 4E5F4345 [=? AND 'BP_IN_CE] '.
    A0: 5254223D 3F20414E 44202242 505F4442 [RT '=? AND 'BP_DB] '.
    B0: 5F52454C 4154494F 50223 27 4E534849 [_RELATIONSHIP"=" "]
    C0: 4 4227 [MO ']
    Release of hgopars, rc = 0 at 2010/01/11-11: 03:59
    ----------------------

    I don't know how to read this. can anyone help?

    Thank you
    Lie

    Salvation lie,.
    Well, I'll control the thread for updates.

    Kind regards
    Mike

  • Need help/advice on the upgrading GFX and power supply for PC p6754y

    Hi, I want to upgrade my computer (Hp Pavilion P6000 Series, model n ° p6754y) so I can play new games such as Skyrim or Battlefield 3 on ultra. I don't know too much about computers, and it would be my first time upgrading mine. Here are the parts I have in mind.

    POWER SUPPLY

    http://www.Newegg.com/product/product.aspx?item=N82E16817341017

    GFX

    http://www.Newegg.com/product/product.aspx?item=N82E16814102908

    Please let me know if it works well with my computer or if you have other recommendations/tips instead.

    Thanks for the help

    Hello

    The power supply and the video card must be inserted.

    Try this link is your PC ready for BF3?

    Most PCs are not ready for BF3 and there is usually a faster video card and a bigger power supply.

Maybe you are looking for