XML Connection

Hi all,
I'm new on Xcelsius 2008.
i'm using XML connection and i want my dashboard works dynamically according to database. how can we do that? i don't want to change the XML data anymore, i wanna it update automatically.
beside that, what's the advantage of using XML data? is it the most common connection?
thanks
please help
Best Regard,
Hendry

Asking these kinds of questions in a forum is only acceptible if you cannot find any information about it on the net... if you cannot even do research for yourself, how will you ever succeed as a developer? Research is the first step in every project!
Your quest begins with the jaybird (= jdbc driver for firebird) faq:
http://www.firebirdsql.org/index.php?op=devel&sub=jdbc&id=faq#poolingcode
You may also want to check the documentation of your specific webserver. For example tomcat has pretty decent information about setting up datasources:
http://tomcat.apache.org/tomcat-5.5-doc/jndi-resources-howto.html
http://tomcat.apache.org/tomcat-5.5-doc/jndi-datasource-examples-howto.html
You can expect similar steps in the documentation of other web/application servers.

Similar Messages

  • Xcelsius XML Connection Issue when using a Crystal created XML file

    HI Xcelsius/Crystal Gurus,
    I am running Crystal Reports 2008 version 12.2.9.698 and Xcelsius 2008 5.3.0.0 Build 12,3,0,670,
    I am attempting to create an XML file from a Crystal report which will be consumed by an Xcelsius Dashboard.  Apparently, there is something with the file that Xcelsius does not like.
    I have formatted the report exactly as Xcelsius requires and exporting via text with an xml extension to create an .xml file.  When I add an XML Connection in Xcelsius and add the appropriate names/range, etc...I am able to see the file via the Preview XML button on the Connection, but when I use a component, I am not seeing the data in the component.
    I can 'recreate' the file in NotePad by manually typing in the entries to look exactly like the file created by Crystal and set up a connection in Xcelsius to consume that file and it works beautifully.
    Does anyone have any experience with using Crystal Reports to create an XML file (not using the XML Export, but by exporting as a Text and adding an extension)?
    Is it possible that Crystal is adding hidden characters or something?  I can pull this Crystal created file into an XML editor or MS Word and it is validated as a good XML File.
    Any help is greatly appreciated!

    This article is all about setting up security on the web service. But, I just want to connect to the web service as a client using the proxy and the web service doesn't have any security set on it at this time.
    I am getting a connection timeout, even when I set the syncMaxWaitTime in the domain.xml file on the app server to a higher number (although this doesn't seem to affect the time it takes for the debugger to return).

  • Error in Dashboard using XML connection

    Hi Experts,
    I have developed one Dashboard using XML connection  but getting bellow attached error can any one guide me how to solve it.
    I know that error is related to cross domain.xml please explain the what is cross domain.xml and guide me to solve issue.
    Regards
    Mahantesh(Monty)

    Hello,
    Please check if below notes are relevant:
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361…
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361…
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361…
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361…

  • Advanced XML connections

    Hey there!
    I'm fairly new to Flex development so please excuse my
    ignorance if I've just managed to miss some feature or API
    completely!
    My situation is this:
    I wish to develop a program which will communicate with my
    server via a high-performance XML connection using a (currently
    proprietary, open-source later) binary XML format. Since I'm the
    one who has been writing the code for it in Java I have full access
    to the source to port to Flex/action-script. What I'm wondering is
    what (if any) is the standard API for XML parsers
    (readers/writers)? My format is a StAX ("pull") parser for XML
    streams, and I have classes that allow me to use XPaths efficiently
    over it.
    I would like very much to make it using a standard Flex API,
    extending where required to leverage additional features, as this
    would be more useful I think in future when I release it as an
    open-source project.
    Further to this, I will be hoping to use this with an SSL
    connection to keep data private, I am wondering if Flex already has
    SSL functionality, and how fast it is?
    Please don't dispute the use of binary XML here, since I'm
    communicating between two parties then readability isn't an issue
    (except debugging, in which case it's easy to output as text with a
    third party, or by dropping in a regular XML reader/writer). For my
    intended data-set I get around a 40-50% reduction in message size,
    haven't tested relative performance compared to text-XML parsers,
    but it should be faster since it doesn't need to do much work.
    So I'm looking for an idea of what I should implement or
    extend and what I will need to develop from scratch to make this
    work? My aim is to develop this as an AIR application, but may
    compile for browser as well since I have no major requirement for
    local storage.
    Cheers

    Hmm, thanks for the response! While that looks like an
    interesting way of manipulating XML, it appears to be DOM-based?
    The method I'm hoping to implement is StAX or "pull" parsing. A
    simple example (in Java) using my parser could look like this.
    Note: I'm using hyphens in place of working tabs since there seems
    to be no equivalent of <pre> on HTML here that I see:
    Example XML:
    <items>
    - <category>Mixed</category>
    - <item>Bread</item>
    - <item>Monkey</item>
    </items>
    Java code (assuming an XMLStreamReader is positioned inside
    the <items> tag:
    int event;
    while ((event = reader.next()) !=
    XMLStreamConstants.END_DOCUMENT) {
    - switch (event) {
    - - case START_ELEMENT:
    - - String name = reader.getLocalName();
    - - if (name.equals("item"))
    System.out.println("\t"+reader.getElementText());
    - - else if (name.equals("category"))
    System.out.println(reader.getElementText());
    - - break;
    The output of the above would appear (as the data arrives)
    like:
    Mixed
    - Bread
    - Monkey
    Basically, unlike DOM which reads in all the XML and provides
    you with a model you can then pull elements out from, a StAX parser
    lets you tell the parser when to parse, it tells you what it found
    and you can then decide what to do with that data. It's very good
    for using as an XPath stream parser, as you can look for an XPath
    match on an XML document hundreds of megabytes in size, without
    ever using more than a few kilobytes of memory. Disadvantage of
    course is that once you've passed an XML element, you can't go back
    unless you saved it somewhere.
    My XMLStreamReader is fairly easy to adapt into use as a DOM
    parser as well, and it's pretty good at that too, but I try to
    avoid DOM like the plague where possible.
    If Flex only has DOM available then I would like port my
    parser as a mirror image of the Java parser, and hope that any
    future Flex StAX parser standard is similar enough to easily mash
    my code into at that time.

  • XML connection is giving Blank output

    Hi ,
    I am trying to connect my dashboard with XML data
    but it is giving total blank dashboard.
    I am unable to find out reason.
    Can some one help.
    my XML file is
    <data>
    <variable name="Test">
        <row>
            <EmpType>ALL</EmpType>
            <S_PL>0.124</S_PL>
        </row>
        <row>
            <EmpType>ALL</EmpType>
            <S_PL>0.151</S_PL>
        </row>
        <row>
            <EmpType>ALL</EmpType>
            <S_PL>0.018</S_PL>
        </row>
        <row>
            <EmpType>ALL</EmpType>
            <S_PL>0.060</S_PL>
        </row>
        <row>
            <EmpType>ALL</EmpType>
            <S_PL>0.113</S_PL>
        </row>
    </variable>   
    </data>

    I found a solution...!
    I used
    <data>
    <variable>
    <column>
    </column>
    <column>
    </column>
    <column>
    </column>
    <column>
    </column>
    <column>
    </column>
    </variable>
    </data>

  • JDBC connect with "XML Connections export"

    I would like to use the existing connection configuration for a statistik over all connections. Is there any way to use the encrypted password in this file for JDBC connection? I didn't get a hint on that. How does sqldeveloper connect - could I use a class from it?
    Regards Matthias

    Writing something outside the tool would not be easy. If you write an extension, you can get the connection just like the Fourth Elephant guys have done.
    -kris

  • XML Data Connection : Relative path

    Hi,
    I'm new to Xcelsius
    I have added an XML Data Connection with a static path pointing to a xml file in my C:/
    Now I would like to point the path to a relative path like ./ where the XML file be place in the same place as the dashbord.
    How can I do this?
    ~SaNv...

    I have inserted a text field to get the xml file input path and inserted that  on a cell.
    Then made tha XML connection to read this cell for loading the XML file. This works fine in the xcelsius preview, however when I exported this as an swf/pdf i get the below error in accessing the XML.
    To access external data, this file must be trusted.
    For a PDF file, in Adobe Reader, click Edit > Preferences > Security (Enhanced).
    For any other file type:
    **Do NOT click OK until you have read all the following steps.**
    1. Click OK to close this message and open the Adobe Settings Manager in a web browser.
    2. Click Global Security Settings Panel.
    3. On the Global Security Settings Panel:
       a). In the u201CAlways trust files in these locationsu201D drop-down, select Add location.
       b). Click Browse for files.
       c). Do one of the following:
           - For a PowerPoint file, navigate to the PowerPoint.exe location.
           - For all other file types, navigate to the location of this file.
       d). Click Open.
    4. Close the Adobe Settings Manager. Re-open this file.
    If the problem persists, contact the file creator or your system administrator.
    Error: Error #2148
    Connection Type: XML Data
    File URL: file:///C:/Documents%20and%20Settings/santhosh/Desktop/final.swf
    External Data URL: C:\Documents and Settings\santhosh\Desktop\test.xml
    I have also added the XML file in the Global secuirity testing
    ~SaNv...

  • 1.5.3 - Default connection xml file path??  + Error + hanging.

    If anyone can tell me how to change (and save) the default path that SQL Dev. uses to access the correct .xml connections file - I'd really like to know!!
    Also - why does version 1.5.3 HANG WHEN EXITING - generating errors in the trace file :
         ORA-00600: internal error code, arguments: [18110], [0x65904038], [2], [46], [], [], [], [] ??
    We are talking about hanging to the extent of having to killing it with task manager at the end of any SQL Developer session over an hour or so.
    In my view this version - 1.5.3 - is simply * RUBBISH * !!
    Install a previous version, (1.2.1 :) ) we have, and you'll do more work without the frustration of 'things' hanging all the time.

    Please note that if you have an Oracle Database Support license, then you can log all your issues with Metalink and we can get to them and address them. This forum is full of users who regular respond and are very helpful to other posters with queries and problems. I see that this is your first post on the forum and recommend you take a different approach.
    If you can tell us what you're doing before you exit, and provide more detail about why the product is rubbish, we'd be able to respond and even address some of the issues.
    If you want to share connections with other users, there are export & import menu options that allow you to export the xml to a file that you can place on a server and other users can import this. You don't say why you need to change the path, so I can only guess at the reason.
    With no further detail in your posting we can't help you.
    Sue

  • Error in reading a xml file

    Hi,
    I have created a data server in the topology manager for xsd file with the below paramters in url
    jdbc:snps:xml?d=E:\ODI\Ibrm_gl_data.xsd&s=GLDATA&dod=true
    And successfully imported the metada from xsd file in to a model.
    I have written the below command in the odi procedure on target tab to load the data from xml file in to the schema.
    LOAD FILE "E:\ODI\test.xml"  ON SCHEMA GLDATA REPLACE  AUTO_UNLOCK READONLY
    When i execute the procedure iam getting the below error.
    ODI-1228: Task IMPORT_XML (Procedure) fails on the target XML connection BRM_XSD.
    Caused By: java.sql.SQLException: class org.xml.sax.SAXException
    Found PCDATA in element Element-0065 values ({_DATA=4})
    Iam using the ODI version11.1.1.3
    Can any one help me in trouble shooting this issue?
    Thanks in advance
    Balaji TK

    Could it be related to support issue described in Doc ID 1462171.1 ?

  • Problems with codepage after refreshing data from XML

    Hello,
    I've created a dashboard with XML connection.
    XML file with new data is created via macro in INPUT.xls Excel file. This INPUT.xls file was created through exporting spreadsheet from Xcelsius and then adding a macro to it, so text data should be this same codepade. Generated XML through macro have no errors and Flash file gets numeric data with no problems.
    But there is other problem with text's codepage. After reload there are some unidentified symbols in place of polish alphabet letters.
    What should I do to make it right? Is this a problem with codepage or something else?
    [Dashboard Before Refresh|http://lh4.ggpht.com/_Q8NK6X6PPLg/TGkLwo3sxZI/AAAAAAAAA_g/mkBiDdM4Gi4/s640/before_refresh.JPG]
    [Dashboard After Refresh|http://lh4.ggpht.com/_Q8NK6X6PPLg/TGkLwSx9fHI/AAAAAAAAA_c/3UeM2Gd3HvA/s640/after_refresh.JPG]
    If you have any idea hot to fix it, please let me know.
    Best regards,
    Bart Dlug

    Hello,
    I have header in my XML as follows:
    <?xml version="1.0" encoding="Windows-1250"?>
    Only then my XML file is displayed correctly in Internet Explorer preview. When I chagne it to UTF-8 I get some errors.
    [XML with windows-1250 codepage|http://lh3.ggpht.com/_Q8NK6X6PPLg/TGkUakDHjlI/AAAAAAAAA_o/lLlJFMcSaFQ/s800/codepage1250.JPG]
    [The same XML with UTF-8|http://lh5.ggpht.com/_Q8NK6X6PPLg/TGkUa8k4vyI/AAAAAAAAA_s/tdcZNqu7-i0/s800/codepage-UTF8.JPG]
    Error message means: Invalid character was found in text content. Error during processing resourcse file:///
    As I wrote before, my data is generated via macro in Excel, so I supose my data in this file has windows default codepage. Am I right?
    Do you think that I problem is XML file?
    Best regards,
    BD

  • HttpURLConnection.connect() takes long time (3 minutes)

    I'm stumped on an unusual problem. I'm running java 1.3 and Apache JServ (don't ask, I inherited this set up), using JSSE. One of the things we do with our app involves some xml communication over SSL.
    Starting last week, the time for the SSL communication jumped from about 15 seconds to around 3 minutes.
    Here is the bit of code that does the actual communication. An example function call would be:
    contactService("ShipConfirm", "ups.app/xml");and the function definition:
    public void contactService(String service, String prefix)  throws Exception {
      HttpURLConnection connection;
      URL url;
      // the next 2 variables are stored elsewhere in the object
      // these values are just examples of one invocation
      String protocol = "https";
      String hostname = "wwwcie.ups.com";
      String urlStr = protocol + "://" + hostname + "/" + prefix + "/" + service;
      // so for this test urlString = "https://wwwcie.ups.com/ups.app/xml/ShipConfirm";
      try  {
        if (protocol.equalsIgnoreCase("https")) {
          java.security.Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
          System.getProperties().put("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol");
        url = new URL(urlString);
        // Trace.log is a convenience class that will print to a log file and include a timestamp
        Trace.log("open connection to " + urlString);
        connection = (HttpURLConnection) url.openConnection();
        // openConnection takes about 20 seconds now, before 1 or 2 seconds
        Trace.log("opened connection to " + urlString);
        connection.setDoOutput(true);
        connection.setDoInput(true);
        connection.setUseCaches(false);
        // XmlIn is an already generated xml file stored in a StringBuffer, declared elsewhere
        String queryString = XmlIn.toString();
        Trace.log("xml connection to " + urlString);
        connection.connect();
        // connect takes about 3 minutes 10 seconds now, before 15 seconds
        Trace.log("xml connection complete " + urlString);
        OutputStream out = connection.getOutputStream();
        out.write(queryString.getBytes());
        out.close();
        String data = "";
        try {
          // on the server this is actually a separate function
          StringBuffer buffer = new StringBuffer();
          BufferedReader reader = null;
          try {
            reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
            String line = null;
            int letter = 0;
            while ((letter = reader.read()) != -1)
              buffer.append((char) letter);
          catch (Exception e) {
            // Trace.major is like Trace.log, but is a higher severity
            Trace.major("Cannot read from URL" + e.toString());
            throw e;
          finally {
            try {
              reader.close();
            catch (IOException io) {
              Trace.major("Error closing URLReader!");
              throw io;
          data = buffer.toString(); // actually a return statement on server
        catch (Exception e) {
          Trace.major("Error in reading URL Connection" + e.getMessage());
          throw e;
        XmlOut = new StringBuffer(data);  // XmlOut is a StringBuffer declared elsewhere
      catch (Exception e1) {
        Trace.major("Error sending data to server" + e1.toString());
    } Besides a couple of new Trace.log statements to pin down the what, exactly, is taking so long, I haven't touched this code in the year+ since I've inherited it. There haven't been any changes in the network setup for the last 3 weeks, either (last change was new reverse lookup zone for our internal network).
    Any idea why the HttpURLConnection.connect() would take so long? Or any idea how I can find out what is going on for those 3 minutes? In my search so far, I found -Djava.net.debug=ssl,handshake,data and added it to my startup parameters, but in my frustration, I must have overlooked what I need do to make it show up in my logs.
    I set up a tcpdump on the server to listen on the IP that I'm trying to connect to and the "xml connection to" log statement prints, then about 3 minutes and 10 seconds goes by, then tcpdump reports that we actually send the packets to the other server, then we get a response and print the "xml connection complete" log message. URL and HttpURLConnection are not subclassed at all.
    To make things even more interesting, I broke out this code, and wrote a small test program. The test program has some minor changes (pulling the xml data from an already existing file, mainly), and this version runs lickety-split (about 5 seconds).
    Any help or pointers would be greatly appreciated. Let me know if I can provide any more information.
    Thanks,
    Andy

    Figured it out..
    The other side removed a proxy server that we used to try to connect through. The server was taking 3 minutes and 10 seconds to time out when it trying to contact the proxy server.
    To be honest, I don't know if we ever successfully connected through the proxy server. I'm inclined to believe we tried to contact it, but were rejected, but no one ever removed the proxy code.
    Andy

  • SRM 7.0 PO XML to PI to HTTP

    Dear Experts,
    My scenario is to get a PO out of SRM (which is coming over via XML) connect to PI and immediately pass that messages (without mapping) to an external HTTP destination.
    Can you please help in outlining what is needed?
    On our PI system we already have the SRM XI content.  So in the ESR I see that we have the names spaces and the MT and Service Interface for Purchase Order Request.
    I have already created a Business System for SRM and also created a Technical and Business system for our external HTTP party in the SLD.
    There are 2 major problems:
    1 - When sending PO out from SRM to PI - the message does not get transmitted.  In SMQ2 when we look at the XML message - we see that it is reference an RFC destination that does not exist.  Even when we create it in SM59  for connection to PI it still gets the same error.  I assume this is configuraed somewhere in SRM but do you know where?
    HTTP destination IntServer missing (system, transcation SM59)
    2 - What steps are required to be configured in the Integration Builder and ESR in PI to send the XML messages as is (without transformation) from PI to the HTTP source (i.e. do I need to setup recevier agreement, sender agreements, Party, etc)
    As you can see I am new and trying to work this out.  This would be much appreciated!

    Hi,
       We had a similar interface scenario...
    in this case we used proxy to populate the PO data which needs to be sent to the external vendor...
    For proxy things you need some configuration settings in SRM...(even if you use the same approach...)
    1. Need to configure the PI url in the tcode SLDAPICUST..
    2. Need to create the http destination point out to the PI url (host/xi/engine?type=entry)
    3. set the integration engine as the loc in tcode (SXMD_ADM->integration engine configuration) and provide the http entry over there..
    4. Need to have two rfc destinations of type T (LCRSAPRFC..SAPSLDAPI..having the same progid as specified in PI..)
    Once the configuration is done can check the same using SLDCHECK...
    For more details on the above search SDN..
    For passing the data as it is dont provide the mapping name in Interface determination provide the source and target message interface name as same..
    need to create the receiver determination and recever agreement for the HTTP...
    Gud luck
    Rajesh

  • Crystal Report generation using XML

    I have some reports that were created using XML and as I recall when I created them using CR v. 9 I used a connections called ADO (Xml) or something like that. On one of my machines I have CR XI and the only option available is XML and when I add a field from this connection it inserts: "{NewDataSet\TableName.FieldName}" however, previously when I used the ADO XML connections it only inserted {TableName.FieldName}. In the version 9 CR i was using the professsional version and in the version 11 CR it is still the professional version but I can't seem to create an XML connector that doesn't prefix the table/field with "NewDataSet". My request is two fold, first, can you please direct me to some articles that I can read to better understand how to generate  CR from XML? My project is to generate the XML and then set the xml during runtime into the report using SetDataSource and then display the report using the CR viewing that I package and redist with my app. Secondly, why does the ADO XML connector not available in CR XI professional version and is there any way to get the CR v. 9 behaviour back?
    Thanks,
    Marcus

    Hi, Markus
    If you are planning to run reports from a .NET application, you need to have the Developer edition, not the professional.
    The ADO.NET Driver is not installed by default. Go into Control Panel - Add / Remove programs, and chose Crystal Reports, and change. You can expand the Database drivers, and you should see the ADO.NET driver there. Note: you need to have the .NET framework installed for this to work.
    Regards,
    Jonathan

  • How to use useMaxValue property in ODI for XML?

    Hello All,
    I am using 11.1.1.5 version of ODI. I want to use "useMaxValue" for which description is given as follows by oracle.
    When this property is set to true, elements for which maxOccurs is not specified in the XSD are considered as maxOccurs ="unbounded". Otherwise, the driver assumes that maxOccurs=1 when maxOccurs is not specified.
    when I use this property as useMaxValue in the JDBC url for XML technology I get the following error.
    ODI-1227: Task SrcSet0 (Loading) fails on the source XML connection XML FILE.
    Caused By: java.sql.SQLException: ODI-40717: Unknown parameter : usemaxvalue
    I am trying to get multiple records for the same elements in XML for this I am using this property. Is there any other way to get it done?
    Thanks in Advance!

    please try uimv or useimplicitmaxvalue. I justed tried, both works well. I will file a doc bug to track the issue, maybe document need change, maybe code, waiting bug updates.
    Edited by: tina.wang on Oct 7, 2012 9:28 AM

  • Loading big XML files using JDBC gives errors

    Hi,
    I've created a XMLType table using binary storage, with the restriction that any document stored has a (any) schema:
    CREATE TABLE XMLBIN OF XMLTYPE
    XMLTYPE STORE AS BINARY XML
    ALLOW ANYSCHEMA;Then I use JDBC to store a relatively large document using the following code:
    Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    String connectionString = "jdbc:oracle:thin:@host:1521:sid";
    File f = new File("c:\\temp\\big.xml");
    Connection conn = DriverManager.getConnection(connectionString, "username", "password");
    XMLType xml = XMLType.createXML(conn,new FileInputStream(f));
    String statementText = "INSERT INTO xmlbin VALUES (?)";
    OracleResultSet resultSet = null;
    OracleCallableStatement statement = (OracleCallableStatement)conn.prepareCall(statementText);
    statement.setObject(1,xml);
    statement.execute();
    statement.close();
    conn.commit();
    conn.close();Loading a file of 61Mb (real Mb, in non-IT Mb (where 1Mb seems to be 10^6) it is 63.9Mb) or less doesn't give any errors, loading a file bigger then that gives the following error:
    java.sql.SQLRecoverableException: Io exception: Software caused connection abort: socket write error
            at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:101)
            at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:112)
            at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:173)
            at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:229)
            at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:458)
            at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:960)
            at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1222)
            at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3381)
            at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3482)
            at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:3856)
            at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1373)
            at jdbctest.Tester.main(Tester.java:60)A succesful insert of a 63Mb file takes about 23 seconds to execute. The 70Mb file fails already after a few seconds, so I'm ruling out any time outs.
    I'm guessing there are some buffers that need to be enlarged, but don't have a clue which ones.
    Anyone any idea what might cause the problem and how to resolve?
    My server runs Oracle 11g Win32. The client is Windows running Sun Java 1.6, using ojdbc6.jar and Oracle 11g Client installed.
    Cheers,
    Harald

    Hi Mark,
    The trace log in the OEM shows me:
    Errors in file d:\oracle11g\app\helium\diag\rdbms\helium\helium\trace\helium_ora_6948.trc  (incident=7510): ORA-07445: exception encountered: core dump [__intel_new_memcpy()+613] [ACCESS_VIOLATION] [ADDR:0x0] [PC:0x6104B045] [UNABLE_TO_WRITE] []  If needed I can post the full contents (if I find out how, am still a novice :-))
    Cheers,
    Harald

Maybe you are looking for

  • How to use a path (mask) as a guidance path for an object?

    Hello, I want to use a path / mask as a guidance line for an object. I know i can draw a mask, then cut the path parimeter and paste it into the the position, but that seems to come with all kinds of restrictions. For example; when i use that method,

  • Query name at the tope of the page in web report

    HI, i have created a web template for my Query.after executing how do i get my Query description at the top of the page? regards

  • Typeahead with a busy Application

    Hi, I hava a java application with a single thread server and a mullti thread client. It works only when I make the client busy implemented with a visible glasspane. Then go all events to the glasspane. How can I implement the typeahead that all even

  • HT201272 Where are the audiobooks and how do I get them back?

    I can't find the audiobooks I have deleted from my iPhone and iPad to download again. Can anyone explain how to do this?

  • BAPI_GOODSMVT_CREATE has problem

    经过多次测试处理,发现问题发生之程序是处理库存移转 之BAPI功能程序BAPI_GOODSMVT_CREATE,其中处理清除 数据的功能程序是以物料异动冻结之注记『TCURM-MBEQU』 来判定是否清除数据,而我们使用物料延迟冻结注记为’2’, 因此影响清除注记『KZRFB』若连续执行则不会清除 INTERNAL  TABLE IMCHB、IMCHA、IMCH1等,以致若程序 未离开重复执行相同料号及批次移转过帐,中间又加上执行 MMPV作物料区间变动,就会造成历史资料MCHBH及MARDH