Database connection error with JSP

I'm having problems connecting to a mysql database via a helper object in my jsp pages. I've researched this for the last two days and nothing I have tried is yet to make a difference.
My java code is essentially the following (minus try/catch for readability):
     Connection con = null;
     String dsn = "jdbc:odbc:mwtech";
     String user = "root";
     String password = "";
     Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
     con = DriverManager.getConnection(dsn, user, password);When I run this via JBuilder, it connects to my database without a problem. But when I try to use this same object via a jsp I keep getting the error:
java.sql.SQLException: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified .
I'm running Tomcat 4.1 as my web-server, my database is named mwtech and has a User DSN registered in the ODBC panel.
I've made the following alterations to my server.xml and web.xml files:
server.xml
<Context path="" reloadable="true" docBase="ROOT" debug="0" >
     <ResourceParams name="jdbc/mwtech">
         <parameter>
                <name>driverClassName</name>
                <value>sun.jdbc.odbc.JdbcOdbcDriver</value>
         </parameter>
         <parameter>
                <name>url</name>
                <value>jdbc:odbc:mwtech</value>
         </parameter>
         <parameter>
                <name>user</name>
                <value>root</value>
         </parameter>
         <parameter>
                <name>password</name>
                <value></value>
         </parameter>
      </ResourceParams>
</Context>
WEB-INF\web.xml<resource-ref>
<res-ref-name>jdbc/odbc</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
I have also tried configuring this to work with the mysql connector/J driver, but that didn't work either (in fact, it made things worse so it won't even run via JBuilder).
Any help would be greatly appreciated.
--Slowly going insane...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

It's not working because you're failing to provide access to the drivers from the application.
ODBC works in your IDE because your IDE is pathed for both J2EE and J2SE.
ODBC does not work in the Servlet container because it is not core there.
Connector/J doesn't work in either because Connector/J is not part of either core J2SE or J2EE. So....
Once again download the Conenctor/J driver (this is the better way to go, trust me on this). Put the mysql-connector-java-xxxx.jar file in the <%WEB_ROOT%>/WEB-INF/lib directory of your application. (replace <%WEB_ROOT%> with your root context). This should now work, both in your IDE and your web-app.

