Error creating a secondary database connection

Hi,
I just did a kernel upgrade of our ECC 6.0 EHP4 from 701_REL PL150 to 721_EXT PL201 and now when I try to access the content server database (MaxDB) from the transaction DB13 I have the following error:
"Set up of a secondary connection to the database system failed. It is possible that the data required for setting up the connection via EXEC SQL                (Native SQL) is faulty.
No shared library found for the database with ID SDB_SBX
Documentation for system log message BY G :
As well as the standard connection, an attempt was made to set up
another database connection, under the specified ID. The Shared Lib
for this second database could not be found.
The Shared Library is usually found in the the Executable
directory (profile parameter DIR_LIBRARY) under the name dbs
<dbs>slib<os_ext>. <dbs> stands for the database type and <os_ext>
stands for the operating system-specific extension of the Shared
Libraries.
The database type is determined from the entry that corresponds to
specified DB ID in the table DBDCON. Check whether the data in this
entry is correct."
The ECC 6.0 EHP4 is installed on MS-SQL database.
The content server:
- database MaxDB
- Version 7.8.02.23
- instance type : OLTP
- kernel 7.8.02 build 023-121-242-871
I have read the following notes: 1222907, 1610716, 1716826, 1553465, 1713986, 1028690, 1581595, 1025361, 1097997, 1517379.
Before the ECC kernel upgrade I had no problem to connect to the MaxDB database with the transaction DB13.
ECC instance is OK - I have no problem accessing the MS-SQL database.
Thanks for your help,
Sam

Hi Deepak,
I have downloaded lib_dbsl_219-10011364.sar from:
SAP NetWeaver and complementary products" SAP NetWeaver" SAP EHP2 FOR SAP NETWEAVER 7.0" Entry by Component" Application Server ABAP
SAP KERNEL 7.21 EXT 64-BIT UC - Windows on x64 64bit - MaxDB
I still have the error:
Loading DB library 'F:\usr\sap\xxx\DVEBMGS00\exe\dbsdbslib.dll' ...
*** ERROR => DlLoadLib()==DLENOACCESS - LoadLibrary("F:\usr\sap\XXX\DVEBMGS00\exe\dbsdbslib.dll")
Error 126 = "The specified module could not be found." [dlnt.c       255]
{root-id=005056BD016D1ED3B3903BAAC4F045FC}_{conn-id=00000000000000000000000000000000}_0
*** ERROR => Couldn't load library 'F:\usr\sap\XXX\DVEBMGS00\exe\dbsdbslib.dll'
dbcon.c      5768]
{root-id=005056BD016D1ED3B3903BAAC4F045FC}_{conn-id=00000000000000000000000000000000}_0
***LOG BYG=> could not load library for database connection SDB_XXX    [dbds         862]

