Validation takes 6 minute through PL/SQL ??

the xml db provides a validate method through pl/sql methods, that takes like 6 minutes.
has the performance always been like this?

Can you show an example where it took 6 minutes? There are two Validate functions, which one are you using?
schemaValidate() or isSchemaValid()?
Also, which version of Oracle are you using?

Similar Messages

  • How can I take minutes from mysql date format

    how can I take minutes from mysql date format??
    example 10:30:00 is stored in my sql and I want to create 3 variables which will store hours, minutes and seconds..
    Cheers..

    "use application date format" is the choice you want.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • How to call an ODI web service through PL/SQL

    Hi All,
    Can we call an ODI web service through PL/SQL. If we can, can you please provide me info/examples/links on how to accomplish this task ?
    Any information will help me and my team.
    Am I required to use UTL_HTTP ?
    Thanks,
    Amer
    Edited by: Rooney on Nov 6, 2012 9:58 AM

    Hi,
    Take a look at this :
    http://www.business-intelligence-quotient.com/?p=1466

  • My iPod takes minutes to eject

    When I eject my iPod from the computer through iTunes, the Safely Remove Hardware option, or through My Computer it will take minutes to eject. My friend connected his iPod to my computer and it only took seconds for it to eject but he owns a 30GB. My iPod will continue to say "Do not disconnect" until finally it ejects and I can remove the iPod. What's the deal? I'm using USB 2.0
    iPod Video 60GB   Windows XP Pro  

    So here's another tidbit that I just discovered: if the Visualizer is on in the iTunes window, then this 9th second freeze does not happen. In fact, if you hit ctl-T during the 7th second, view a couple of seconds of the visualizer then ctl-T again at the 10th second, the freeze does not happen at all.
    ..So there's probably some "track listings" iTunes<->iPod usb communication initiated 9 seconds into a track, the iPod doesn't give back the correct response which puts iTunes into an "infinate loop" that overwhelms the PC's CPU until a certain # of these loops have occured and then iTunes gives up and returns to normal operation
    ..apple? are you there? is there a fix in the works? is it just my iPod that does this? should I return it and try another unit?

  • Calling Report Through PL/SQL

    Hi All,
    Is it possible to call a report through PL/SQL?If yes, please help me in this regard.
    Thanks.
    Vinay Kumar Garg

    Hi,
    There are 4 ways to call a report.
    Check out the following:
    http://oracleapps4u.blogspot.com/2011/03/oracle-report-request-methods.html

  • Report through Pl/Sql

    hi,
    i need to generate a report through pl/sql without using the concept of spool...
    please suggest some ideas
    thanks in advance
    Lovely

    UTL_FILE Demos
    http://psoug.org/reference/utl_file.html
    Etbin's link also have many useful examples

  • Is it possible to start planning manager programatically from backend through PL/SQL?

    I need to activate and run Planning manager concurrent program from back end through PL/SQL.Actually i am working on MRP Open Forecast Interface and I want to run this program after inserting data in the interface table mrp_forecast_interface.Please guide me.

    Oracle EBS forum is the best place for your question. This place is more towards general SQL, PL/SQL questions.
    https://community.oracle.com/community/oracle-applications/e-business_suite/e-business-suite-technology/general_ebs_discussion

  • Xml file not generated through Pl/sql procedure as a concurrent executable

    Hi,
    I getting error while genarating xml file through Pl/sql procedure as a concurrent executable file.
    Error Message:
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    Invalid at the top level of the document. Error processing resource

    Hi,
    Make sure the file has the XML header:
    <?xml version="1.0" encoding="UTF-8"?>
    or similar.
    Regards,
    Gareth
    Blog: http://garethroberts.blogspot.com/

  • I keep getting message "mozila Firefox not responding." It takes minutes to down load a site - some times it just gets in a loop and never down loads. Then when I try to click on it again screen goes opaque and i get the same message.

    I 'm getting message "Mozila Firefox not responding." It takes minutes to down load a site - some times just gets in a loop and never down loads. The little circle at top just keeps going round in circles .
    Then when I try to click on the screen again the screen goes opaque and I get the same message re " Mozilla Firefox not responding" - and it is minutes before I can get back in to close down screen.
    I have downloaded Fire fox version 4 and this is still happening.

    See:
    * http://kb.mozillazine.org/Error_loading_websites

  • Submitting XML Publisher Concurrent Program through PL/SQL

    Hi,
    I am trying to submit a XML Publisher concurrent program through PL/SQL API fnd_request.submit_request.
    The request gets fired and completes successfully but it doesn't pick up the default template attached to it. Its output is plain XML but expected output is PDF report.
    However when I submit this report from SRS, it picks up the default template and gives output in PDF.
    Please let me know what could be going wrong?
    Regards,
    Nitin

    Check out the FND_REQUEST.ADD_LAYOUT API. You need to call it before you submit your report.
    Cheers,
    Dave

  • Invoking BPEL Process through pl/sql is failing

    Hi all,
    I am trying to invoke BPEL process through PL/SQL and its throwing following error.
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Header/><env:Body><env:Fault xmlns="http://xmlns.oracle.com/pcbpel/adapter/file/ReadFile/"><faultcode xmlns="">null:Read_ptt</faultcode><faultstring xmlns="">Cannot figure out operation name. Bad SOAPAction or wsa:Action.</faultstring><faultactor xmlns="">initiate</faultactor></env:Fault></env:Body></env:Envelope>
    Following is code I am using to invoke BPEL PROCESS
    declare
    soap_request varchar2(30000);
    soap_respond varchar2(30000);
    http_req utl_http.req;
    http_resp utl_http.resp;
    begin
    soap_request:='<?xml version="1.0" encoding="UTF-8"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Header/>
    <soap:Body xmlns:ns1="http://xmlns.oracle.com/pcbpel/adapter/file/ReadFile/">
    --<ns1:Read_plt><ns1:input>leeg</ns1:input></ns1:Read_plt>
    </soap:Body>
    </soap:Envelope>';
    http_req:= sys.utl_http.begin_request('http://localhost/orabpel/default/BPELProcess1/v2007_12_03__65618','POST','HTTP/1.1' );
    sys.utl_http.set_header(http_req, 'Content-Type', 'text/xml') ;
    sys.utl_http.set_header(http_req, 'Content-Length', length(soap_request)) ;
    sys.utl_http.set_header(http_req, 'SOAPAction', 'initiate');
    sys.utl_http.write_text(http_req, soap_request) ;
    http_resp:= sys.utl_http.get_response(http_req) ;
    sys.utl_http.read_text(http_resp, soap_respond) ;
    sys.utl_http.end_response(http_resp) ;
    dbms_output.put_line(soap_respond);
    end;
    Any help would be appriciated.
    Thanks,
    Vipul

    Hi,
    Switching on or off a bpel is an admin job.
    u can stop an application but not one bpel.
    I doubt if there is any way to do it programatically.
    Let us get other opinons
    Regards

  • How to transfer the files from one server to another through pl/sql...?

    I want to transfer all the files from source server with respective directory to designation server with respective directory (designation server - oracle reside server).
    Is it possible to ftp from one server to another server(designation server - oracle reside server) through pl/sql. these two servers are independent & unix server.

    No ... The package mentioned in
    http://www.oracle-base.com/dba/miscellaneous/ftp.pks
    this works for across the server i.e. transfer the files from one server to other (it is basically ftp) ..
    So it is NOT correct that this code transfer the file between two location & with in server..

  • Print my input which i accept in my procedure in Excel Sheet through pl/sql

    Respected Sir,
    If i want to print my input in excel sheet which i took as a input parameter for my procedure
    for example my procedure:
    create or replace procedure create_csv('hello this is wonder world').
    I want to print hello this is wonder world in excel sheet.
    How can i acheive this through pl/sql procedure. with out utl_file predefined package.
    Please help me regarding this.
    Sincerely,
    Chandrasekhar B.S.

    maybe this link accessing oracle via access and excel might be of some help.

  • Send mails with csv file as an attachment through oracle(SQL SCripts / Stor

    Hello Everybody,
    I have recently come across a requirement in which I am supposed to send mails with csv file as an attachment through oracle(SQL SCripts / Stored Procedure) .
    The contents of the csv file are to be retreived from the Database as well as the content of the mail and to whom it needs to be sent has also to be picked up from the database.
    Can somebody suggest me with a suitable code for the same?
    Would be of great help..!!
    Thanks & Regards,
    - VR
    Edited by: user646716 on Dec 18, 2009 10:44 AM

    read below links
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:255615160805
    http://www.orafaq.com/wiki/Send_mail_from_PL/SQL#Send_mail_with_UTL_TCP_-withattachments
    How to send csv file as an attachment

  • Dialog with a lot of XML content takes minutes to open in IE7.

    Good day to all.
    This is my first week with JDeveloper ADF, so, please, be forgiving. I have a page, which has this code
    <af:commandButton text="Show XML" id="cl2"
    action="dialog:showxml" useWindow="true"
    windowHeight="200" windowWidth="500"
    partialSubmit="true">
    When clicked, this one is invoked:
    <f:verbatim>
    <jsp:include page="xml_original.xml"/>
    </f:verbatim>
    The xml file is 500KB. The dialog pops up very fast in Firefox, but in IE7 it takes minutes to open. When opening it in the page, without the dialog, the performance is fast.
    Please help.
    Thank you.
    Edited by: user608849 on Sep 10, 2009 10:21 AM

    Does it open fast when you load the xml file manually in IE (without using it from the ADF / dialog)?
    something like http://<host>:<port>/..../xml_original.xml ?
    -Arun

Maybe you are looking for

  • External Hard Drive not showing up as a back up disk

    Please Help, I'm freaking out! I received a message stating "Time Machine has not backed up in 10 Days." So I tried to do a manual back up, a manual back up as worked before. Time Machine looked like it was beginning a back, but then it stopped. So I

  • InDesign CS3 performance super slow.

    InDesign CS3 all of a sudden has been taking a long time (1 to 2 minutes) to open and/or save even small files. I've run Apple Jacks, uninstalled then reinstalled InDesign, removed Indesign preferences.  Minimum fonts open. Same slow performance.

  • How to reprint Mass POs

    Hi Guys I have one question How to reprint Mass POs more than 100 Purchase orders Thanks in advance SAP MM

  • About Local Calculations in query designer

    Hello Gurus,          please illustrate how to use following setting by example: 1. Calculate Result As. 2. Calculate Single Values As.. 3. Also Apply to Results. 4. Cumulative 5. Calculation Direction Many thanks, Frank

  • How do I stop other elements resizing when resizing an unrelated element?

    If I drag the border of an element to resize it such as a text box, Forms Central resizes other elements even if they are unrelated and regardless of where they are in the form. I don't want this to happen. I want to resize elements individually. How