Similar Messages

  • Database Connection Error Cannot create PoolableConnectionFactory

    Hello everyone,
    Background:
    I have a newly installed and configured Ubuntu server running Tomcat5.5 and Mysql 5.0. This server was created in an attempt to migrate from a Red Hat server in a similar configuration, running the exact same webapp. Most of the configuration/classpath differences between the two platforms have been ironed out.
    The Problem:
    When our webapp trys to connect to the database on localhost, an exception 'java.security.AccessControlException: access denied (java.net.SocketPermission localhost resolve)' is generated.
    The server.xml configuration is below:
    <Resource name="jdbc/EconDollarsDB"
    auth="Container"
    type="javax.sql.DataSource"
    username="user"
    password="pass"
    driverClassName="com.mysql.jdbc.Driver"
    url="jdbc:mysql://localhost:3306/DBName?autoReconnect=true"
    maxActive="20" maxIdle="5"
    />I can connect to the database just fine using the command line client and the same username/password combo. This configuration has been working fine for at least a year on the older server. The only similar problems I have found on the net (meaning the same exception is generated) involve applets and attempts to connect to different hosts. This case involves a webapp, connecting to localhost, using a configuration that is known to work! I am simply baffled.
    The following stacktrace is generated:
    javax.servlet.ServletException: Database Connection Error
    Cannot create PoolableConnectionFactory (Server connection failure during transaction. Due to underlying exception: 'java.security.AccessControlException: access denied (java.net.SocketPermission localhost resolve)'.
    ** BEGIN NESTED EXCEPTION **
    java.security.AccessControlException
    MESSAGE: access denied (java.net.SocketPermission localhost resolve)
    STACKTRACE:
    java.security.AccessControlException: access denied (java.net.SocketPermission localhost resolve)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
         at java.security.AccessController.checkPermission(AccessController.java:427)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
         at java.lang.SecurityManager.checkConnect(SecurityManager.java:1031)
         at java.net.InetAddress.getAllByName0(InetAddress.java:1117)
         at java.net.InetAddress.getAllByName0(InetAddress.java:1098)
         at java.net.InetAddress.getAllByName(InetAddress.java:1061)
         at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:137)
         at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:276)
         at com.mysql.jdbc.Connection.createNewIO(Connection.java:2769)
         at com.mysql.jdbc.Connection.<init>(Connection.java:1531)
         at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:266)
         at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:37)
         at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:290)
         at org.apache.commons.dbcp.BasicDataSource.validateConnectionFactory(BasicDataSource.java:877)
         at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:851)
         at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540)
         at edu.tamu.erl.database.dblibrary.plugin.TomcatConnectionFactory.getConnection(TomcatConnectionFactory.java:102)
         at edu.tamu.erl.database.dblibrary.DBManager.getConnection(DBManager.java:70)
         at edu.tamu.erl.database.dblibrary.DBManager.getDBDataAccessObjectList(DBManager.java:318)
         at edu.tamu.erl.econdollars.middletire.SessionManager.getSessionStatus(SessionManager.java:157)
         at edu.tamu.erl.econdollars.middletire.SessionManager.retallyDB(SessionManager.java:637)
         at org.apache.jsp.admin.login_jsp._jspService(login_jsp.java:88)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:272)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:161)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:245)
         at org.apache.catalina.core.ApplicationFilterChain.access$0(ApplicationFilterChain.java:50)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:156)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:152)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:540)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Thread.java:595)
    ** END NESTED EXCEPTION **
    Attempted reconnect 3 times. Giving up.)
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:846)
         org.apache.jasper.runtime.PageContextImpl.access$11(PageContextImpl.java:65)
         org.apache.jasper.runtime.PageContextImpl$12.run(PageContextImpl.java:766)
         java.security.AccessController.doPrivileged(Native Method)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:764)
         org.apache.jsp.admin.login_jsp._jspService(login_jsp.java:242)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:585)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:272)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:161)
    edu.tamu.erl.database.dblibrary.DBLibraryBaseException: Database Connection Error
    Cannot create PoolableConnectionFactory (Server connection failure during transaction. Due to underlying exception: 'java.security.AccessControlException: access denied (java.net.SocketPermission localhost resolve)'.
    ** BEGIN NESTED EXCEPTION **
    java.security.AccessControlException
    MESSAGE: access denied (java.net.SocketPermission localhost resolve)
    STACKTRACE:
    java.security.AccessControlException: access denied (java.net.SocketPermission localhost resolve)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
         at java.security.AccessController.checkPermission(AccessController.java:427)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
         at java.lang.SecurityManager.checkConnect(SecurityManager.java:1031)
         at java.net.InetAddress.getAllByName0(InetAddress.java:1117)
         at java.net.InetAddress.getAllByName0(InetAddress.java:1098)
         at java.net.InetAddress.getAllByName(InetAddress.java:1061)
         at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:137)
         at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:276)
         at com.mysql.jdbc.Connection.createNewIO(Connection.java:2769)
         at com.mysql.jdbc.Connection.<init>(Connection.java:1531)
         at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:266)
         at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:37)
         at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:290)
         at org.apache.commons.dbcp.BasicDataSource.validateConnectionFactory(BasicDataSource.java:877)
         at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:851)
         at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540)
         at edu.tamu.erl.database.dblibrary.plugin.TomcatConnectionFactory.getConnection(TomcatConnectionFactory.java:102)
         at edu.tamu.erl.database.dblibrary.DBManager.getConnection(DBManager.java:70)
         at edu.tamu.erl.database.dblibrary.DBManager.getDBDataAccessObjectList(DBManager.java:318)
         at edu.tamu.erl.econdollars.middletire.SessionManager.getSessionStatus(SessionManager.java:157)
         at edu.tamu.erl.econdollars.middletire.SessionManager.retallyDB(SessionManager.java:637)
         at org.apache.jsp.admin.login_jsp._jspService(login_jsp.java:88)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:272)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:161)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:245)
         at org.apache.catalina.core.ApplicationFilterChain.access$0(ApplicationFilterChain.java:50)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:156)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:152)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:540)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Thread.java:595)
    ** END NESTED EXCEPTION **
    Attempted reconnect 3 times. Giving up.)
         edu.tamu.erl.database.dblibrary.plugin.TomcatConnectionFactory.getConnection(TomcatConnectionFactory.java:105)
         edu.tamu.erl.database.dblibrary.DBManager.getConnection(DBManager.java:70)
         edu.tamu.erl.database.dblibrary.DBManager.getDBDataAccessObjectList(DBManager.java:318)
         edu.tamu.erl.econdollars.middletire.SessionManager.getSessionStatus(SessionManager.java:157)
         edu.tamu.erl.econdollars.middletire.SessionManager.retallyDB(SessionManager.java:637)
         org.apache.jsp.admin.login_jsp._jspService(login_jsp.java:88)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:585)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:272)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:161)Any help would be greatly appreciated.

    Hi,
    Its clearly saying the connect permission is missing with the current available policy.
    you add the following permisson entry to the <installed JRE>\lib\security\java.policy file.
    (e.g) C:\Program Files\Java\j2re1.4.2_08\lib\security\java.policy
    permission java.security.AllPermission;
    grant{
    permission java.security.AllPermission;
    If the application is running standalone then the code is allowed uncontrolled access but for webapplicatons running through browser, the security check is performed for the configured JRE.
    Regards
    Karthik
    <[email protected]>

  • Database Connection Error

    Hello,
    We have crystal reports published on the BOBJ system and the datasource is SAP BI system . The reports were working fine
    untill last monday when they started giving error " Database Connection Error " .
    This is what happening, when we run the crystal report , it will come up with a pop up for selection and upon giving the selection and click on execute , it is giving error.
    To start we have this issue in BOBJ dev system , but now we have the same issue in QA and Prod as well. I suspected
    this has to do with license keys, but my BOBJ Admin *** basis team thinks otherwise.
    I couldnt think of would have gone wrong or missing . Any ideas will be appreciated.
    Thanks,
    Ravi.

    Ingo,
    I tested the reports using the crystal designer, and they ran fine without issues . The same report when we run on BOBJ/infoview it is giving data base connection error. The same is happening across all the 3 systems( Dev, QA and Prod ).
    I also tested the verify database on the crystal designer and it say " data is up to date".
    As the client level integration seems to be working fine, I'm thinking there is a issue with server level integration.
    Can you through some insight into the checks we can do get to the bottom?
    Thanks,
    Raju.

  • Database Connection Error 42000:[Microsoft][ODBC driver for oracle] Syntax

    Hi,
      This is Sathish, I am trying to create a report and retrieve data through stored procedure using ODBC Connection. When connecting to the Stored Procedure it is showing Database Connection Error 42000:[Microsoft][ODBC driver for oracle] Syntax error or access violation' Error.
    CRXI R2, Oracle 9i.
    What do i do to solve this issue.
    Regards,
    Sathish

    Hi Satish
    It could be an issue with the driver.
    You can try with the OLEDB n Oracle native connection to test if the issue persists.
    Also you can refer to the [Troubleshooting Database Connectivity for Crystal Reports|http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/d05b3bb7-0f28-2c10-4ea3-84dbdc4e414e&overridelayout=true]
    Hope this helps!!
    Regards
    Sourashree

  • Database Connection Error: '42S02..... in Crystal Reports XI Developer

    I get the above error within CR XI Developer when I try to connect an ODBC link to a Visual FoxPro database (.DBC).
    The full messsage is:
    Database Connection Error: '42S02:[Microsoft][ODBC Visual FoxPro Driver] Not a table. [Database Vender code: 123]'
    This is a headache and any assistance in solving this problem would be greatly appreciated.

    Hi Bob,
    First you should go to this link: http://www.sdn.sap.com/irj/boc and download the trial version of CR XI R2 and use your XI keycode, then apply the patches which you can get to by clicking on the BusinessObjects tab above, then Downloads.
    Direct link to the Trial version: http://www.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx
    Download SP5 and then test again. If it's still an issue we can at least escalate the problem. CR Xi is past it's supported life cycle meaning no patches will be released.
    Have you tried using any other database connection methods to see if those work? May be an issue with the ODBC driver. Try downloading the latest MDAC from microsoft also.
    Thank you
    Don

  • Database Connection Error: Cannot obtain error message from the server

    I have a SQL statement that wants to add a temp table to the database.   The SQL statement works fine but when I try to add it via 'Add Command' feature in Crystal XI R2, I get the following error message:
    Database Connection Error: Cannot obtain error message from the server
    Any ideas?
    Thanks in advance,
    Zack H.

    Hi Raghavendra,
    I am using this in the 'Add Command' feature but I get the error message displayed in the subject line:
    CREATE TABLE #TibetanYaks(
    YakID char(4),
    YakName char(20) )
    INSERT INTO #TibetanYaks (YakID, YakName)
    SELECT  LastName, FirstName
    FROM      Employee
    WHERE      EmployeeID between '2000' and '3000'
    I haven't tried to add this as a stored procedure but I imagine it will work as I have no problems yet with stored procedures.  I simply want to be able to use temporary tables for the sole purpose of that session and not creating anything static in the database.
    By the way, even though I get the error message, when I look on the backend database, I see that the temporary table was successfully created...its just not brought across correctly in Crystal.
    Any ideas?
    Zack H.

  • OBIEE 11g database connection error after deploying to server.

    Hi,
    I deployed RPD to obiee 11g server and when I run a report it is giving database connectivity error. In 10g we just specify OLAP_DSN, OLAP_USER and same in connection pool with database password. I did the same in 11g as well but it's not working.
    Is there any other place I need to specify database connection detail?
    Thanks
    Jay.

    coming with different names :) If you respond to your older threads will happy to respond you.
    When we answer your question we love to know how it helped you. we are not asking your $$$$$$$$$$$$$

  • Database connecting error after kernel upgrade

    Hi Gurus
    I am tring to upgrade my system kernel from 144 to 179, the system based on AIX 6.1 and DB2 B9.5.2,
    After upgrading kernel SAP is not starting and I found database connection error because which Database is not activated. The startdb command completed successfully. I found I/O error while trying to make db connection.
    I am also tring make SAP up by using old kernel (backup) but getting same error for backup kernel also. Now my system is totaly down.
    So please help me out if you have any idea for this error in db2 database. The start db logs are as given below.
    Wed Jan 21 08:56:07 GMT+05:30 2009
    LOGFILE FOR STARTING DB6 (DB2 UDB)
    Wed Jan 21 08:56:07 GMT+05:30 2009
    checking required environment variables
    DB2INSTANCE  is >db2d11<
    INSTHOME     is >/db2/db2d11<
    DB2DBDFT     is >D11<
    Wed Jan 21 08:56:07 GMT+05:30 2009
    starting database manager
    01/21/2009 08:56:07     0   0   SQL1026N  The database manager is already active.
    SQL1026N  The database manager is already active.
    Database Manager started
    SQL1036C  An I/O error occurred while accessing the database.  SQLSTATE=58030
    Activate database failed
    Wed Jan 21 08:56:08 GMT+05:30 2009
    R3trans connect to the database
    R3trans check finished with return code: 12
    R3trans connect failed
    Notify your SAP/database administrator
    Wed Jan 21 08:56:08 GMT+05:30 2009
    /usr/sap/D11/SYS/exe/run/startdb: Terminating with error code 2
    Please help me out.
    Regards,
    Jayesh.

    Hi Jayesh,
    from your description I would guess that the IO error is not related to the kernel change at all.
    Please have a look at db2diag.log for the real cause of the problem.
    You should be able to reproduce the error with
    db2 activate database <dbname>
    Regards
                   Frank

  • Database Connection Error - Need Help

    I have a Crystal Reports report that "stopped working".  When I preview the report, I receive a Database Connection error.  I have a copy of the error posted at http://www.foreigncandy.com/crystalreportserror.jpg.
    Anyone have any ideas what's causing this?  We are new to SAP and Crystal Reports.
    Thanks
    Jeff Verdoorn - Systems Analyst
    The Foreign Candy Company, Inc.

    I'm not sure what database version you are looking for.  it's Crystal Reports 2008 version 12.
    Could it be a a problem with the setup of an item?
    Here's the SQL query:
    -- Create temporary table variable
    DECLARE @LineQuantities TABLE
         DocEntry int,
         DocDate datetime,
         ItemCode varchar(20),
         Quantity numeric(19,6),
         Last4WeekSales numeric(19,6),
         Last12WeekSales numeric(19,6),
         Week1Sales numeric(19,6),
         Week2Sales numeric(19,6),
         Week3Sales numeric(19,6),
         Week4Sales numeric(19,6),
         Week5Sales numeric(19,6),
         Week6Sales numeric(19,6),
         Week7Sales numeric(19,6),
         Week8Sales numeric(19,6),
         Week9Sales numeric(19,6),
         Week10Sales numeric(19,6),
         Week11Sales numeric(19,6),
         Week12Sales numeric(19,6)
    -- Fill table with list of invoice items and the week they were sold
    INSERT INTO @LineQuantities (DocEntry,DocDate,ItemCode,Quantity,Last4WeekSales, Last12WeekSales,
         Week1Sales,Week2Sales,Week3Sales,Week4Sales,Week5Sales,Week6Sales,Week7Sales,Week8Sales,Week9Sales,Week10Sales,
         Week11Sales,Week12Sales)
    SELECT invHead.DocEntry, invHead.DocDate, invLine.ItemCode, invLine.Quantity,
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-4,GetDate()) AND invHead.DocDate <= DateAdd(Week,-0,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Last Week 4 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-12,GetDate()) AND invHead.DocDate <= DateAdd(Week,-0,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Last Week 12 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-12,GetDate()) AND invHead.DocDate <= DateAdd(Week,-11,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -12 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-11,GetDate()) AND invHead.DocDate <= DateAdd(Week,-10,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -11 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-10,GetDate()) AND invHead.DocDate <= DateAdd(Week,-9,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -10 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-9,GetDate()) AND invHead.DocDate <= DateAdd(Week,-8,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -9 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-8,GetDate()) AND invHead.DocDate <= DateAdd(Week,-7,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -8 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-7,GetDate()) AND invHead.DocDate <= DateAdd(Week,-6,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -7 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-6,GetDate()) AND invHead.DocDate <= DateAdd(Week,-5,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -6 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-5,GetDate()) AND invHead.DocDate <= DateAdd(Week,-4,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -5 Sales',
              CASE
              WHEN invHead.DocDate > DateAdd(Week,-4,GetDate()) AND invHead.DocDate <= DateAdd(Week,-3,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -4 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-3,GetDate()) AND invHead.DocDate <= DateAdd(Week,-2,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -3 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-2,GetDate()) AND invHead.DocDate <= DateAdd(Week,-1,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -2 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-1,GetDate()) AND invHead.DocDate <= DateAdd(Week,-0,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -1 Sales'
    FROM OINV AS invHead
         LEFT JOIN INV1 AS invLine ON invLine.DocEntry = invHead.DocEntry
    -- Create summary report from temporary table
    SELECT itm.ItemCode AS 'Item No.', itm.ItemName AS 'Item Description', itm.OnHand AS 'In Stock',
         itm.IsCommited AS 'Qty Ordered by Customers', itm.OnOrder AS 'Qty Ordered from Vendors', itm.LeadTime AS 'Lead Time',     
         CASE
              WHEN (Sum(sales.Last4WeekSales)/4) > Sum(sales.Last12WeekSales)/12 THEN Convert(int,(itm.OnHand/(Sum(sales.Last4WeekSales)/4)))
              ELSE  Convert(int,(itm.OnHand/(Sum(sales.Last12WeekSales)/12)))
         END AS 'Weeks of In Stock',
         Convert(numeric(8,2),(Sum(sales.Last4WeekSales)/4)) AS '4 Week Sales Average', Convert(numeric(8,2),(Sum(sales.Last12WeekSales)/12)) AS '12 Week Sales Average',
         Convert(varchar(10),Convert(numeric(8,2),(100*((Sum(sales.Last4WeekSales)/4) - (Sum(sales.Last12WeekSales)/12)) / (Sum(sales.Last12WeekSales)/12)))) + ' %' AS 'Percent Change',
         Convert(int,Sum(sales.Week1Sales)) AS 'Week -12 Sales', Convert(int,Sum(sales.Week2Sales)) AS 'Week -11 Sales', Convert(int,Sum(sales.Week3Sales)) AS 'Week -10 Sales',
         Convert(int,Sum(sales.Week4Sales)) AS 'Week -9 Sales', Convert(int,Sum(sales.Week5Sales)) AS 'Week -8 Sales', Convert(int,Sum(sales.Week6Sales)) AS 'Week -7 Sales',
         Convert(int,Sum(sales.Week7Sales)) AS 'Week -6 Sales', Convert(int,Sum(sales.Week8Sales)) AS 'Week -5 Sales', Convert(int,Sum(sales.Week9Sales)) AS 'Week -4 Sales',
         Convert(int,Sum(sales.Week10Sales)) AS 'Week -3 Sales', Convert(int,Sum(sales.Week11Sales)) AS 'Week -2 Sales', Convert(int,Sum(sales.Week12Sales)) AS 'Week -1 Sales'
    FROM @LineQuantities AS sales
         LEFT JOIN OITM AS itm ON itm.ItemCode = sales.ItemCode
    WHERE sales.Quantity > 0
    GROUP BY itm.ItemCode, itm.ItemName, itm.OnHand, itm.IsCommited, itm.OnOrder, itm.LeadTime
    ORDER BY itm.ItemCode
    Thanks
    Jeff

  • DB Connection error with Placeholder Datacontrol

    Hi,
    I have mocked up a few screens using place holder datacontrols. So far so good, everything acts as intended.
    The moment, I try pushing in an external task flow call as a dialog then I get weird database connection errors.
    Following is the stack:
    JBO-28001: Cannot connect to database
    <RegistrationConfigurator><handleError> Server Exception during PPR, #1
    oracle.jbo.PCollException: JBO-28001: Cannot connect to database
         at oracle.jbo.PCollException.throwException(PCollException.java:36)
         at oracle.jbo.pcoll.PCollManager.ensureConnection(PCollManager.java:512)
         at oracle.jbo.pcoll.OraclePersistManager.getConnection(OraclePersistManager.java:146)
         at oracle.jbo.pcoll.OraclePersistManager.persistentObjectsExist(OraclePersistManager.java:681)
         at oracle.jbo.pcoll.OraclePersistManager.createTable(OraclePersistManager.java:763)
         at oracle.jbo.pcoll.OraclePersistManager.queryNextCollectionId(OraclePersistManager.java:1444)
         at oracle.jbo.pcoll.PCollManager.register(PCollManager.java:562)
         at oracle.jbo.pcoll.PCollection.<init>(PCollection.java:99)
         at oracle.jbo.pcoll.PCollManager.createCollection(PCollManager.java:461)
         at oracle.jbo.server.DBSerializer.setup(DBSerializer.java:150)
         at oracle.jbo.server.DBSerializer.passivateRootAM(DBSerializer.java:283)
         at oracle.jbo.server.DBSerializer.passivateRootAM(DBSerializer.java:264)
         at oracle.jbo.server.ApplicationModuleImpl.passivateStateInternal(ApplicationModuleImpl.java:5672)
         at oracle.jbo.server.ApplicationModuleImpl.passivateState(ApplicationModuleImpl.java:5533)
         at oracle.adf.model.bc4j.DCJboDataControl.createSnapshot(DCJboDataControl.java:3100)
         at oracle.adf.model.dcframe.DataControlFrameImpl.createSnapshot(DataControlFrameImpl.java:606)
         at oracle.adfinternal.controller.util.model.DCFrameImpl.createSnapshot(DCFrameImpl.java:60)
         at oracle.adfinternal.controller.state.ViewPortContextImpl.extractModelState(ViewPortContextImpl.java:1262)
         at oracle.adfinternal.controller.state.RootViewPortContextImpl.createInMemorySavePoint(RootViewPortContextImpl.java:178)
         at oracle.adfinternal.controller.activity.TaskFlowCallActivityLogic.execute(TaskFlowCallActivityLogic.java:118)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.executeActivity(ControlFlowEngine.java:989)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:878)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:777)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.routeFromActivity(ControlFlowEngine.java:551)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.performControlFlow(ControlFlowEngine.java:147)
         at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleAdfcNavigation(NavigationHandlerImpl.java:109)
         at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:78)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:130)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:812)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:292)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.lang.IllegalStateException
         at oracle.jbo.server.DBTransactionImpl.getDatabaseProductName(DBTransactionImpl.java:1196)
         at oracle.jbo.server.DBTransactionImpl.getInternalConnection(DBTransactionImpl.java:1320)
         at oracle.jbo.server.DBTransactionImpl.getPersistManagerConnection(DBTransactionImpl.java:1247)
         at oracle.jbo.pcoll.PCollManager.ensureConnection(PCollManager.java:486)
         ... 62 more
    ## Detail 0 ##
    java.lang.IllegalStateException
         at oracle.jbo.server.DBTransactionImpl.getDatabaseProductName(DBTransactionImpl.java:1196)
         at oracle.jbo.server.DBTransactionImpl.getInternalConnection(DBTransactionImpl.java:1320)
         at oracle.jbo.server.DBTransactionImpl.getPersistManagerConnection(DBTransactionImpl.java:1247)
         at oracle.jbo.pcoll.PCollManager.ensureConnection(PCollManager.java:486)
         at oracle.jbo.pcoll.OraclePersistManager.getConnection(OraclePersistManager.java:146)
         at oracle.jbo.pcoll.OraclePersistManager.persistentObjectsExist(OraclePersistManager.java:681)
         at oracle.jbo.pcoll.OraclePersistManager.createTable(OraclePersistManager.java:763)
         at oracle.jbo.pcoll.OraclePersistManager.queryNextCollectionId(OraclePersistManager.java:1444)
         at oracle.jbo.pcoll.PCollManager.register(PCollManager.java:562)
         at oracle.jbo.pcoll.PCollection.<init>(PCollection.java:99)
         at oracle.jbo.pcoll.PCollManager.createCollection(PCollManager.java:461)
         at oracle.jbo.server.DBSerializer.setup(DBSerializer.java:150)
         at oracle.jbo.server.DBSerializer.passivateRootAM(DBSerializer.java:283)
         at oracle.jbo.server.DBSerializer.passivateRootAM(DBSerializer.java:264)
         at oracle.jbo.server.ApplicationModuleImpl.passivateStateInternal(ApplicationModuleImpl.java:5672)
         at oracle.jbo.server.ApplicationModuleImpl.passivateState(ApplicationModuleImpl.java:5533)
         at oracle.adf.model.bc4j.DCJboDataControl.createSnapshot(DCJboDataControl.java:3100)
         at oracle.adf.model.dcframe.DataControlFrameImpl.createSnapshot(DataControlFrameImpl.java:606)
         at oracle.adfinternal.controller.util.model.DCFrameImpl.createSnapshot(DCFrameImpl.java:60)
         at oracle.adfinternal.controller.state.ViewPortContextImpl.extractModelState(ViewPortContextImpl.java:1262)
         at oracle.adfinternal.controller.state.RootViewPortContextImpl.createInMemorySavePoint(RootViewPortContextImpl.java:178)
         at oracle.adfinternal.controller.activity.TaskFlowCallActivityLogic.execute(TaskFlowCallActivityLogic.java:118)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.executeActivity(ControlFlowEngine.java:989)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:878)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:777)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.routeFromActivity(ControlFlowEngine.java:551)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.performControlFlow(ControlFlowEngine.java:147)
         at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleAdfcNavigation(NavigationHandlerImpl.java:109)
         at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:78)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:130)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:812)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:292)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    Hi,
    can you elaborate a bit more on this: +"I try pushing in an external task flow call as a dialog then I get weird database connection errors."+
    There is a known issue with passivation when a database bound application calls an unbound task flow (or vice versa - don't have the bug report open). This reported bug got fixed for JDeveloper 11g. However, if your application does not use ADF BC at all (just the mockup) then this might be something different. Dependent on the pain it causes on your side you can send me a reproducible testcase (which is indication low pain on your side) or contact customer support (if this hinders you from proceeding with your task). My mail address is in my OTN profile. Make sure the attachement is in a ZIP where you rename ".zip" to ".unzip". I would then try and run it against 11.1.14 and if it still reproduces file a bug
    Frank

  • Database Connection Error:BAPI Error #0

    I have a problem when I preview a report in Crystal Reports 2008 using BW MDX Query I had recieved the following messages:
    1.Failed to retrieve data from database
    and then when I click ok
    2.Database Connection Error:BAPI Error #0
    Error occurred  when starting the parser:timeout during allocate / CPIC-CALL'ThSAPCMRCV'
    I copied the query of crystal report and I execute it inside the transaction of mdxtest
    SELECT  NON EMPTY EXCEPT([0CALMONTH].MEMBERS, {[0CALMONTH].[All]}) ON ROWS FROM [USD_SD_C0/RPT_1] SAP VARIABLES [!V000001] INCLUDING [0CALMONTH].[200401]
    I found the debugger had stopped in the line Break when I click on F8
    I recieve the following error
    Error occurred when starting the parser: timeout
    during allocate / CPIC-CALL: 'ThSAPCMRCV'
    Please anybody can help me

    Dear Ingo
    I had read this note
    I applied the following:
    1.I didn't found the lrfc32.dll in the windows/system32 in my BW server so I asked my basis administrator to upgrade the kernel
    2.after this step I didn't find it again so I had copied the file from the new kernel and copied it to system32 and sysWow
    3.I register successfuly the lrfc32.dll using the commanf regsvr c:/windows/system32/lfrc32.dll
    (note: this step didn't succeed until I had installed SAP GUI in BW server because as I observed that there is a need for C++ compiler which is installed by default when you install GUI)
    after all of this I cannot run any crystal report based on any BW query
    So Please anyboday can help

  • Database Connection error in Crystal Reports using SAP BW system

    Hi,
    While using Crystal Reports in trying to build a report on the SAP Query in SAP/BW System using the MDX driver, I am able to get the structure of the query fields into the report but on the other hand while trying to refresh the report for data I am getting the error message u201C Failed to connect to the databaseu201D . This database  connection error occurs despite the fact that the SAP server authentication details being entered on Refreshing the report is correct.
    What could be the possible reason? Any guess...
    Thanks,
    Amogh

    Hi,
    Yes, I am using the MDX driver. 
    Is there any pre-requisites of importing certain ABAP transports into SAP Server since I haven't done any? Please  recommend.
    Thanks,
    Amogh

  • DataBase Connected Error

    Hi All,
    I have one client who is using VPN to login into the system.I have to devlope some  crystal report .
    I have installed Business Object Edge series, Crystal Report 2008, Integration kit. and connected successfully.
    when i try to run the report it shows the error
    "Database Connected Error : Bapi Error  #:0"
    "Error Occured When Starting Parser : Timeout during allocate / CPIC-CALL: 'thSAPCMRCV".
    Regards,
    Komik Shah

    Hi
    The usual cause for this error is that the MDX parser in SAP is failing. 
    If you run MDXTest do you get similar problems? Generally this can be fixed by having your BASIS people recreate the MDX parser.
    Hope this helps!!!
    Regards
    Sourashree

  • Unexpected database connection error

    I am encountering an error only in the development environment on an existing application. We have six reports that can be printed through our application, two of which I can't print and the other four I can on my development machine. This problem does not show up on other development machines even though our application code is sync-ed up using source control. This problem also does not show up in testing or production, just on my machine.
    The only thing I can think of is that I had added a field to the Java object that the report pulls it's data from and I poked around a bit before reading about the "Verify database" option to get the new field to show up in the crystal reports editing section for that report. Maybe I clicked on something that broke the connection?
    Thanks in advance for your help.
    When I try to print (to pdf) from the application I get the following error:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Unexpected database connector error---- Error code:-2147467259 Error code name:failed
         at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
         at com.crystaldecisions.reports.sdk.PrintOutputController.export(Unknown Source)
         at com.exre.fusion.printing.ReportPrinter.exportPdfReportFromMultipleModelObjects(ReportPrinter.java:97)
         at com.exre.fusion.printing.ReportPrinter.exportPdfReportFromMultipleModelObjects(ReportPrinter.java:86)
         at com.exre.fusion.application.actions.printing.ExportToPdfActionManager$2.reallyProduceOutput(ExportToPdfActionManager.java:81)
         at com.exre.fusion.application.actions.printing.HardCopyAction.run(HardCopyAction.java:13)
         at org.eclipse.jface.action.Action.runWithEvent(Action.java:499)
         at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:539)
         at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488)
         at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3348)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2968)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914)
         at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878)
         at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419)
         at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
         at com.exre.fusion.application.Application.run(Application.java:47)
         at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336)
         at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
         at org.eclipse.core.launcher.Main.run(Main.java:977)
         at org.eclipse.core.launcher.Main.main(Main.java:952)
    Caused by: com.crystaldecisions.reports.reportdefinition.datainterface.e: Unexpected database connector error
         at com.crystaldecisions.reports.reportdefinition.datainterface.a.a(Unknown Source)
         at com.crystaldecisions.reports.reportdefinition.datainterface.a.a(Unknown Source)
         at com.crystaldecisions.reports.reportdefinition.datainterface.a.a(Unknown Source)
         at com.crystaldecisions.reports.reportdefinition.datainterface.a.a(Unknown Source)
         at com.crystaldecisions.reports.reportdefinition.datainterface.g.a(Unknown Source)
         at com.businessobjects.reports.sdk.b.b.byte(Unknown Source)
         at com.businessobjects.reports.sdk.b.b.int(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.dd.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         ... 33 more
    Caused by: com.crystaldecisions.reports.queryengine.am: Unexpected database connector error
         at com.crystaldecisions.reports.queryengine.driverImpl.n.eC(Unknown Source)
         at com.crystaldecisions.reports.queryengine.driverImpl.n.if(Unknown Source)
         at com.crystaldecisions.reports.queryengine.ax.new(Unknown Source)
         at com.crystaldecisions.reports.queryengine.ax.byte(Unknown Source)
         ... 46 more
    Caused by
    com.crystaldecisions.reports.reportdefinition.datainterface.e: Unexpected database connector error
         at com.crystaldecisions.reports.reportdefinition.datainterface.a.a(Unknown Source)
         at com.crystaldecisions.reports.reportdefinition.datainterface.a.a(Unknown Source)
         at com.crystaldecisions.reports.reportdefinition.datainterface.a.a(Unknown Source)
         at com.crystaldecisions.reports.reportdefinition.datainterface.a.a(Unknown Source)
         at com.crystaldecisions.reports.reportdefinition.datainterface.g.a(Unknown Source)
         at com.businessobjects.reports.sdk.b.b.byte(Unknown Source)
         at com.businessobjects.reports.sdk.b.b.int(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.dd.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
         at com.crystaldecisions.reports.sdk.PrintOutputController.export(Unknown Source)
         at com.exre.fusion.printing.ReportPrinter.exportPdfReportFromMultipleModelObjects(ReportPrinter.java:97)
         at com.exre.fusion.printing.ReportPrinter.exportPdfReportFromMultipleModelObjects(ReportPrinter.java:86)
         at com.exre.fusion.application.actions.printing.ExportToPdfActionManager$2.reallyProduceOutput(ExportToPdfActionManager.java:81)
         at com.exre.fusion.application.actions.printing.HardCopyAction.run(HardCopyAction.java:13)
         at org.eclipse.jface.action.Action.runWithEvent(Action.java:499)
         at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:539)
         at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488)
         at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3348)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2968)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914)
         at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878)
         at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419)
         at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
         at com.exre.fusion.application.Application.run(Application.java:47)
         at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336)
         at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
         at org.eclipse.core.launcher.Main.run(Main.java:977)
         at org.eclipse.core.launcher.Main.main(Main.java:952)
    Caused by: com.crystaldecisions.reports.queryengine.am: Unexpected database connector error
         at com.crystaldecisions.reports.queryengine.driverImpl.n.eC(Unknown Source)
         at com.crystaldecisions.reports.queryengine.driverImpl.n.if(Unknown Source)
         at com.crystaldecisions.reports.queryengine.ax.new(Unknown Source)
         at com.crystaldecisions.reports.queryengine.ax.byte(Unknown Source)
         ... 46 more
    Caused by:
    com.crystaldecisions.reports.reportdefinition.datainterface.e: Unexpected database connector error
         at com.crystaldecisions.reports.reportdefinition.datainterface.a.a(Unknown Source)
         at com.crystaldecisions.reports.reportdefinition.datainterface.a.a(Unknown Source)
         at com.crystaldecisions.reports.reportdefinition.datainterface.a.a(Unknown Source)
         at com.crystaldecisions.reports.reportdefinition.datainterface.a.a(Unknown Source)
         at com.crystaldecisions.reports.reportdefinition.datainterface.g.a(Unknown Source)
         at com.businessobjects.reports.sdk.b.b.byte(Unknown Source)
         at com.businessobjects.reports.sdk.b.b.int(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.dd.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
         at com.crystaldecisions.reports.sdk.PrintOutputController.export(Unknown Source)
         at com.exre.fusion.printing.ReportPrinter.exportPdfReportFromMultipleModelObjects(ReportPrinter.java:97)
         at com.exre.fusion.printing.ReportPrinter.exportPdfReportFromMultipleModelObjects(ReportPrinter.java:86)
         at com.exre.fusion.application.actions.printing.ExportToPdfActionManager$2.reallyProduceOutput(ExportToPdfActionManager.java:81)
         at com.exre.fusion.application.actions.printing.HardCopyAction.run(HardCopyAction.java:13)
         at org.eclipse.jface.action.Action.runWithEvent(Action.java:499)
         at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:539)
         at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488)
         at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3348)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2968)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914)
         at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878)
         at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419)
         at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
         at com.exre.fusion.application.Application.run(Application.java:47)
         at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336)
         at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
         at org.eclipse.core.launcher.Main.run(Main.java:977)
         at org.eclipse.core.launcher.Main.main(Main.java:952)
    Caused by: com.crystaldecisions.reports.queryengine.am: Unexpected database connector error
         at com.crystaldecisions.reports.queryengine.driverImpl.n.eC(Unknown Source)
         at com.crystaldecisions.reports.queryengine.driverImpl.n.if(Unknown Source)
         at com.crystaldecisions.reports.queryengine.ax.new(Unknown Source)
         at com.crystaldecisions.reports.queryengine.ax.byte(Unknown Source)
         ... 46 more

    Okay, so that wasn't the solution. It actually looks like I managed to taff up some of the data in my development database for this one group in my application. I can print the report for other groups, but not this one. Unfortunately I usually use this one group to manually test things, which is why I saw the problem. When I manually tested other groups it worked fine. This also explains why we don't see the problem in the testing or production branches: they all have their won databases. Why I am getting an "Unexpected database connection error" is beyond me, but the problem is clearly in the data and not in the configuration. I restored my development database from a backup that is a few weeks old and everything is perfect.
    I reselected the plugin manifest builder and the reports still work for the other groups in the application.
    Thanks for your help!

  • OS X LION 10.8.2 connection error with AFP

    Ok the issue is that i tried to access my external harddrive over AFP with OS X LION and got a error message like this one above. I couldn’t login with a registered user .
    We had the same problem in a earlier update but somehow got around it follwing the terminal commands from: http://www.alexanderwilde.com/2011/04/os-x-lion-connection-error-with-afp-and-wo rkaround/
    But now after the update its back to be broken again...
    Please help!
    Thanks

    Exactly the same problem here for a satellite user working abroad.
    10.8.2 - cannot connect to the server over AFP. I've run the commands in the link posted, no dice.
    Users running 10.8.2 on the internal LAN have no issues however, just this one off-site user.

Maybe you are looking for