Similar Messages

  • DB Connect Error while establishing secondary Database DB2 in mainframe sys

    Hello,
    I am trying to establish a secondary database connection between my ECC system and a mainframe system.
    In my SAP system, the database is Oracle and version is 10.2
    I want to connect to a mainframe system DB2 (AS400).
    I have installed DB2 client in SAP server.
    I have checked the access to Mainframe system from DB2 client.
    I have made the entry in DBCON table via t-code DBCO, which looks like this
    AS4_HOST=<ip_address>;AS4_DB_LIBRARY=<LIB_NAME>;
    But when I run, the std program ABCD_TEST_CONNECTION, I am getting error
    Secondary DB connect FAILED!
    Some doubts:
    1) From an Oracle Database point, is it required to login to sqlplus and create a database link between Oracle Database and the Mainframe Database?
    2) Is it required to have an entry in SM59, which connects the Mainframe system, if so what type of connection & name?
    3) If anyone has faced situation like this, can you share what steps were taken to resolve the error?
    If this is not the forum to post this question, can you suggest the correct forum?
    Regards,
    Vikas

    Hello Prem,
    I have established connectivity with Mainframe via DB-Connect.
    THe steps are
    1) Make entry in DBCON table
    2) Install DB2 client in SAP-Server
    3) There are some jobs which needs to be run in Mainframe system. The job name was mentioned in one of SAP notes.
    If you are facing problems after this, just check SAP version and patch installed.
    Regards,
    Vikas

  • Create a new database connection

    i have created a database (using access) and defined a system DSN through control panel.
    I want to create a persistent unit but i can't defined the data source because when i'm trying to create a new database connection i'm getting the error-
    "Unable to obtain schema There is insufficient information to establish a connection to obtain list of schemas. Check database URL, user and password. Driver message:[Microsoft][ODBC Microsoft Access Driver]Optional feature not implemented"
    what is the problem?
    thanks in advanced.

    what did google return when you searched?

  • Secondary database connections

    I am looking for information on Secondary database connections, especially with Oracle. Is there any other information than note 323151 (I am using the MiniSAP system for testing, therefor I do not have an official SAP customer status).
    I found something about this on help.sap.com, but this is more like an overview. I am looking for some examples on what to configure and how to use it.
    Any help would be appreciated.
    Thanks

    Hi Klaus,
    You need to prepare entries in the TNSNAME.ORA file (on the Oracle database server). The systemguys will know where to find it.
    Oracle File TNSNAMES.ORA (contains also the lines below)
    texd.world = (DESCRIPTION = (ADDRESS = (COMMUNITY = tcp.world)
                 (PROTOCOL = TCP) (Host = <servername>) (Port = 1521))
                 (CONNECT_DATA = (SID = <SID>) (GLOBAL_NAME = texd.world)
                 (SERVER = DEDICATED)))
    Replace <servername> with the actual servername of the oracle database.
    Replace <SID> with the SAP system ID (Like DEV for development or PRD for production).
    In SAP use transactiom SM30 to maintain table DBCON.
    Give the connection a name (this is used in your code). Example = MYCONNECTION.
    Set DBMS to ORA.
    Set the username to a user with sufficient rights
    Supply (2x) the password for this user
    Set the Verb.info to textd.world
    Do NOT check (leave unchecked) the Permanent checkbox.
    Save your work.
    In ABAP code you can connect to and use this connection like this:
    Declaration
    DATA: WA TYPE T000.
    Init connection
    EXEC sql.
    connect to 'MYCONNECTION' as 'MYDB'
    ENDEXEC.
    Open connection
    EXEC sql.
    SET CONNECTION 'MYDB'
    ENDEXEC.
    Do your trick
    EXEC sql PERFORMING your_form.
    SELECT * INTO :WA FROM T000.
    ENDEXEC.
    Stop connection
    EXEC sql.
    disconnect 'MYDB'
    ENDEXEC.
    FORM your_form.
      WRITE: / wa-mandt, wa-mtext.
    ENDFORM.
    Further information on using this (beside note 323151) can be found on notes 339092, 323151 and 178949.
    See also http://www.akadia.com/services/ora_dblinks.html
    Hope this helps you on your way.
    Regards,
    Rob.

  • Error in new/select database connection

    i am new at sql developer. i am getting the following error in new/select database connection
    I have filled the following details
    Connection Name : hr_orcl
    Username : hr
    Password : hr
    Connection Typer: Basic, Role: Default
    Hostname: localhost
    Port : 1521
    SID : orcl
    I click on TEST & get the following error message displayed
    " Status : Failure -Test failed: Listener refused connection with the following error:ORA-12505, TNS:listener does not currently know of SID given in connec desciptor"

    Hi,
    You don't say if you actually have a local database installed. If not, you need too. If you already do, then the most common case is Oracle 10g or 11g Express Edition. In that case the default SID is XE, as noted in the following similar thread:
    Re: Connecting to Oracle Database 10g Express Edition
    If you need to install a database, you can get 10g or 11g XE here:
    http://www.oracle.com/technetwork/database/express-edition/downloads/index.html
    The 10g XE release has a smaller memory and disk footprint if that makes a difference to you.
    Regards,
    Gary
    SQL Developer Team

  • Error while configuring the database connection in sharepoint configuration wizard.Sharepoint 2007.

    System
    Provider
    [ Name]
    SharePoint
    Products and Technologies Configuration
    Wizard
    EventID
    104
    [ Qualifiers]
    0
    Level
    2
    Task
    0
    Keywords
    0x80000000000000
    TimeCreated
    [ SystemTime]
    2014-11-06T02:03:00.000Z
    EventRecordID
    11054
    Channel
    Application
    Computer
    HZNTPMSWSMOS001.NEO-DIAGEO.com
    Security
    EventData
    Failed
    to create the configuration database. An exception of type
    System.SystemException was thrown. Additional exception information: The trust
    relationship between this workstation and the primary domain failed.
    System.SystemException: The trust relationship between this workstation and the
    primary domain failed. at
    System.Security.Principal.NTAccount.TranslateToSids(IdentityReferenceCollection
    sourceAccounts, Boolean& someFailed) at
    System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection
    sourceAccounts, Type targetType, Boolean forceSuccess) at
    System.Security.Principal.NTAccount.Translate(Type targetType) at
    Microsoft.SharePoint.Administration.SPProcessIdentity.GetMachineRelativeSecurityIdentifier(SPServer
    server, Boolean& isMachineAccount) at
    Microsoft.SharePoint.Administration.SPProcessIdentity.GrantIdentityAccessToDatabase(SPProcessIdentity
    identity, SPDatabase database) at
    Microsoft.SharePoint.Administration.SPProcessIdentity.GrantIdentityDatabaseAccess()
    at Microsoft.SharePoint.Administration.SPProcessIdentity.Update() at
    Microsoft.SharePoint.Administration.SPWindowsService.Update() at
    Microsoft.SharePoint.Administration.SPFarm.CreateBasicServices(SqlConnectionStringBuilder
    administrationContentDatabase, IdentityType identityType, String farmUser,
    SecureString farmPassword) at
    Microsoft.SharePoint.Administration.SPFarm.Create(SqlConnectionStringBuilder
    configurationDatabase, SqlConnectionStringBuilder administrationContentDatabase,
    IdentityType identityType, String farmUser, SecureString farmPassword) at
    Microsoft.SharePoint.Administration.SPFarm.Create(SqlConnectionStringBuilder
    configurationDatabase, SqlConnectionStringBuilder administrationContentDatabase,
    String farmUser, SecureString farmPassword) at
    Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.CreateOrConnectConfigDb()
    at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.Run()
    at
    Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()

    Hi,
    This issue seems to be a machine Issue. From message is seems that your Computer is not properly connected to Domain.  use the steps in the below link and try doing your steps again.
    https://support.microsoft.com/kb/162797?wa=wsignin1.0
    Regards

  • Error in Oracle Lite Database connection

    Hi,
    I have installed the Oracle Application server 10.1.3.1.0 on my laptop (basic installation).
    I tried to define a database connection in the JDeveloper connection navigator to the Oracle lite database. When I test the connection I got an error:
    "Internal Error:Invalid Connect String".
    I have defined in the connection tab of the Edit database connection in the following way:
    Driver class: oracle.lite.poljdbc.POLJDBCDriver
    Library: OLite
    Classpath: C:\product\10.1.3.1\OracleAS_1\bpel\lib\olite40.jar
    URL: jdbc:polite4@localhost:100:orabpel
    Could anyone tell me which user and password I should define for the oracle lite database which is delivered with Oracle Application server 10.1.3.1.0?

    Hi,
    Did you start the SOA suite on your workstation?
    If so, can you reach the BPEL Console
    if so, check via Enterprise Manager the connect string in the OC4J instance of BPEL (oc4j_soa -> administartion -> JDBC > conenctions, or data-sources.xml)
    Copy the connect string into your OLite config if it works

  • Error in OFR : "No database connection string set for connection group"

    Hi all..
    In OFR, Batches Fail To Export When Line Pairing is Enabled and Batch Remains in State 750 With Error "No database connection string set for connection group".
    I have followed all steps associated to line pairing with database still my batch is not exported..
    Any help is appreciated..
    Thanks in advance

    Hi,
    in case you haven't done this already: for this problem we'd really need you to open a CSS message.
    From your problem description it sounds likely that LCA routines and liveCache user don't fit together. Please check the solution of note 811207 to see if that assumption is correct.
    Furthermore: liveCache 7.5 and SCM 4.0 are not released together (yet). When using SCM 4.0 only liveCache versions 7.4.03 Build XX are released. This it seems you're current combination is not supported!
    Please take a look at PAM (Produkt Availability Matrix) on the SAP Service Marketplace to see which combinations have been released.
    Kind regards,
    Roland
    Message was edited by: Roland Mallmann

  • Gridbag layout error at "new/select database connection" frame

    Hi,
    I'm running SQLDev at Win XP sp 2.
    When I expands the "new/select database connection" frame it behaves really strange and the top left pane becomes smaller instead of bigger! :-) This makes it impossible to see and reach all connection settings.
    Just a GUI-bugg - but annoying and probably one of first experiencies new users will have of SQLDev...
    best regards and keep up the good work
    /Robert, Karlstad

    Hi,
    You don't say if you actually have a local database installed. If not, you need too. If you already do, then the most common case is Oracle 10g or 11g Express Edition. In that case the default SID is XE, as noted in the following similar thread:
    Re: Connecting to Oracle Database 10g Express Edition
    If you need to install a database, you can get 10g or 11g XE here:
    http://www.oracle.com/technetwork/database/express-edition/downloads/index.html
    The 10g XE release has a smaller memory and disk footprint if that makes a difference to you.
    Regards,
    Gary
    SQL Developer Team

  • EXCEPTION_ACCESS_VIOLATION error with MS ACCESS database connection

    Hello,
    I got the EXCEPTION_ACCESS_VIOLATION error in the hs_err_pidXXXX.log file.
    I am using MS ACCESS and jdbc-odbc bridge to access to it.
    The problem is the tomcat server crashes every a couple of hours.
    The error log is attached.
    I searched this error on line and tried a couple of things that they suggested. But no helps.
    I tried increasing the heap size, and change the Java option to -Xint.
    But all no help.
    Would you take a look at the log file and suggest anythings?
    Thank you!!!
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7c82f350, pid=4100, tid=1204
    # Java VM: Java HotSpot(TM) Client VM (1.5.0-b64 interpreted mode)
    # Problematic frame:
    # C [ntdll.dll+0x2f350]
    --------------- T H R E A D ---------------
    Current thread (0x490eeb08): JavaThread "TP-Processor2" daemon [_thread_in_native, id=1204]
    siginfo: ExceptionCode=0xc0000005, writing address 0x00000008
    Registers:
    EAX=0x00000000, EBX=0x00000000, ECX=0x00000008, EDX=0x00000004
    ESP=0x4d4ae9e0, EBP=0x4d4ae9ec, ESI=0x00000008, EDI=0x00000000
    EIP=0x7c82f350, EFLAGS=0x00010297
    Top of Stack: (sp=0x4d4ae9e0)
    0x4d4ae9e0: 00000000 00000000 00000008 4d4aea08
    0x4d4ae9f0: 4bfa4c16 00000004 497f150c 4bf727af
    0x4d4aea00: 497f150c 497f14e8 4d4aea40 4bf78af9
    0x4d4aea10: 497f150c 4bfa0000 490eebc4 43c06010
    0x4d4aea20: 00000001 00000000 4d4aea14 4d4ae60c
    0x4d4aea30: 4d4afce8 4bfa5705 4bf78ac8 ffffffff
    0x4d4aea40: 4d4aea58 4bf78a9d 497f14e8 4d4aea78
    0x4d4aea50: 49151ad8 490eebc4 4d4aea70 6d371157
    Instructions: (pc=0x7c82f350)
    0x7c82f340: 56 8d 72 04 57 89 75 fc b8 00 00 00 00 8b 4d fc
    0x7c82f350: f0 0f b3 01 0f 92 c0 84 c0 0f 84 95 0f 00 00 64
    Stack: [0x4d3b0000,0x4d4b0000), sp=0x4d4ae9e0, free space=1018k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [ntdll.dll+0x2f350]
    C [ODBC32.dll+0x34c16]
    C [ODBC32.dll+0x8af9]
    C [ODBC32.dll+0x8a9d]
    C [JdbcOdbc.dll+0x1157]
    j sun.jdbc.odbc.JdbcOdbc.allocConnect(J[B)J+0
    j sun.jdbc.odbc.JdbcOdbc.SQLAllocConnect(J)J+30
    j sun.jdbc.odbc.JdbcOdbcDriver.allocConnection(J)J+6
    j sun.jdbc.odbc.JdbcOdbcConnection.initialize(Ljava/lang/String;Ljava/util/Properties;I)V+37
    j sun.jdbc.odbc.JdbcOdbcDriver.connect(Ljava/lang/String;Ljava/util/Properties;)Ljava/sql/Connection;+129
    j java.sql.DriverManager.getConnection(Ljava/lang/String;Ljava/util/Properties;Ljava/lang/ClassLoader;)Ljava/sql/Connection;+165
    j java.sql.DriverManager.getConnection(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/Connection;+41
    j gov.chi.oemc.pagegate.dao.jdbc.JdbcConnection.getConnection(Z)Ljava/sql/Connection;+18
    j gov.chi.oemc.pagegate.dao.jdbc.MessageDaoJdbc.getMsgHistories(Ljava/lang/String;Ljava/lang/String;ZI)Ljava/util/List;+13
    j gov.chi.oemc.pagegate.service.dwr.impl.MessageDwrManagerImpl.getMsgHistories(Ljava/lang/String;Ljava/lang/String;ZI)Ljava/util/List;+9
    j sun.reflect.GeneratedMethodAccessor79.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161
    j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
    j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+111
    j org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;+31
    j org.springframework.aop.framework.JdkDynamicAopProxy.invoke(Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;+318
    j $Proxy15.getMsgHistories(Ljava/lang/String;Ljava/lang/String;ZI)Ljava/util/List;+35
    j sun.reflect.GeneratedMethodAccessor80.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161
    j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
    j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+111
    j uk.ltd.getahead.dwr.impl.ExecuteQuery.execute(Ljavax/servlet/http/HttpServletRequest;)Luk/ltd/getahead/dwr/Calls;+955
    j uk.ltd.getahead.dwr.impl.DefaultExecProcessor.handle(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V+26
    j uk.ltd.getahead.dwr.impl.DefaultProcessor.handle(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V+225
    j uk.ltd.getahead.dwr.AbstractDWRServlet.doPost(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V+33
    j javax.servlet.http.HttpServlet.service(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V+139
    j javax.servlet.http.HttpServlet.service(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+30
    j org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+362
    j org.apache.catalina.core.ApplicationFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+101
    j com.opensymphony.module.sitemesh.filter.PageFilter.parsePage(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;Ljavax/servlet/FilterChain;)Lcom/opensymphony/module/sitemesh/Page;+18
    j com.opensymphony.module.sitemesh.filter.PageFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+84
    j org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+105
    j org.apache.catalina.core.ApplicationFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+101
    j org.tuckey.web.filters.urlrewrite.UrlRewriteFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+324
    j org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+105
    j org.apache.catalina.core.ApplicationFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+101
    j org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+65
    j org.acegisecurity.intercept.web.FilterSecurityInterceptor.invoke(Lorg/acegisecurity/intercept/web/FilterInvocation;)V+87
    j org.acegisecurity.intercept.web.FilterSecurityInterceptor.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+15
    j org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+185
    j org.acegisecurity.ui.ExceptionTranslationFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+37
    j org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+185
    j org.acegisecurity.providers.anonymous.AnonymousProcessingFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+144
    j org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+185
    j org.acegisecurity.wrapper.SecurityContextHolderAwareRequestFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+143
    j org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+185
    j org.acegisecurity.ui.AbstractProcessingFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+141
    j org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+185
    j org.acegisecurity.ui.logout.LogoutFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+169
    j org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+185
    j org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+281
    j org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+185
    j org.acegisecurity.util.FilterChainProxy.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+172
    j org.acegisecurity.util.FilterToBeanProxy.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+18
    j org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+105
    j org.apache.catalina.core.ApplicationFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+101
    j org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;Ljavax/servlet/FilterChain;)V+29
    j org.springframework.web.filter.OncePerRequestFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+90
    j org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+105
    j org.apache.catalina.core.ApplicationFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+101
    j org.apache.catalina.core.StandardWrapperValve.invoke(Lorg/apache/catalina/connector/Request;Lorg/apache/catalina/connector/Response;)V+699
    j org.apache.catalina.core.StandardContextValve.invoke(Lorg/apache/catalina/connector/Request;Lorg/apache/catalina/connector/Response;)V+285
    j org.apache.catalina.core.StandardHostValve.invoke(Lorg/apache/catalina/connector/Request;Lorg/apache/catalina/connector/Response;)V+64
    j org.apache.catalina.valves.ErrorReportValve.invoke(Lorg/apache/catalina/connector/Request;Lorg/apache/catalina/connector/Response;)V+6
    j org.apache.catalina.core.StandardEngineValve.invoke(Lorg/apache/catalina/connector/Request;Lorg/apache/catalina/connector/Response;)V+42
    j org.apache.catalina.connector.CoyoteAdapter.service(Lorg/apache/coyote/Request;Lorg/apache/coyote/Response;)V+154
    j org.apache.jk.server.JkCoyoteHandler.invoke(Lorg/apache/jk/core/Msg;Lorg/apache/jk/core/MsgContext;)I+123
    j org.apache.jk.common.HandlerRequest.invoke(Lorg/apache/jk/core/Msg;Lorg/apache/jk/core/MsgContext;)I+327
    j org.apache.jk.common.ChannelSocket.invoke(Lorg/apache/jk/core/Msg;Lorg/apache/jk/core/MsgContext;)I+191
    j org.apache.jk.common.ChannelSocket.processConnection(Lorg/apache/jk/core/MsgContext;)V+105
    j org.apache.jk.common.ChannelSocket$SocketConnection.runIt([Ljava/lang/Object;)V+8
    j org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run()V+167
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    V [jvm.dll+0x8168d]
    V [jvm.dll+0xd4179]
    V [jvm.dll+0x8155e]
    V [jvm.dll+0x812bb]
    V [jvm.dll+0x9bbe9]
    V [jvm.dll+0xfe77f]
    V [jvm.dll+0xfe74d]
    C [MSVCRT.dll+0x2b530]
    C [kernel32.dll+0x2608b]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.jdbc.odbc.JdbcOdbc.allocConnect(J[B)J+0
    j sun.jdbc.odbc.JdbcOdbc.SQLAllocConnect(J)J+30
    j sun.jdbc.odbc.JdbcOdbcDriver.allocConnection(J)J+6
    j sun.jdbc.odbc.JdbcOdbcConnection.initialize(Ljava/lang/String;Ljava/util/Properties;I)V+37
    j sun.jdbc.odbc.JdbcOdbcDriver.connect(Ljava/lang/String;Ljava/util/Properties;)Ljava/sql/Connection;+129
    j java.sql.DriverManager.getConnection(Ljava/lang/String;Ljava/util/Properties;Ljava/lang/ClassLoader;)Ljava/sql/Connection;+165
    j java.sql.DriverManager.getConnection(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/Connection;+41
    j gov.chi.oemc.pagegate.dao.jdbc.JdbcConnection.getConnection(Z)Ljava/sql/Connection;+18
    j gov.chi.oemc.pagegate.dao.jdbc.MessageDaoJdbc.getMsgHistories(Ljava/lang/String;Ljava/lang/String;ZI)Ljava/util/List;+13
    j gov.chi.oemc.pagegate.service.dwr.impl.MessageDwrManagerImpl.getMsgHistories(Ljava/lang/String;Ljava/lang/String;ZI)Ljava/util/List;+9
    j sun.reflect.GeneratedMethodAccessor79.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161
    j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
    j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+111
    j org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;+31
    j org.springframework.aop.framework.JdkDynamicAopProxy.invoke(Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;+318
    j $Proxy15.getMsgHistories(Ljava/lang/String;Ljava/lang/String;ZI)Ljava/util/List;+35
    j sun.reflect.GeneratedMethodAccessor80.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161
    j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
    j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+111
    j uk.ltd.getahead.dwr.impl.ExecuteQuery.execute(Ljavax/servlet/http/HttpServletRequest;)Luk/ltd/getahead/dwr/Calls;+955
    j uk.ltd.getahead.dwr.impl.DefaultExecProcessor.handle(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V+26
    j uk.ltd.getahead.dwr.impl.DefaultProcessor.handle(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V+225
    j uk.ltd.getahead.dwr.AbstractDWRServlet.doPost(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V+33
    j javax.servlet.http.HttpServlet.service(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V+139
    j javax.servlet.http.HttpServlet.service(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+30
    j org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+362
    j org.apache.catalina.core.ApplicationFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+101
    j com.opensymphony.module.sitemesh.filter.PageFilter.parsePage(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;Ljavax/servlet/FilterChain;)Lcom/opensymphony/module/sitemesh/Page;+18
    j com.opensymphony.module.sitemesh.filter.PageFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+84
    j org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+105
    j org.apache.catalina.core.ApplicationFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+101
    j org.tuckey.web.filters.urlrewrite.UrlRewriteFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+324
    j org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+105
    j org.apache.catalina.core.ApplicationFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+101
    j org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+65
    j org.acegisecurity.intercept.web.FilterSecurityInterceptor.invoke(Lorg/acegisecurity/intercept/web/FilterInvocation;)V+87
    j org.acegisecurity.intercept.web.FilterSecurityInterceptor.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+15
    j org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+185
    j org.acegisecurity.ui.ExceptionTranslationFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+37
    j org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+185
    j org.acegisecurity.providers.anonymous.AnonymousProcessingFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+144
    j org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+185
    j org.acegisecurity.wrapper.SecurityContextHolderAwareRequestFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+143
    j org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+185
    j org.acegisecurity.ui.AbstractProcessingFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+141
    j org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+185
    j org.acegisecurity.ui.logout.LogoutFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+169
    j org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+185
    j org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+281
    j org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+185
    j org.acegisecurity.util.FilterChainProxy.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+172
    j org.acegisecurity.util.FilterToBeanProxy.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+18
    j org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+105
    j org.apache.catalina.core.ApplicationFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+101
    j org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;Ljavax/servlet/FilterChain;)V+29
    j org.springframework.web.filter.OncePerRequestFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+90
    j org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+105
    j org.apache.catalina.core.ApplicationFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+101
    j org.apache.catalina.core.StandardWrapperValve.invoke(Lorg/apache/catalina/connector/Request;Lorg/apache/catalina/connector/Response;)V+699
    j org.apache.catalina.core.StandardContextValve.invoke(Lorg/apache/catalina/connector/Request;Lorg/apache/catalina/connector/Response;)V+285
    j org.apache.catalina.core.StandardHostValve.invoke(Lorg/apache/catalina/connector/Request;Lorg/apache/catalina/connector/Response;)V+64
    j org.apache.catalina.valves.ErrorReportValve.invoke(Lorg/apache/catalina/connector/Request;Lorg/apache/catalina/connector/Response;)V+6
    j org.apache.catalina.core.StandardEngineValve.invoke(Lorg/apache/catalina/connector/Request;Lorg/apache/catalina/connector/Response;)V+42
    j org.apache.catalina.connector.CoyoteAdapter.service(Lorg/apache/coyote/Request;Lorg/apache/coyote/Response;)V+154
    j org.apache.jk.server.JkCoyoteHandler.invoke(Lorg/apache/jk/core/Msg;Lorg/apache/jk/core/MsgContext;)I+123
    j org.apache.jk.common.HandlerRequest.invoke(Lorg/apache/jk/core/Msg;Lorg/apache/jk/core/MsgContext;)I+327
    j org.apache.jk.common.ChannelSocket.invoke(Lorg/apache/jk/core/Msg;Lorg/apache/jk/core/MsgContext;)I+191
    j org.apache.jk.common.ChannelSocket.processConnection(Lorg/apache/jk/core/MsgContext;)V+105
    j org.apache.jk.common.ChannelSocket$SocketConnection.runIt([Ljava/lang/Object;)V+8
    j org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run()V+167
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x4921e3d8 JavaThread "TP-Monitor" daemon [_thread_blocked, id=1264]
    0x48f8c7d8 JavaThread "TP-Processor4" daemon [_thread_in_native, id=5264]
    0x490e8168 JavaThread "TP-Processor3" daemon [_thread_in_Java, id=4632]
    =>0x490eeb08 JavaThread "TP-Processor2" daemon [_thread_in_native, id=1204]
    0x490cf398 JavaThread "TP-Processor1" daemon [_thread_in_native, id=3144]
    0x4935f3d0 JavaThread "http-8090-Monitor" [_thread_blocked, id=1128]
    0x490f2448 JavaThread "http-8090-Processor50" daemon [_thread_in_native, id=6052]
    0x49468c00 JavaThread "http-8090-Processor49" daemon [_thread_blocked, id=456]
    0x494680a8 JavaThread "http-8090-Processor48" daemon [_thread_blocked, id=3548]
    0x4921f440 JavaThread "http-8090-Processor47" daemon [_thread_blocked, id=4308]
    0x4944e8a8 JavaThread "http-8090-Processor46" daemon [_thread_blocked, id=4080]
    0x4902a1e8 JavaThread "http-8090-Processor45" daemon [_thread_blocked, id=3716]
    0x490295f0 JavaThread "http-8090-Processor44" daemon [_thread_blocked, id=5496]
    0x49121540 JavaThread "http-8090-Processor43" daemon [_thread_blocked, id=5284]
    0x492078a0 JavaThread "http-8090-Processor42" daemon [_thread_blocked, id=4232]
    0x490a2d48 JavaThread "http-8090-Processor41" daemon [_thread_blocked, id=2016]
    0x490a2290 JavaThread "http-8090-Processor40" daemon [_thread_blocked, id=4056]
    0x0080c0f0 JavaThread "http-8090-Processor39" daemon [_thread_blocked, id=4476]
    0x49337af0 JavaThread "http-8090-Processor38" daemon [_thread_blocked, id=3132]
    0x491f5be8 JavaThread "http-8090-Processor37" daemon [_thread_blocked, id=2976]
    0x491f5130 JavaThread "http-8090-Processor36" daemon [_thread_blocked, id=4772]
    0x49107408 JavaThread "http-8090-Processor35" daemon [_thread_blocked, id=4784]
    0x4920b9f8 JavaThread "http-8090-Processor34" daemon [_thread_blocked, id=5844]
    0x493163d0 JavaThread "http-8090-Processor33" daemon [_thread_blocked, id=5968]
    0x49315918 JavaThread "http-8090-Processor32" daemon [_thread_blocked, id=5048]
    0x492d11e0 JavaThread "http-8090-Processor31" daemon [_thread_blocked, id=4260]
    0x492c7628 JavaThread "http-8090-Processor30" daemon [_thread_blocked, id=4780]
    0x4936cd48 JavaThread "http-8090-Processor29" daemon [_thread_blocked, id=6136]
    0x4940b590 JavaThread "http-8090-Processor28" daemon [_thread_blocked, id=4612]
    0x00782630 JavaThread "http-8090-Processor27" daemon [_thread_blocked, id=4316]
    0x4927ab60 JavaThread "http-8090-Processor26" daemon [_thread_blocked, id=3964]
    0x4927a808 JavaThread "http-8090-Processor25" daemon [_thread_blocked, id=532]
    0x49354ab8 JavaThread "http-8090-Processor24" daemon [_thread_blocked, id=5040]
    0x4924bbd8 JavaThread "http-8090-Processor23" daemon [_thread_blocked, id=5640]
    0x490fb430 JavaThread "http-8090-Processor22" daemon [_thread_blocked, id=6096]
    0x4943fd90 JavaThread "http-8090-Processor21" daemon [_thread_blocked, id=4280]
    0x4916b8a0 JavaThread "http-8090-Processor20" daemon [_thread_blocked, id=3624]
    0x4914a8a8 JavaThread "http-8090-Processor19" daemon [_thread_blocked, id=1540]
    0x4939cc68 JavaThread "http-8090-Processor18" daemon [_thread_blocked, id=1324]
    0x4923f408 JavaThread "http-8090-Processor17" daemon [_thread_blocked, id=5900]
    0x49071188 JavaThread "http-8090-Processor16" daemon [_thread_blocked, id=5544]
    0x49071008 JavaThread "http-8090-Processor15" daemon [_thread_blocked, id=220]
    0x49460408 JavaThread "http-8090-Processor14" daemon [_thread_blocked, id=5796]
    0x492fbe80 JavaThread "http-8090-Processor13" daemon [_thread_blocked, id=3140]
    0x492fbd00 JavaThread "http-8090-Processor12" daemon [_thread_blocked, id=5876]
    0x49190e50 JavaThread "http-8090-Processor11" daemon [_thread_blocked, id=3128]
    0x49190cd0 JavaThread "http-8090-Processor10" daemon [_thread_blocked, id=5576]
    0x49108b28 JavaThread "http-8090-Processor9" daemon [_thread_blocked, id=5644]
    0x492d5d38 JavaThread "http-8090-Processor8" daemon [_thread_blocked, id=5296]
    0x4914e5c0 JavaThread "http-8090-Processor7" daemon [_thread_blocked, id=4556]
    0x49210708 JavaThread "http-8090-Processor6" daemon [_thread_blocked, id=4332]
    0x49106488 JavaThread "http-8090-Processor5" daemon [_thread_blocked, id=5164]
    0x4930e408 JavaThread "http-8090-Processor4" daemon [_thread_blocked, id=4736]
    0x49208008 JavaThread "http-8090-Processor3" daemon [_thread_blocked, id=4456]
    0x492263b8 JavaThread "http-8090-Processor2" daemon [_thread_blocked, id=4936]
    0x4905d008 JavaThread "http-8090-Processor1" daemon [_thread_blocked, id=4708]
    0x49130400 JavaThread "ContainerBackgroundProcessor[StandardEngine[Catalina]]" daemon [_thread_blocked, id=5468]
    0x007a6b10 JavaThread "Store userCache Expiry Thread" daemon [_thread_blocked, id=352]
    0x49016a08 JavaThread "Store userCache Spool Thread" daemon [_thread_blocked, id=5736]
    0x007f5530 JavaThread "Thread-1" [_thread_in_native, id=4996]
    0x007d09e8 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=5612]
    0x007cf640 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3112]
    0x007ce930 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1156]
    0x007c5d90 JavaThread "Finalizer" daemon [_thread_blocked, id=5456]
    0x003cfa18 JavaThread "Reference Handler" daemon [_thread_blocked, id=4444]
    0x003c5da0 JavaThread "main" [_thread_in_native, id=4520]
    Other Threads:
    0x007799f8 VMThread [id=5660]
    0x007d1cf8 WatcherThread [id=1764]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 18240K, used 3084K [0x02810000, 0x03bd0000, 0x076d0000)
    eden space 16256K, 16% used [0x02810000, 0x02aaa4b0, 0x037f0000)
    from space 1984K, 21% used [0x039e0000, 0x03a48eb0, 0x03bd0000)
    to space 1984K, 0% used [0x037f0000, 0x037f0000, 0x039e0000)
    tenured generation total 241984K, used 14251K [0x076d0000, 0x16320000, 0x42810000)
    the space 241984K, 5% used [0x076d0000, 0x084bac88, 0x084bae00, 0x16320000)
    compacting perm gen total 24064K, used 24061K [0x42810000, 0x43f90000, 0x46810000)
    the space 24064K, 99% used [0x42810000, 0x43f8f6f8, 0x43f8f800, 0x43f90000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040f000      C:\tomcats\Tomcat5.5\bin\tomcat5.exe
    0x7c800000 - 0x7c8c0000      C:\WINDOWS\system32\ntdll.dll
    0x77e40000 - 0x77f42000      C:\WINDOWS\system32\kernel32.dll
    0x77380000 - 0x77412000      C:\WINDOWS\system32\USER32.dll
    0x77c00000 - 0x77c49000      C:\WINDOWS\system32\GDI32.dll
    0x77f50000 - 0x77fec000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77c50000 - 0x77cef000      C:\WINDOWS\system32\RPCRT4.dll
    0x77ba0000 - 0x77bfa000      C:\WINDOWS\system32\MSVCRT.dll
    0x7c8d0000 - 0x7d0d4000      C:\WINDOWS\system32\SHELL32.dll
    0x77da0000 - 0x77df2000      C:\WINDOWS\system32\SHLWAPI.dll
    0x77420000 - 0x77523000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.2778_x-ww_A8F04F11\comctl32.dll
    0x6d640000 - 0x6d7c5000      C:\Program Files\Java\jre1.5.0\bin\client\jvm.dll
    0x76aa0000 - 0x76acd000      C:\WINDOWS\system32\WINMM.dll
    0x6d280000 - 0x6d288000      C:\Program Files\Java\jre1.5.0\bin\hpi.dll
    0x76b70000 - 0x76b7b000      C:\WINDOWS\system32\PSAPI.DLL
    0x76f50000 - 0x76f63000      C:\WINDOWS\system32\Secur32.dll
    0x6d610000 - 0x6d61c000      C:\Program Files\Java\jre1.5.0\bin\verify.dll
    0x6d300000 - 0x6d31d000      C:\Program Files\Java\jre1.5.0\bin\java.dll
    0x6d630000 - 0x6d63f000      C:\Program Files\Java\jre1.5.0\bin\zip.dll
    0x6d4c0000 - 0x6d4d3000      C:\Program Files\Java\jre1.5.0\bin\net.dll
    0x71c00000 - 0x71c17000      C:\WINDOWS\system32\WS2_32.dll
    0x71bf0000 - 0x71bf8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71b20000 - 0x71b61000      C:\WINDOWS\system32\mswsock.dll
    0x5f270000 - 0x5f2c9000      C:\WINDOWS\system32\hnetcfg.dll
    0x71ae0000 - 0x71ae8000      C:\WINDOWS\System32\wshtcpip.dll
    0x76ed0000 - 0x76eff000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f70000 - 0x76f77000      C:\WINDOWS\System32\winrnr.dll
    0x76f10000 - 0x76f3e000      C:\WINDOWS\system32\WLDAP32.dll
    0x76f80000 - 0x76f88000      C:\WINDOWS\system32\rasadhlp.dll
    0x68000000 - 0x6802f000      C:\WINDOWS\system32\rsaenh.dll
    0x6d370000 - 0x6d37d000      C:\Program Files\Java\jre1.5.0\bin\JdbcOdbc.dll
    0x4bf70000 - 0x4bfad000      C:\WINDOWS\system32\ODBC32.dll
    0x77530000 - 0x775c7000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_5.82.3790.2778_x-ww_497C098C\COMCTL32.dll
    0x762b0000 - 0x762fa000      C:\WINDOWS\system32\comdlg32.dll
    0x49930000 - 0x49947000      C:\WINDOWS\system32\odbcint.dll
    0x77670000 - 0x777a4000      C:\WINDOWS\system32\ole32.dll
    0x77d00000 - 0x77d8c000      C:\WINDOWS\system32\OLEAUT32.dll
    0x777b0000 - 0x77833000      C:\WINDOWS\system32\CLBCatQ.DLL
    0x77010000 - 0x770d6000      C:\WINDOWS\system32\COMRes.dll
    0x77b90000 - 0x77b98000      C:\WINDOWS\system32\VERSION.dll
    0x4ae30000 - 0x4ae3b000      C:\WINDOWS\system32\VBAJET32.DLL
    VM Arguments:
    jvm_args: -Xint -Dcatalina.home=C:\tomcats\Tomcat5.5 -Dcatalina.base=C:\tomcats\Tomcat5.5 -Djava.endorsed.dirs=C:\tomcats\Tomcat5.5\common\endorsed -Djava.io.tmpdir=C:\tomcats\Tomcat5.5\temp -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.util.logging.config.file=C:\tomcats\Tomcat5.5\conf\logging.properties -Djava.compiler=NONE vfprintf -Xms256m -Xmx1024m -Xss1024k
    java_command: <unknown>
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jdk1.5.0
    PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 4 Stepping 1, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows Server 2003 family Build 3790 Service Pack 1
    CPU:total 2 fami

    There are some other solutions possible.
    1. Get another driver. The only one known is java only so it wont crash. But is not not free.
    2. Use a proxy driver. That means that another app actually does the database work. If it crashes you just start it again (which you can do in your main code.) That way it won't take down your server. There are commercial jdbc drivers that claim MS Access but are are really just proxy implementations as an option in this area.

  • Error in SQL Developer: Database Connections has no JNDI context so cannot

    Hello,
    I have installed SQL Developer 3.1.07 version on Linux. Previously I was able to create a connection and browse the existing tables, add tables, etc.
    Now when I launch SQL Developer, I see that no connections are displayed. Instead there are these three messages indicating an error. Can you please advice on how to resolve this?
    Thanks,
    Errors:
    SEVERE     44     0     oracle.jdeveloper.db.DatabaseConnections     DatabaseConnections has no JNDI context so cannot list connections.
    SEVERE     43     36     oracle.jdevimpl.db.adapter.DefaultContextWrapper     Failed to create naming Context for db connections at url: file:/home/user/.sqldeveloper/system3.1.07.42/o.jdeveloper.db.connection.11.1.1.4.37.59.48/connections.xml
    SEVERE     42     0     oracle.jdevimpl.db.adapter.DefaultContextWrapper     Failed to create naming Context for db connections at url: file:/home/user/.sqldeveloper/system3.1.07.42/o.jdeveloper.db.connection.11.1.1.4.37.59.48/connections.xml

    Hi uparthas,
    Here is a similar thread (Windows 7) marked as answered, and may be applicable to a Linux environment if you are using jdk1.7 rather than jdk1.6:
    Lost my connections.
    If that does not solve the issue, you might also wish to ...
    1. Exit SQL Developer
    2. Delete or rename the /home/user/.sqldeveloper/system3.1.07.42 directory
    3. Launch SQL Developer, perhaps without choosing to migrate settings from a prior install.
    Hope this helps,
    Gary
    SQL Developer Team

  • Error creating SQL Command - Database Expert

    I am creating a command however when I go to save the SQL I get two errors.
    "Failed to retrieve data from database" and "Failed to execute SQL Statement"
    I am working on an Oracle database. 
    Why would these errors be occuring?

    SELECT
    "CI_ACCT_PER"."ACCT_ID", "CI_ACCT_PER"."ACCT_REL_TYPE_CD", "CI_ACCT_PER"."PER_ID", "CI_ACCT_PER"."MAIN_CUST_SW", "CI_ACCT_PER"."FIN_RESP_SW", "CI_ACCT"."ACCT_ID",
    "CI_PER"."PER_OR_BUS_FLG", "CI_PER"."CITY", "CI_PER"."POSTAL", "CI_PER"."GEO_CODE", "CI_PER"."STATE", "CI_PER"."COUNTRY", "CI_PER_NAME"."PER_ID", "CI_PER_NAME"."ENTITY_NAME", "CI_PER_NAME"."NAME_TYPE_FLG", "CI_PER_NAME"."PRIM_NAME_SW",
    "CI_SA"."SA_ID", "CI_SA"."SA_TYPE_CD", "CI_SA"."SA_STATUS_FLG", "CI_SA_REL"."SA_REL_ID", "CI_SA_REL"."SA_ID", "CI_SA_REL"."SA_REL_STATUS_FLG", "CI_SA_REL"."SA_REL_USAGE_FLG", "CI_SA_REL"."SPR_CD", "CI_SA_REL"."SA_REL_TYPE_CD", "CI_SA"."CHAR_PREM_ID",
    "CI_SPR"."SA_ID", "CI_SPR"."PER_ID",
    "CI_PREM"."ADDRESS1", "CI_PREM"."PREM_ID",
    "CI_SA_RS_HIST"."EFFDT", "CI_SA_RS_HIST"."RS_CD"
    FROM ((((((("CISADM"."CI_SA" "CI_SA" LEFT OUTER JOIN "CISADM"."CI_ACCT" "CI_ACCT" ON "CI_SA"."ACCT_ID"="CI_ACCT"."ACCT_ID")
    LEFT OUTER JOIN "CISADM"."CI_SA_REL" "CI_SA_REL" ON "CI_SA"."SA_ID"="CI_SA_REL"."SA_ID")
    LEFT OUTER JOIN "CISADM"."CI_PREM" "CI_PREM" ON "CI_SA"."CHAR_PREM_ID"="CI_PREM"."PREM_ID")
    LEFT OUTER JOIN "CISADM"."CI_SA_RS_HIST" "CI_SA_RS_HIST" ON "CI_SA"."SA_ID"="CI_SA_RS_HIST"."SA_ID")
    LEFT OUTER JOIN "CISADM"."CI_ACCT_PER" "CI_ACCT_PER" ON "CI_ACCT"."ACCT_ID"="CI_ACCT_PER"."ACCT_ID")
    LEFT OUTER JOIN "CISADM"."CI_PER" "CI_PER" ON "CI_ACCT_PER"."PER_ID"="CI_PER"."PER_ID")
    LEFT OUTER JOIN "CISADM"."CI_PER_NAME" "CI_PER_NAME" ON "CI_PER"."PER_ID"="CI_PER_NAME"."PER_ID")
    LEFT OUTER JOIN "CISADM"."CI_SPR" "CI_SPR" ON "CI_SA_REL"."SPR_CD"="CI_SPR"."SPR_CD"
    WHERE "CI_PER_NAME"."PRIM_NAME_SW"='Y'
    AND "CI_ACCT_PER"."MAIN_CUST_SW"='Y'
    AND "CI_ACCT_PER"."FIN_RESP_SW"='Y'
    AND "CI_SA_REL"."SA_REL_STATUS_FLG"='A'
    and "CI_SA_RS_HIST"."EFFDT"<date(2009,1,1)
    ORDER BY "CI_SA_REL"."SPR_CD", "CI_SA"."SA_ID", "CI_ACCT_PER"."ACCT_ID", "CI_ACCT_PER"."PER_ID"

  • Error creating new historical database on SCSI volume

    Here is the error that I get:
    "Unable to create database: The database path either contains invalid characters (/:*?""<>|) or access permission is denied"
    Everything works fine when I use my C:/ drive. But the F:/ drive gives that error.

    Typo? c:\ and f:\
    I've done worse.
    =====================================================
    Fading out. " ... J. Arthur Rank on gong."

  • Error due to accessing database connection using jsp

    Hi,
    I have an error, during accessing a datbase using jsp:useBean from jsp.Urgent i need this one
    my source code is
    DbBean.java
    package SQLBean;
    import java.sql.*;
    import java.io.*;
    public class DbBean implements java.io.Serializable{
    private String dbDriver = "sun.jdbc.odbc.JdbcOdbcDriver";
    private Connection dbCon;
    public DbBean(){
    super();
    public boolean connect() throws ClassNotFoundException,SQLException{
    Class.forName(dbDriver);
    dbCon = DriverManager.getConnection("jdbc dbc:mybean","","");
    return true;
    public void close() throws SQLException{
    dbCon.close();
    public ResultSet execSQL(String sql) throws SQLException{
    Statement s = dbCon.createStatement();
    ResultSet r = s.executeQuery(sql);
    return (r == null) ? null : r;
    public int updateSQL(String sql) throws SQLException{
    Statement s = dbCon.createStatement();
    int r = s.executeUpdate(sql);
    return (r == 0) ? 0 : r;
    database.jsp
    <HTML>
    <HEAD><TITLE>DataBase Search</TITLE></HEAD>
    <BODY>
    <%@ page language="Java" import="java.sql.*" %>
    <jsp:useBean id="db" scope="application" class="SQLBean.DbBean" />
    <jsp:setProperty name="db" property="*" />
    <center>
    <h2> Results from </h2>
    <hr>
    <br><br>
    <table>
    <%
    db.connect();
    ResultSet rs = db.execSQL("select * from employ");
    int i = db.updateSQL("UPDATE employ set fname = 'hello world' where empno='000010'");
    out.println(i);
    %>
    <%
    while(rs.next()) {
    %>
    <%= rs.getString("empno") %>
    <BR>
    <%
    %>
    <BR>
    <%
    db.close();
    %>
    Done
    </table>
    </body>
    </HTML>
    The error like this
    org.apache.jasper.JasperException: Unable to compile class for JSPNote: sun.tools.javac.Main has been deprecated.
    error: Invalid class file format in C:\Program Files\Apache Tomcat 4.0\webapps\muthu\WEB-INF\classes\SQLBean\DbBean.class. The major.minor version '49.0' is too recent for this tool to understand.
    An error occurred at line: 7 in the jsp file: /database.jsp
    Generated servlet error:
    C:\Program Files\Apache Tomcat 4.0\work\localhost\muthu\database$jsp.java:65: Class SQLBean.DbBean not found.
    SQLBean.DbBean db = null;
    ^
    An error occurred at line: 7 in the jsp file: /database.jsp
    Generated servlet error:
    C:\Program Files\Apache Tomcat 4.0\work\localhost\muthu\database$jsp.java:68: Class SQLBean.DbBean not found.
    db= (SQLBean.DbBean)
    ^
    An error occurred at line: 7 in the jsp file: /database.jsp
    Generated servlet error:
    C:\Program Files\Apache Tomcat 4.0\work\localhost\muthu\database$jsp.java:73: Class SQLBean.DbBean not found.
    db = (SQLBean.DbBean) java.beans.Beans.instantiate(this.getClass().getClassLoader(), "SQLBean.DbBean");
    ^
    4 errors, 1 warning
    Anybody help me?
    Thanx in advance

    Your code is ok . The problem is in java version witch you use to compile the DbBean class . I think you are using java 1.5 try to change to 1.4 compile and run again should help .

  • Creating jar of database connectivity application

    Hi,
    I have created a project in eclipse 3.3 using WindowBuilder - > SwingDesigner . i have to save data in Mysql server . It is wroking fine in eclipse , my problem is this i want to run this project in some other system where only jre is installed and database is installed , for that i have created a executable jar file ,this jar file is working and showing me swing view but when i fill all the fields and click on save button my data is not saved in mysql database.
    i dnt no how to create a jar which can save my data to database, or please tell me if there is any other way to run this project in another system , can i create itz exe file.
    Any help is appreciated
    Thanks and Regards
    komal

    komal_markan wrote:
    I have created a project in eclipse 3.3 using WindowBuilder - > SwingDesigner . i have to save data in Mysql server . It is wroking fine in eclipse , my problem is this i want to run this project in some other system where only jre is installed and database is installed , for that i have created a executable jar file ,this jar file is working and showing me swing view but when i fill all the fields and click on save button my data is not saved in mysql database.As mentioned you need the jdbc driver.
    It is possible to package the jdbc driver in the jar itself. Google for that. It requires a manifest entry and a suitable build of the jar of course.

Maybe you are looking for

  • Connect to itunes with my ipod, this screen comes up and then i can't do anything else?

    I reset my ipod touch back to its factory settings, plugged it back into my computer and the following screen came up which of course i was expecting, however, whenever i click on the summary, music, apps, video tabs etc, nothing happens and i am sti

  • Help anyone ? 3502 AP Recovery Problem

    I have had one 3502 access points  die in the last few days. I suspect it was broken flash systems and are due for the bin. If anyone can offer  any confirmation or a way to fix it, I would be grateful. On booting, it gives the following error: Xmode

  • IMovie crashes when importing video

    iMovie crashes when importing video

  • Information related to Public Sector -SAP

    Hi All, Please can some one help me to give General information on SAP - Public Sector like 1) Over view 2)The main modules and some brief about them and so on. I would be thankful for your help. Even if some links are given it will be helpful to me.

  • Wifi router reccomendations

    Looking to purchase a wifi router for my iphone 3GS. Can you all chime in with models you've had luck with? Looking to get a 802.11g type. *One other thing, would it a faster connection getting a "g" or an "n" and running it backwards? (I read that m