Excel -- Oracle

If I want to port some data from Excel to Oracle Database by using Form Builder5.0 .
What should I do for this problem?
Please reply me via "[email protected]"
Thank you so much for your help.

Did you
add this drivers correct?
In some versions you should have access to drive. Excel should to open before you refresh this drive.
Anyway - if you need full stuff I can
recommend one of mine ;P
Oskar Shon, Office System MVP - www.VBATools.pl
if Helpful; Answer when a problem solved

Similar Messages

  • Excel / Oracle ( HS) Generic Connectivity?

    Hi All!
    i have connected to Excel using Heterogeneous services Oracle generic connectivity. It's showing all the data in the excel sheets and describe the table(sheets) as wel.
    But the operation like delete , insert and update are not working..
    1) How can i get all these working?
    SQL> desc class$@dlcompany2;
    Name Null? Type
    cno FLOAT(49)
    cname VARCHAR2(32512 CHAR)
    SQL> desc student$@dlcompany2;
    Name Null? Type
    sno FLOAT(49)
    sname VARCHAR2(32512 CHAR)
    SQL> desc lab$@dlcompany2;
    Name Null? Type
    LNO FLOAT(49)
    LNAME VARCHAR2(32512 CHAR)
    SQL> delete from student$@dlcompany;
    delete from student$@dlcompany
    ERROR at line 1:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [Generic Connectivity Using ODBC][Microsoft][ODBC Excel Driver] Could not
    delete from specified tables. (SQL State: S1000; SQL Code: -3049)
    ORA-02063: preceding 2 lines from DLCOMPANY
    SQL> insert into student$@dlcompany2
    2 ("sno","sname")
    3 values
    4 (8,'hh');
    insert into student$@dlcompany2
    ERROR at line 1:
    ORA-02047: cannot join the distributed transaction in progress
    SQL>
    1 update student$@dlcompany2
    2 set "sname"='tt'
    3* where "sno"=7
    SQL> /
    update student$@dlcompany2
    ERROR at line 1:
    ORA-02047: cannot join the distributed transaction in progress
    SQL> delete from student$@dlcompany2
    2 where "sno"=7;
    delete from student$@dlcompany2
    ERROR at line 1:
    ORA-02047: cannot join the distributed transaction in progress...
    ____________x____________________x_______________________
    2) My main task is to getting the data from oracle table into Excel How can i do this Using Heterogeneous services Oracle generic connectivity?
    I will be extremely Thankfull
    Thanks
    Rana Adnan

    Hi Kim and ALL!!!!
    1)for Access this works perfectly and insert the data in class@dlcollege.
    when_button_pressed triggerDECLARE
         X NUMBER;
    BEGIN
         FOR X IN (SELECT tno, tname FROM TEST)
         LOOP
              INSERT INTO CLASS@DLCOLLEGE
              ("cno","cname")
              VALUES
              (X.tno,X.tname);
         END LOOP;
         commit;
    end;
    2)For MS Excel it niether gives any error message nor insert the data in class$@DLCOMPANY3.
    when_button_pressed trigger
    DECLARE
         X NUMBER;
    BEGIN
         FOR X IN (SELECT tno, tname FROM TEST)
         LOOP
              INSERT INTO class$@DLCOMPANY3
              ("cno","cname")
              VALUES
              (X.tno,X.tname);
         END LOOP;
         commit;
    end;
    Help needed for Excel?
    Thanks
    Rana Adnan

  • 3 range parameter query to Oracle data base from Excel 2000

    A user bas been trying to setup parameter queries into an Oracle
    DB. He normally used MS query and written VBA code to
    modify the query for daily or adhoc updates.
    With Excel 2000, he wanted to take advantage of parameter
    queries linked directly to cells in a spreadsheet.
    He was able to get single or two level parameter queries
    directly linked to the spreadsheet to run, however every time he
    went to a
    three level parameter query it crashed while returning the data
    to Excel.
    The error windows read: Microsoft Excel [Oracle][ODBC] with no
    other details.
    Is there a limit on the number of "levels" for parameter
    queries.
    The user was able to build and see the results of a three level
    query in MS Query, but every time he tried to return the data to
    Excel, it crashed.
    Jeff

    This is an Microsoft Access problem. When you initally connect
    to an ODBC source database Access caches the connection and does
    not ask for connection information on subsequent linked table
    accesses. This causes a problem if you request information from
    tables belonging to different users during the same Access
    session. The way to avoid this error happening is to create a
    user with access privileges to both users being used by the
    Access front end. When you connect to Oracle use the new user
    and you should be able to connect to all the linked tables. It
    may also be worth copying the Access databases to one single
    database and trying the migration that way.
    Regards
    Daniel

  • Error installing Oracle Excel client.

    Hello All,
    I was wondering if anyone could help me with the following... It would be easier if I could show some screen shots but here goes.
    I was trying to follow the following instructions http://blog.mclaughlinsoftware.com/microsoft-excel/how-to-query-oracle-from-excel-2007/
    I get to step 4. and I don't have 'Oracle Provider for OLE DB' so it sends me to the following option http://blog.mclaughlinsoftware.com/2011/11/13/excel-oracle-odbc-driver/
    Now I've added OracleODBC_dataSource to Data Sources (ODBC) (but not sure how that helps) - I followed these instructions here http://blog.mclaughlinsoftware.com/microsoft-excel/accessing-to-mysql/ but used it for Oracle instead of MySQL etc.
    But when I go back to original instructions and open 'data link providers' I still don't have 'Oracle Provider for OLE DB'? Has anyone had a similar experience and over come it?
    Thanks

    All, I found the solution to this error, I need to uninstall Oracle SQl Developer and reinsatll the x32 bit.
    Install the Oracle Data Access Components (ODAC) 1st, then the Database then SQL Developer.

  • Moan about Reports ability to output to Excel

    Hi there
    This is more of a general moan on this topic, but am I the only person who thinks that Oracle Reports' ability to output to excel should be WAY better than it is at the moment?
    I've just looked at the 9i demo, showing how to get report output into excel. It was horrific - grubbing round in raw html code and setting up an Excel template with dummy data doesn't make Reports the slick reporting tool that we'd all like.
    Guys @ Oracle - have a look at Cognos Impromptu - I'm definitely no fan of Cognos, as I prefer to be able to define exactly what I want in SQL. However, one thing they have got right is the facility to save report output into formatted Excel - Oracle Reports should have this too!!
    At the moment, if I'm asked to produce a report in Excel format, I have to either use PL/SQL to generate a CSV file with the results I want, or Oracle Reports to produce a similar CSV file. I then have to open the CSV file in Excel and format it, change column widths etc, so that it looks presentable. If it's a regular-running report, I have to manually intervene every time the report is produced. Producing a similar report in Cognos (for all its faults) would require no manual intervention once it's set up, and the whole process can be controlled with macro language and the Cognos Scheduler.
    So please, improve this feature of Reports!
    Andrew Woodward
    UK

    Hello again
    All I'd like to be able to do is to write an Oracle Report and have the figures from the report delivered in an Excel spreadsheet. (A number of report users here specify that they want their reports delivered in this way.)
    Oracle Reports (I'm on version 6i) allows me to generate a .csv file which will open in Excel, but there's no formatting present. My point was simply that I have to manually intervene to produce a .xls which is formatted properly. In Cognos Impromptu, after the report has been run, you just select SaveAs->(input filename) and select 'Excel with Format' for SaveAs Type. The output is a pretty good approximation of how the output appears on the screen. You can run reports automatically using a scheduler, and with macro language, you can deliver the report in this format with no further intervention needed. If Cognos can do this, then so can Oracle!!
    Incidentally, I've noticed that every post on this forum which mentions Excel receives a plug from Lion Van for his RepExcel product. I had a look at his website and it looks pretty good - perhaps Oracle should approach him with a generous offer?! I'm not sure however that these forums should be used for advertising in this way.
    Best regards
    Andrew
    UK

  • Need to learn Oracle Financials-Need Info

    Need to learn Oracle Financials.Anyone with any info.
    Please email [email protected]

    There are so many versions and packages of Oracle. Which one should I learn?
    latest version is oracle 10g
    but i think you will go oracle 9i rel 2
    because all commercial application use oracle 9i database.
    Which is the easiest way to get trained and certified? What kind of certification do I need?
    you need a oracle 9i dba certification
    or may be 9i developer certification
    it up to you
    but oracle 9i dba is more valuable than developer track
    you will learn this from oracle university
    excellent oracle material for ocp (but it is too costly also)
    http://otn.oracle.com/training/index.html
    Or u will read your self
    all oracle docs available athttp://otn.oracle.com/documentation/index.html
    better you will read first this
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96524/toc.htm
    download oracle software
    http://otn.oracle.com/software/index.html
    My need: to find a job that was similar to previous ones that I had. My previous job function was to develop database applications using Visual FoxPro,
    in oracle ,oracle developer is used for such type of application
    its front end tool
    gui tool like v.foxpro
    and oracle database is backend tool for store information
    i think v.fox pro perform both work as frontend as backend
    in oracle
    oracle developer is front end(old name is D2k)
    oracle database is back end
    i am also a developer but now find job as dba.
    i am always intersting in DBA . but in IT market
    there is no entry level DBA job and
    its very difficult to go for dba job without experience.
    so my suggestion is
    read your self
    install oracle on u r pc read docs from otn.oracle.com web site
    and find a job on oracle platform
    BEST OF LUCK AND I HOPE YOU WILL GET A BETTER JOB SOON
    hope it will help you
    kuljeet pal singh

  • Getting error while importing Topology

    Gurus,
    I am trying to import topology from DEV to Test.
    DEV: MAster Rep, Work Rep Internal ID's are different.
    Source is Excel, oracle table
    Target: is Oracle table; Even in TEST Both Rep Internal ID's are different.
    Still i am getting below error:
    com.sunopsis.tools.core.exception.SnpsSimpleMessageException: Importing object SNP_CONNECT : FILE_GENERIC failed.
         at com.sunopsis.dwg.DwgDuplicationTools.importOtherObjects(DwgDuplicationTools.java:2379)
         at com.sunopsis.dwg.DwgDuplicationTools.synonymImport(DwgDuplicationTools.java:1835)
         at com.sunopsis.dwg.DwgObject.importFromObjectLst(DwgObject.java:6205)
         at com.sunopsis.dwg.DwgObject.doImport(DwgObject.java:5705)
         at com.sunopsis.dwg.DwgObject.importFromXml(DwgObject.java:5365)
         at com.sunopsis.dwg.DwgObject.importFromXmlWithCommit(DwgObject.java:5410)
         at com.sunopsis.dwg.DwgObject.importFromXmlWithCommit(DwgObject.java:5378)
         at com.sunopsis.repository.manager.RepositoryManager.importObjectsUsingImportFromXML(RepositoryManager.java:6572)
         at com.sunopsis.repository.manager.RepositoryManager.treatObjectList(RepositoryManager.java:4630)
         at com.sunopsis.repository.manager.RepositoryManager.masterRepositoryImport(RepositoryManager.java:3007)
         at com.sunopsis.repository.manager.RepositoryManager.masterRepositoryImport(RepositoryManager.java:3140)
         at com.sunopsis.repository.manager.RepositoryManager.masterRepositoryImportFromZipFile(RepositoryManager.java:3177)
         at com.sunopsis.graphical.dialog.SnpsDialogImportTopoMaster$1.run(SnpsDialogImportTopoMaster.java:512)
         at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:655)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: com.sunopsis.dwg.SQLMasterReposException: ORA-00001: unique constraint (TEST2_ODI_REPO.AK_CONNECT) violated
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:85)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1035)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:953)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1224)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3386)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3467)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1350)
         at sun.reflect.GeneratedMethodAccessor243.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.ucp.jdbc.proxy.StatementProxyFactory.invoke(StatementProxyFactory.java:242)
         at oracle.ucp.jdbc.proxy.PreparedStatementProxyFactory.invoke(PreparedStatementProxyFactory.java:124)
         at $Proxy3.executeUpdate(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor243.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.odi.core.datasource.support.RuntimeClassLoaderDataSourceCreator$StatementInvocationHandler.invoke(RuntimeClassLoaderDataSourceCreator.java:163)
         at $Proxy4.executeUpdate(Unknown Source)
         at com.sunopsis.sql.SnpsQuery.executeUpdate(SnpsQuery.java:665)
         at com.sunopsis.dwg.dbobj.generated.GeneratedSnpConnect.insertAction(GeneratedSnpConnect.java:957)
         at com.sunopsis.dwg.dbobj.SnpConnect.insertAction(SnpConnect.java:1188)
         at com.sunopsis.dwg.DwgObject.insertActionForDuplication(DwgObject.java:2996)
         at com.sunopsis.dwg.DwgObject.insertForDuplication(DwgObject.java:3274)
         at com.sunopsis.dwg.DwgDuplicationTools.importOtherObjects(DwgDuplicationTools.java:2332)
         ... 14 more

    Thanks Ankit. Its very useful but again i am getting below Error.
    Please help me.. I am very new to ODI and this is my first migration.
    com.sunopsis.tools.core.exception.SnpsSimpleMessageException: Importing object SNP_AGENT : agent007 failed.
         at com.sunopsis.dwg.DwgDuplicationTools.importOtherObjects(DwgDuplicationTools.java:2379)
         at com.sunopsis.dwg.DwgDuplicationTools.synonymImport(DwgDuplicationTools.java:1835)
         at com.sunopsis.dwg.DwgObject.importFromObjectLst(DwgObject.java:6205)
         at com.sunopsis.dwg.DwgObject.doImport(DwgObject.java:5705)
         at com.sunopsis.dwg.DwgObject.importFromXml(DwgObject.java:5365)
         at com.sunopsis.dwg.DwgObject.importFromXmlWithCommit(DwgObject.java:5410)
         at com.sunopsis.dwg.DwgObject.importFromXmlWithCommit(DwgObject.java:5378)
         at com.sunopsis.repository.manager.RepositoryManager.importObjectsUsingImportFromXML(RepositoryManager.java:6572)
         at com.sunopsis.repository.manager.RepositoryManager.treatObjectList(RepositoryManager.java:4630)
         at com.sunopsis.repository.manager.RepositoryManager.masterRepositoryImport(RepositoryManager.java:3011)
         at com.sunopsis.repository.manager.RepositoryManager.masterRepositoryImport(RepositoryManager.java:3140)
         at com.sunopsis.repository.manager.RepositoryManager.masterRepositoryImportFromZipFile(RepositoryManager.java:3177)
         at com.sunopsis.graphical.dialog.SnpsDialogImportTopoMaster$1.run(SnpsDialogImportTopoMaster.java:512)
         at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:655)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: com.sunopsis.dwg.SQLMasterReposException: ORA-00001: unique constraint (TEST2_ODI_REPO.AK_AGENT) violated
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:85)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1035)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:953)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1224)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3386)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3467)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1350)
         at sun.reflect.GeneratedMethodAccessor243.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.ucp.jdbc.proxy.StatementProxyFactory.invoke(StatementProxyFactory.java:242)
         at oracle.ucp.jdbc.proxy.PreparedStatementProxyFactory.invoke(PreparedStatementProxyFactory.java:124)
         at $Proxy3.executeUpdate(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor243.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.odi.core.datasource.support.RuntimeClassLoaderDataSourceCreator$StatementInvocationHandler.invoke(RuntimeClassLoaderDataSourceCreator.java:163)
         at $Proxy4.executeUpdate(Unknown Source)
         at com.sunopsis.sql.SnpsQuery.executeUpdate(SnpsQuery.java:665)
         at com.sunopsis.dwg.dbobj.generated.GeneratedSnpAgent.insertAction(GeneratedSnpAgent.java:628)
         at com.sunopsis.dwg.DwgObject.insertActionForDuplication(DwgObject.java:2996)
         at com.sunopsis.dwg.DwgObject.insertForDuplication(DwgObject.java:3274)
         at com.sunopsis.dwg.DwgDuplicationTools.importOtherObjects(DwgDuplicationTools.java:2332)
         ... 14 more

  • Sql Developer 2.1 - "sql server" can't see tables

    I'm running sql developer 2.1 on Linux Mint -- connected to MSFT sql server with JTDS driver.
    I can query just fine. However, there are no tables in the object browser. No objects at all beyond the main categories (tables, stored procedures).
    Lee

    "I see...said the blind man to the deaf man".
    I found all my tables.....they were under "dbo" not the user I logged in as.
    My connection is: database MyDataBase username myuser
    The object tree looked like:
    MyDataBase
    - dbo
    - myuser
    + tables
    + stored procedures
    - someother
    - andanotherone
    I went to "myuser" which I considered to be the schema owner, but all the objects are actually owned by dbo -- and they are there under dbo.
    To further test -- I created table "table_test" -- and it appeared under dbo, not "myuser". Now that I understand the behavior, I'm back to LOVING Sql Developer. Thanks for helping and keep up the good work.
    I much prefer to work on oracle databases -- but at least I can keep using this excellent oracle tool even when forced to work on Microsoft Sql Server :)
    Lee

  • How to deal with int64 in the OCCI country

    Gyus, I'm trying to convert int64 to Number in order to to use it within OCCI (Windows, VS2005).
    But the hard point is that I'm using InstantClient 10.2 while Oracle client 9.2 is installed on my machine as well. In order to be able to set everything up I had to unset the NLS registry key. Because if I have the HKLM\SOFTWARE\ORACLE\NLS_LANG key untouched I get an exception at env->createConnection.
    But my current guess is that without this key I couldn't use Number.fromText(), right?
    Actually, what I'm trying to do is (C++/CLI code):
    Number num;          
    num.fromText(env, "277301159723", "999999999999");
    vectorArray.push_back(num);
    setVector(stmt, index, vectorArray, schemaName, typeName);
    the bold part throws this exception:
    OCI-21500: internal error code, arguments: [kadcbeg02], [], [], [], [], [], [], []
    Could anybody tell me why should I give twelve 9th as nls??
    Why "numberIsNull" is true after my "fromText" call??
    Does this code works on your machines? If yes I would blame the registry key.. But then I do not see if it is possible to use complicated logic with OCCI InstantClient and VS2005 having Oracle Client installed on the same machine (for sure, if oracle client is not 10.x)

    OK, it seems that the problem has nothing to do with NLS registry key, and the correct way to run this fromText stuff is to initialize Number beforehand:
    Number num =0; //yeah, just =0 helps
    num.fromText(env, "277301159723", "999999999999");
    std::string text = num.toText(env, "999999999999");
    works pretty well.
    But let me put some nitpicking here: while initializing doesn't seem to be a very sophisticated operation, I haven't found any oracle doc that states this explicitly. Moreover, all the docs state that I don't need (!!!!) to initialize the Number before I use it. How could this be possible??! Even this excellent oracle ppt lies: http://www.oracle.com/technology/tech/oci/occi/downloads/OCCI.ppt.
    Though, maybe the problem is only with C++/CLI at VS2005? Could anybody could run the code above without explicit "=0" and without getting an exception?
    And again, I'm still encountering the same error while calling setVector :
    OCI-21500: internal error code, arguments: [kadcbeg02], [], [], [], [], [], [], []
    Any suggestions are appreciated.

  • BI Publisher Bursting Problem

    Hi,
    I am trying to burst my report from BI Publisher.
    When I mention a FORMAT of PDF the bursting happens perfectly.
    But when I mention a FORMAT of EXCEL and file name as SAMPLE2401201412.xls, system goes nuts and give the below error.
    Output failed.
    [INSTANCE_ID=xxxxxxxxxxx.1383223600258] [SUBJOB_ID=2173015]
    Document generation failed
    [INSTANCE_ID=xxxxxxxxxxx.1383223600258] [OUTPUT_ID=2158251][ReportProcessor]Error rendering documentoracle.xdo.servlet.scheduler.ProcessingException: [ReportProcessor]Error rendering document
    at oracle.xdo.enterpriseScheduler.bursting.BurstingReportProcessor.renderReport(BurstingReportProcessor.java:447)
    at oracle.xdo.enterpriseScheduler.bursting.BurstingReportProcessor.onMessage(BurstingReportProcessor.java:127)
    at oracle.xdo.enterpriseScheduler.uti
    My Bursting parameters are coming from table
    KEY = 'ABC'
    TEMPLATE = 'DWPIA'
    TEMPLATE_FORMAT = 'RTF'
    LOCALE = en-US
    OUTPUT_FORMAT = EXCEL
    DEL_CHANNEL = FILE
    PARAMETER1 = /mnt/Business_Intelligence/Interim/2014/2014-P04/2014-P04-W2/Business Week SUMMARY/
    PARAMETER2 = SAMPLE2401201412.xls
    I have no clue why it runs OK for PDF and not for EXCEL...... any suggestion will be helpful.
    Cheers

    Exactly Same thing for me : (Here bipublisher log file (TRACE 32)) :
    [2014-03-25T12:36:34.207+01:00] [bi_server1] [WARNING] [] [oracle.xdo] [tid: 42] [userId: *****] [ecid: 0000KJsywYNAlJh5TB^Ayc1JCMTS000005,0] [APP: bipublisher#11.1.1]  !!!!!!! BurstingReportProcessor.renderReport :: [ReportProcessor]Error rendering document for [INSTANCE_JOB_ID=8552][[
    [JOB_ID=8568]
    [OUTPUT_ID=7851]
    [REPORT_URL=/~weblogic/TEST/report.xdo]
    [TEMPLATE=report]
    [OUTPUT_FORMAT=excel]
    ::oracle.xdo.servlet.data.DataException: Invalid format requested: excel
        at oracle.xdo.servlet.ReportException.fillInStackTrace(ReportException.java:124)
        at oracle.xdo.servlet.data.DataException.fillInStackTrace(DataException.java:127)
        at java.lang.Throwable.<init>(Throwable.java:196)
        at java.lang.Exception.<init>(Exception.java:41)
        at oracle.xdo.servlet.ReportException.<init>(ReportException.java:36)
        at oracle.xdo.servlet.data.DataException.<init>(DataException.java:39)
        at oracle.xdo.servlet.ReportImpl.renderScheduledJob(ReportImpl.java:882)
        at oracle.xdo.enterpriseScheduler.bursting.BurstingReportProcessor.renderReport(BurstingReportProcessor.java:386)
        at oracle.xdo.enterpriseScheduler.bursting.BurstingReportProcessor.onMessage(BurstingReportProcessor.java:127)
        at oracle.xdo.enterpriseScheduler.util.CheckpointEnabledListener.onMessage(CheckpointEnabledListener.java:25)
        at oracle.xdo.enterpriseScheduler.jmswrapper.client.JMSMessageConsumer.processMessage(JMSMessageConsumer.java:231)
        at oracle.xdo.enterpriseScheduler.jmswrapper.client.ThreadedMessageDispatcher$DispatchWorker.run(ThreadedMessageDispatcher.java:157)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
        at java.lang.Thread.run(Thread.java:662)
    [2014-03-25T12:36:34.209+01:00] [bi_server1] [WARNING] [] [oracle.xdo] [tid: 42] [userId: *****] [ecid: 0000KJsywYNAlJh5TB^Ayc1JCMTS000005,0] [APP: bipublisher#11.1.1]  !!!!!!! BurstingReportProcessor.renderReport :: [ReportProcessor]Error rendering document::oracle.xdo.servlet.scheduler.ProcessingException: [ReportProcessor]Error rendering document[[
        at oracle.xdo.enterpriseScheduler.bursting.BurstingReportProcessor.renderReport(BurstingReportProcessor.java:447)
        at oracle.xdo.enterpriseScheduler.bursting.BurstingReportProcessor.onMessage(BurstingReportProcessor.java:127)
        at oracle.xdo.enterpriseScheduler.util.CheckpointEnabledListener.onMessage(CheckpointEnabledListener.java:25)
        at oracle.xdo.enterpriseScheduler.jmswrapper.client.JMSMessageConsumer.processMessage(JMSMessageConsumer.java:231)
        at oracle.xdo.enterpriseScheduler.jmswrapper.client.ThreadedMessageDispatcher$DispatchWorker.run(ThreadedMessageDispatcher.java:157)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
        at java.lang.Thread.run(Thread.java:662)

  • How to analysis the data cube

    Once the analytic workspace is populated, I can view dimensions directly from Oracle AWM. But sometimes  the Data Viewer Window  load slowly. I wonder  whether it need to aggregate each time. Also  I can view the dimensions'  data  through the  navigation tree.But if I want to analysis the data cube more  detail, and to  mining some more important information should i how to analysis it , and what I can do ?

    Oracle OLAP offers several ways to analyze your data.  On this web page: Oracle OLAP note the Tutorial, Technical Information, Demonstrations & Videos, and Downloads sections for information on how to analyze your Oracle OLAP data using Microsoft Excel, Oracle BIEE and Oracle APEX reports.
    There are also several white papers discussing the advantages of various analysis methods.

  • ZFS - overfilled pool

    I installed Solaris 11 Express on my server machine a while ago. I created a Z2 RAID over five HDDs and created a few ZFS filesystems on it.
    Once I (unintentionally) managed to fill the pool completely with data and (to my surprise) the filesystems stopped working - I could not read/delete any data and when I unmounted the pool, I could not even mount it again.
    I've heard that this is a standard behavior of ZFS filesystems and that the correct way to avoid such problems in future is not to use the full capacity of the pool.
    Now I'm thinking about creating quotas on my filesystems (as they describe in [this article](ZFS: Set or create a filesystem quota)), but I am wondering if that is enough.
    I have got a tree hiearchy of filesystems on the pool, e.g. something like this (pool is the name of the zpool and also the name of the root filesystem on the pool):
    /pool
    /pool/svn
    /pool/home
    Is it OK to just set a quota on "pool" (as they should propagate to all sub-filesystems)? I mean, is this enough to prevent such event to happen again? For instance, would it prevent me to make a new fs snapshot should the quota be overrun?
    How much space should I reserve, e.g. make unavailable (I read somewhere that it is a good practise to use only about 80% of the pool capacity)?
    Finally, is there a better/more suitable solution to my original problem than setting the quota on fs?
    Thank you very much for your advice.
    Dusan

    ZFS has a couple of different quotas - each of them applies only to the dataset it has been configured on. That means that no quota will propagate down the descendant file systems, so keep that in mind. Another thing one should always have in mind is that ZFS gets really slow, if you populate the underlying zpool more than 80% - so watch out for that as well.
    Now for the quotas - there are basically two of them plus one thing called reservation, which is also a good thing to keep a zfs fs from filling up completely.
    quota vs. refquota: quota sets the amount of space a zfs fs can occupy including all the data that belong to that zfs fs, so e.g. snapshots are inlcuded, whereas refquota only refers to the amount of "active" data of that zfs which leaves snapshots out of the equation. You'll want to use refquota e.g. for file servers, where you want to enforce a quota on the actual work data, but want to be free to create as many snapshots as you like.
    Reservations ensure the minumum space which has to be available to the zfs fs it is set upon. If you set a reservation of 10G on each zfs fs, you won't be able to fill up your zpool more then the capacity of your zpoll minus the reservations combined.
    You can read about this in the excellent Oracle® Solaris ZFS Administration Guide, which is available on Oracle's site.
    Cheers,
    budy

  • Keep log sql statement

    Dear all,
    Is there any ways to keep log sql statement after insert,update,delete as the example below :
    ==========================================
    user01     client01     prog01.exe     update emp set name='test';
    user02     client02     prog02.exe     delete from emp1;
    I 'm not sure.Can use trigger? Is anybody have the example code?
    Oracle9i + windows2000
    Thank you for advance
    Chara

    Hi,
    Here is a small resumen About Basic Auditing in Oracle.
    For any Oracle versions prior to 9i you will need to set audit_trail parameter in the pfile ie.g.:
    audit_trail = DBFor later Oracle Versions:
    SQL>alter system set audit_trail = DB;To enable auditing for a specific object run the following command:
    SQL>AUDIT SELECT, INSERT, UPDATE, DELETE ON SCHEMA.TABLE;To stop auditing use:
    SQL>NOAUDIT SELECT, INSERT, UPDATE, DELETE ON SCHEMA.TABLE;Or to audit any statement that queries, delete, insert or updates any table, issue the following statement:
    SQL>AUDIT SELECT TABLE, DELETE TABLE, INSERT TABLE, UPDATE TABLE;If you want to audit a specific user will need to run the following commands:
    SQL>AUDIT ALTER TABLE, SELECT TABLE, INSERT TABLE, … ,GRANT PROCEDURE by <USERNAME>;To stop the audit for the user you will need to run:
    SQL>NOAUDIT ALTER TABLE, SELECT TABLE, INSERT TABLE, … ,GRANT PROCEDURE by <USERNAME>;To see the results of the auditing use please run:
    SQL> select * from dba_audit_trail;This is an excellent Oracle documentation to learn how to implement it:
    - http://download-uk.oracle.com/docs/cd/B19306_01/network.102/b14266/cfgaudit.htm
    Also I’ll recommend you to take a look on the following links:
    - http://www.oracle-base.com/articles/8i/Auditing.php
    Cheers,
    Francisco Munoz Alvarez
    http://www.oraclenz.com

  • What happend to the Moderator?

    I am a Jr Oracle DBA, though I have several years of SYBASE experience my knowledge of Oracle is very minimal. With the large base of excellent Oracle masters and guru's, I rather remain a junior in this field because there is a lot to learn from everyone.
    I have been using this forum and others on OTN and metalink to learn from others problems and solutions. Trying out stuff and learning along. Never needed to post anything yet because I could find most of what I was looking for from the documentation, books and forums such as these. So this is my first post, sad to say that I have to write on this first
    Over the past 3 days or so I have noticed very unhealthy discussions by certain individuals such as ‘ohiostate’. He has been accusing the entire professional community in several layers, authors, volunteers, publishers and user groups. The thread “A Good Guideline book for Database systems” is a perfect example..
    First of all, when people write such generic statements and generic advices they should have the basic commitment to disclose themselves. Otherwise they should be treated as anonymous and deleted. But what happend to the moderator?
    By using such generic names in their user ids and using such abusive language, accusing others, who does he represent, causing disgrace to all the Oracle users from Ohio State or Ohio State University?
    Everything this user has mentioned should be taken with little or no value. This user in particular is a disgrace to the Oracle user community. How does he call himself a Oracle DBA?
    Moderator, could you delete the threads/replies created by this individual and bring some health to this discussion forum? or merely do something with this person?

    Jason,
    I agree with you, unfortunately there have been several individual whose contributions are less than non-sense couple of bytes such as "read the manual" without even worrying about pointing out to the specific piece of manual, or even worst, suggesting to read a manual they have even not read themselves. There have been other cases even worst who in a completely anonymous way attack and harass other members from the forum, those individuals have been removed from the forum several times, there was an individual who directly attacked Justin Cave several times, it attacked also Andrew Clark aka APC, and it was removed along with its rubbish threads.
    Sad to hear this is the topic for your first post, but at the same time, I feel glad this forum at least has served at a certain extent to solve your problems, so you have not had the need to start a post on your own. Solving an specific problem for an OP or indirectly serving others as accurately as possible is the spirit of the forum.
    There is a moderator, and you can reach him by posting your thread at the Community Feedback (No Product Questions)
    Best Regards.

  • Exam 1ZO-047 or 1ZO-051

    I am planning to go for Oracle 10g Certifications.
    The first exam has 4 choices. I think going for 1ZO-01 or 1Z0-07 is of no use because they cater to 9i. So Should i go for 1ZO-047(SQL Expert) or 1ZO-51(11g).
    There is no book available for 1ZO-047 in India. But this exam logically sounds better. If any one has passed this exam please help me.
    Edited by: user2967588 on Dec 4, 2008 7:48 PM

    Hi
    It seems to be your first post, welcome to the best oracle forum!
    it depends what you will use in your daily work more 10g or 11g ?
    In the other-hand please note that the exam 1Z0-007 is an Exam that available online, so not necessary to go to a test center.
    Can you order a book on Amazone?
    OCA Oracle Database SQL Expert Exam Guide (Exam 1Z0-047)(US $37.79)
    http://www.amazon.com/gp/product/0071614214?ie=UTF8&tag=certguardcom-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=0071614214
    you can get sample questions on nearly all the oracle exams :
    http://www.oracle.com/global/us/education/certification/sample_questions/exam_1z0-047.html
    For your exam : 1z0-051
    you have the sybex book:
    OCA: Oracle Database 11g Administrator Certified Associate Study Guide: (Exams1Z0-051 and 1Z0-052) (Paperback) (US $56.69)
    http://www.amazon.com/gp/product/0470395125?ie=UTF8&tag=certguardcom-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=0470395125
    or the excellent Oracle press OCA Oracle Database 11g: Administration I Exam Guide (Exam 1Z0-052) (Paperback) (US $37.79)
    http://www.amazon.com/gp/product/0071597093?ie=UTF8&tag=certguardcom-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=0071597093
    Hope this helps you.
    Thanks.
    regards,
    Hub
    Edited by: Hub on Dec 5, 2008 8:55 AM

Maybe you are looking for

  • Acrobat Standard 9.1.2 update problem?

    I'm running Acrobat Standard 9 on Windows Vista Ultimate. Right after installing the Acrobat 9.1.2 update, but before restarting my system, I tried to open a PDF file, and experienced cascading file openings, where Acrobat seemed to be trying to open

  • New dedicated Server, incompatiblew with VMware Server 1.0

    Hi my old root running vmware server 1.0 is more than outdated and needs to be replaced, as the downtimes cause of hardware issues get bigger and bigger Now I need to find a solution to run the virtual windows machines on debian 7.5 (wheezy) vmware s

  • Cannot use caf/eu/gp/api/wd

    Dear all, We are facing a problem.  We are trying to test the GP and are working on some examples.  We are able to "see" the component "caf/eu/gp/api/wd" (and "caf/eu/gp/api"), but when selecting it, it says the following: "Illegal dependency: The co

  • 2602E not joining controller

    hi All, I have a scenario where my 2602E is not joining a controller in US. AP is in Netherlands. AP: AIR-CAP2602E-E-K9 Logs on WLC 5508: *spamApTask4: Jan 29 10:26:37.398: 18:9c:5d:9b:4d:00 Bridge AP can not join MultiCountry Controller: Bridge mode

  • How to store BDC error messages into oracle database table?

    Hello Experts, I have a peculier requirement wherein I need to store the error messages occured while executing the transaction using BDC (Call Transaction Method) in an Oracle Database table format. Is that possible, if yes, how? Thanks in advance.