Connections to database

I have problems with database connections. Cursors are being kept open. I think I have closed all RowSetIterators. Does anyone have som suggestion on solution.
It looks like the RowSetIterators used in JSP page are kept open. I am using ADF.

the number of connections depends of the configuration agent and the number of metrics that are available .
Normaly there are two connections. If you have this connection waiting , the event is a special event, that means that you have ORACLE STREAMS enabled in this database
Restart the agent

Similar Messages

  • Code to connect to database in  Webdynpro-- iviews

    Hi All-
    Could you let me know the code to connect to database
    in WebDynPro-->iviews.
    Regards,
    Cris

    Hi,
    Here are the two ways of connecting to a database through coding:
    ////1////
    Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
              java.sql.Connection conn= java.sql.DriverManager.getConnection("jdbc:microsoft:sqlserver://<IP>:<port>;user=<abc>;password=<xyz>;database=<DB name>");
    ////2////     
    InitialContext initialContext = new InitialContext();
    DataSource dataSource = (DataSource)initialContext.lookup("jdbc/SRI");
    java.sql.Connection conn = dataSource.getConnection();
    Regards
    Srinivasan T

  • How to find the number of users  connected to database from OS level(Linux)

    Hi All,
    Could anyone know , how to find the number of users connected to database without connecting with sql*plus
    is there any command to find it?
    example we have 10 databases in one server, how to find the number of users connected to particular database without connecting to database(v$session)?
    oracle version:- 10g,11g
    Operating System:- OEL4/OEL5/AIX/Solaris
    any help will be appreciated.
    Thanks in advance.
    Thank you.
    Regards,
    Rajesh.

    Excellent.
    Tested, works as long as you set the ORACLE_SID first ( to change databases )
    ps -ef | grep $ORACLE_SID | grep "LOCAL=NO" | awk '{print $2}' | wc -l
    Thanks!
    select OSUSER
        from V$SESSION
    where AUDSID = SYS_CONTEXT('userenv','sessionid')
        and rownum=1;Best Regards
    mseberg

  • I am not able to connect to database in sql developer.how to do?

    I downloaded sqldeveloper 1.5.4.59.40. iam not able to establish connection to database. Can anyone tell me ?

    Have you created a database (or have one you connect to)?
    Have you created the Net Service connections for SQL Developer to use?
    Does SQL Developer have access to this Net Serviice name?
    Have you created the connections from SQL Developer?
    Can you post an error message?
    See
    <br>
    Oracle Database FAQs
    </br>

  • Managed Server can not connect to Database

    I have a WebLogic cluster with three managed Server on 3 different machines.
    ManagedServer_1, ManagedServer_2, ManagedServer_3 (on Machine 3)
    Firstly, everything is ok. But when we changed some configuration on Firewall and make the WebLogic cluster could not connect to database. 3 servers change status from Running to Warning. Then, we undo all the changes to the Firewall configuration. 3 Servers could connect to Database again but still in warning state.
    It is strange that when I tried to restart ManagedServer_3. That server could not be up normally. It went to Admin state and all the datasources and connection pool could not be created. I tried to restart the machine 3 and start the server but it still failed to make server running normally.
    ( I made the test connecting to Database from Machine 3, everything is okie, I can got data from database, port 1521 opened )
    Has anyone got the same problem and how to fix it? Is that the problem with the admin server?

    JDBC DataSources/Connection pools are all at Domain Level. All we do is just target the datasources to AdminServer and Entire cluster (this will take care of all managed servers in the cluster). From Weblogic Console, TEST the data sources for any firewall issues. If this works from console, check from where you are accessing the Console like within the Firewall, that can access the database server. Even though the actual application is deployed only on cluster, still I would recommend targetting the datasources to both AdminServer and Cluster.
    Ravi Jegga

  • Taking too much time (1min) to connect to database

    Hi,
    I have oracle 10.2 and 10g application server.
    Its taking too much time to connect to database through application (on browser). The connection through sqlplus is fine.
    Please share your experience.
    Regards,
    Naseer

    Dear AnaTech,
    i am going to ask not related this question which already you answered i am going to ask you about that how to connect forms6i and Developer 10g with OracleAS.
    i have installed and working Developer Suite 10g Ver. 10.1.2 and also Form Builder 6i. On my other machine i installed and working Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 and also on the database machine i installed Oracle Enterprise Manager 10g Application Server Control 10.1.2.0.2.
    my database conectivity with Developer suite Forms and Reports and also Form6i and Reports6i are working fine. no problem.
    now the 1 question of mine is that when i try to run form6i through run from web i got this error. FRM-99999: error 18121 occured see the release not.
    this and the main question of mine is this that how can i control my OracleAS 10g with forms because basically the functionality of OracleAS is Mid-Tier but i am not utilizing the Mid-tier i am using here Two-tier Envrionment even i installed 3-Tier Environment so tell me how i utilize it with 3-Tier..
    I hope you don't mind that i ask this question here and also if you give me you email then we can discuss this in detail and i can be helpful of your great expertise. i also know and utilize my 3-tier real envrionment.
    Waiting for your great response.
    Regards,
    K.J.J.C

  • MySQL Database Connection (two databases at the same time)

    I have never had to open more than one MySQL database from within the same website before, but I do now.  The website I have is designed where all the content comes from within the main database.  I am building an Inventory system that I want within it's own database, in the event I would ever need to move the application to another server or something, I don't want this data residing in the main database.
    Currently, I open the database connection from within a file called "common.php" that resides in a directory called "lib" that can be accessed from the root directory.  Below is the proposed code that would be placed within the "common.php" file:
    // Define Database Variables
    $dbserver = "127.0.0.1";
    $dbuser  = array('clevelan_user1', 'clevelan_user2');
    $dbpass  = array('P@ssw0rd', 'P@ssw0rd2');
    $dbname  = array('clevelan_database1', 'clevelan_database2');
    // Start Session
    session_start();
    // Connect to Databases
    connectdb($dbserver, $dbuser[0], $dbpass[0], $dbname[0]);
    connectdb2($dbserver, $dbuser[1], $dbpass[1], $dbname[1]);
    // Database 1 Connection
    function connectdb($dbserver, $dbuser, $dbpass, $dbname) {
    // connects to db
      global $connection;
      $connection = @mysql_connect($dbserver, $dbuser, $dbpass) or die ("could not connect to server");
      $db = @mysql_select_db($dbname, $connection) or die ("could not select databsase");
      return $connection;
    // Database 2 Connection
    function connectdb2($dbserver, $dbuser, $dbpass, $dbname) {
    // connects to db
      global $connection2;
      $connection2 = @mysql_connect($dbserver, $dbuser, $dbpass) or die ("could not connect to server");
      $db2 = @mysql_select_db($dbname, $connection2) or die ("could not select databsase");
      return $connection2;
    //End of Code Within the "common.php"
    From within any page of the website, I want to access both connections by placing an include at the top of each page:
    include_once("lib/common.php");
    Currently, when I run the code above, any page within the website (the home page) provides error messages with regards to database connectivity (the pages are looking for there content from within the second database.  It's as if the second database is the only database seen by the website.
    I need help figuring out how I can have two MySQL databases open at the same time (the second database will only be open for short periods of time and then closed).  But the main database is always open.

    Create one project using one copy of the exact tables.
    create 2 different sessions.xml files each pointing to the same project. Set the login information in the sessions.xml files.
    That should work fine.
    Peter

  • Enterprise manager is not able to connect to database instance

    Hi
    I am having a problem with Oracle EM. I would appreciate very much if anyone can help me.
    I installed Oracle on XP which runs on virtual pc on XP as well. Everything is fine, I can connect to database with sqlplus, and there were no errors during installation.
    But the problem is that, when I try to connect to database with EM, it says:
    Enterprise manager is not able to connect to database instance . The state of the components are listed below.
    Can anoyone help me?

    user10637311 wrote:
    When you want OEM DB , your existing DB should be created by DBCA or if suppose manually creaed DB then you have to configure that DB to EM by
    "emca -config dbcontrol db -repos create". for these two cases istener should be running.
    emctl start dbconsole -> to start dbconsole service
    emctl status dbconsole-> status of servicesI am sorry, I was looking at $ORACLE_HOME\admin . And in the proper path, both listener.ora and tnsnames.ora do exist.
    emca -config dbcontrol db -repos create :
    <last part>:
    INFO: This operation is being logged at C:\oracle\product\10.2.0\db_1\cfgtoollog
    s\emca\orcl\emca_2010-02-18_02-01-40-AM.log.
    Feb 18, 2010 2:02:46 AM oracle.sysman.emcp.util.DBControlUtil stopOMS
    INFO: Stopping Database Control (this may take a while) ...
    Feb 18, 2010 2:03:19 AM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Feb 18, 2010 2:03:19 AM oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Error creating the repository
    Feb 18, 2010 2:03:19 AM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Refer to the log file at C:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\or
    cl\emca_repos_create_<date>.log for more details.
    Feb 18, 2010 2:03:19 AM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error creating the repository
    Refer to the log file at C:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\orcl\emc
    a_2010-02-18_02-01-40-AM.log for more details.
    Could not complete the configuration. Refer to the log file at C:\oracle\product
    \10.2.0\db_1\cfgtoollogs\emca\orcl\emca_2010-02-18_02-01-40-AM.log for more deta
    ils.
    C:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\or
    cl\emca_repos_create_<date>.log:
    Check if repos user already exists.
    old 6: WHERE username=UPPER('&EM_REPOS_USER');
    new 6: WHERE username=UPPER('SYSMAN');
    old 8: IF ( '&EM_CHECK_TYPE' = 'EXISTS') THEN
    new 8: IF ( 'NOT_EXISTS' = 'EXISTS') THEN
    old 11: raise_application_error(-20000, '&EM_REPOS_USER does not exists..');
    new 11: raise_application_error(-20000, 'SYSMAN does not exists..');
    old 14: ELSIF ( '&EM_CHECK_TYPE' = 'NOT_EXISTS' ) THEN
    new 14: ELSIF ( 'NOT_EXISTS' = 'NOT_EXISTS' ) THEN
    old 17: raise_application_error(-20001, '&EM_REPOS_USER already exists..');
    new 17: raise_application_error(-20001, 'SYSMAN already exists..');
    old 21: raise_application_error(-20002, 'Invalid Check type &EM_CHECK_TYPE');
    new 21: raise_application_error(-20002, 'Invalid Check type NOT_EXISTS');
    DECLARE
    ERROR at line 1:
    ORA-20001: SYSMAN already exists..
    ORA-06512: at line 17

  • Error Connecting to database URL jdbc:oracle:oci:@rmsdbtst as user rms13 java.lang.Exception:UnsatisfiedLinkError encountered when using the Oracle driver

    Trying to Install RMS application 13.2.2 and I get past the pre-installation checks and when I get to the Data Source details and enter the data source details with the check box checked to validate the schema/Test Data Source I get the following error:
    Error Connecting to database URL jdbc:oracle:oci:@rmsdbtst as user rms13 java.lang.Exception:UnsatisfiedLinkError encountered when using the Oracle driver. Please check that the library path is set up properly or switch to the JDBC thin client oracle/jdbc/driver/T2CConnection.getLibraryVersioNumber()
    Checks performed:
    RMS Application code location and directory contents:
    [oracle@test-rms-app application]$ pwd
    /binary_files/STAGING_DIR/rms/application
    [oracle@test-rms-app application]$ ls -ltr
    total 144
    -rw-r--r-- 1 oracle oinstall   272 Dec 7  2010 version.properties
    -rw-r--r-- 1 oracle oinstall   405 Jan 16 2011 expected-object-counts.properties
    -rw-r--r-- 1 oracle oinstall   892 May 13 2011 ant.install.properties.sample
    -rw-r--r-- 1 oracle oinstall 64004 Jun  6  2011 build.xml
    drwxr-xr-x 9 oracle oinstall  4096 Jun 16 2011 rms13
    drwxr-xr-x 3 oracle oinstall  4096 Jun 16 2011 installer-resources
    drwxr-xr-x 3 oracle oinstall  4096 Jun 16 2011 antinstall
    drwxr-xr-x 2 oracle oinstall  4096 Jun 16 2011 ant-ext
    drwxr-xr-x 5 oracle oinstall  4096 Jun 16 2011 ant
    -rw-r--r-- 1 oracle oinstall 11324 Dec 18 09:18 antinstall-config.xml.ORIG
    -rwxr-xr-x 1 oracle oinstall  4249 Dec 18 10:01 install.sh
    drwxr-xr-x 4 oracle oinstall  4096 Dec 18 10:06 common
    -rw-r--r-- 1 oracle oinstall 16244 Dec 19 10:37 antinstall-config.xml
    -rw-r--r-- 1 oracle oinstall   689 Dec 19 10:37 ant.install.log
    [oracle@test-rms-app application]$
    Application installation:
    [oracle@test-rms-app application]$ ./install.sh
    THIS IS the driver directory
    Verified $ORACLE_SID.
    Verified SQL*Plus exists.
    Verified write permissions.
    Verified formsweb.cfg read permissions.
    Verified Registry.dat read permissions.
    Verified Java version 1.4.2.x or greater. Java version - 1.6.0
    Verified Tk2Motif.rgb settings.
    Verified frmcmp_batch.sh status.
    WARNING: Oracle Enterprise Linux not detected.  Some components may not install properly.
    Verified $DISPLAY - 172.16.129.82:0.0.
    This installer will ask for your "My Oracle Support" credentials.
    Preparing installer. This may take a few moments.
    Your internet connection type is: NONE
    Integrating My Oracle Support into the product installer workflow...
         [move] Moving 1 file to /binary_files/STAGING_DIR/rms/application
    Installer preparation complete.
    MW_HOME=/u01/app/oracle/Middleware/NewMiddleware1034
    ORACLE_HOME=/u01/app/oracle/Middleware/NewMiddleware1034/as_1
    ORACLE_INSTANCE=/u01/app/oracle/Middleware/NewMiddleware1034/asinst_1
    DOMAIN_HOME=/u01/app/oracle/Middleware/NewMiddleware1034/user_projects/domains/rmsClassDomain
    WLS_INSTANCE=WLS_FORMS
    ORACLE_SID=rmsdbtst
    JAVA_HOME=/u01/app/oracle/jrockit-jdk1.6.0_45-R28.2.7-4.1.0
    Launching installer...
    To make sure I have connectivity from the app server to the database (on a database server) here are the steps followed:
    [oracle@test-rms-app application]$ tnsping rmsdbtst
    TNS Ping Utility for Linux: Version 11.1.0.7.0 - Production on 19-DEC-2013 10:41:40
    Copyright (c) 1997, 2008, Oracle.  All rights reserved.
    Used parameter files:
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = test-rms-db.vonmaur.vmc)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SID = rmsdbtst)))
    OK (0 msec)
    [oracle@test-rms-app application]$
    [oracle@test-rms-app application]$ sqlplus rms13@rmsdbtst
    SQL*Plus: Release 11.1.0.7.0 - Production on Thu Dec 19 10:46:18 2013
    Copyright (c) 1982, 2008, Oracle.  All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [oracle@test-rms-app application]$
    [oracle@test-rms-app application]$ ping test-rms-db
    PING test-rms-db.vonmaur.vmc (192.168.1.140) 56(84) bytes of data.
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=1 ttl=64 time=0.599 ms
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=2 ttl=64 time=0.168 ms
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=3 ttl=64 time=0.132 ms
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=4 ttl=64 time=0.158 ms
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=5 ttl=64 time=0.135 ms
    --- test-rms-db.vonmaur.vmc ping statistics ---
    5 packets transmitted, 5 received, 0% packet loss, time 4001ms
    rtt min/avg/max/mdev = 0.132/0.238/0.599/0.181 ms
    [oracle@test-rms-app application]$
    [oracle@test-rms-app application]$ uname -a
    Linux test-rms-app.vonmaur.vmc 2.6.18-128.el5 #1 SMP Wed Jan 21 08:45:05 EST 2009 x86_64 x86_64 x86_64 GNU/Linux
    [oracle@test-rms-app application]$
    [oracle@test-rms-app application]$ cat /etc/*-release
    Enterprise Linux Enterprise Linux Server release 5.3 (Carthage)
    Red Hat Enterprise Linux Server release 5.3 (Tikanga)
    [oracle@test-rms-app application]$
    The database is created and all the batch file scripts have been successfully deployed.  Now working on the application server.  The  Weblogic server is installed and 11g forms and reports are installed successfully.
    Any help would be helpful.
    Thanks,
    Ram.

    Please check MOS Notes:
    FAQ: RWMS 13.2 Installation and Configuration (Doc ID 1307639.1)

  • (Cisco Historical Reporting / HRC ) All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054

    Hi All,
    I am getting an error message "All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054"  when trying to log into HRC (This user has the reporting capabilities) . I checked the log files this is what i found out 
    The log file stated that there were ongoing connections of HRC with the CCX  (I am sure there isn't any active login to HRC)
    || When you tried to login the following error was being displayed because the maximum number of connections were reached for the server .  We can see that a total number of 5 connections have been configured . ||
    1: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:Current number of connections (5) from historical Clients/Scheduler to 'CRA_DATABASE' database exceeded the maximum number of possible connections (5).Check with your administrator about changing this limit on server (wfengine.properties), however this might impact server performance.
    || Below we can see all 5 connections being used up . ||
    2: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:[DB Connections From Clients (count=5)]|[(#1) 'username'='uccxhrc','hostname'='3SK5FS1.ucsfmedicalcenter.org']|[(#2) 'username'='uccxhrc','hostname'='PFS-HHXDGX1.ucsfmedicalcenter.org']|[(#3) 'username'='uccxhrc','hostname'='PFS-HHXDGX1.ucsfmedicalcenter.org']|[(#4) 'username'='uccxhrc','hostname'='PFS-HHXDGX1.ucsfmedicalcenter.org']|[(#5) 'username'='uccxhrc','hostname'='47BMMM1.ucsfmedicalcenter.org']
    || Once the maximum number of connection was reached it threw an error . ||
    3: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:Number of max connection to 'CRA_DATABASE' database was reached! Connection could not be established.
    4: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:Database connection to 'CRA_DATABASE' failed due to (All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054.)
    Current exact UCCX Version 9.0.2.11001-24
    Current CUCM Version 8.6.2.23900-10
    Business impact  Not Critical
    Exact error message  All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054
    What is the OS version of the PC you are running  and is it physical machine or virtual machine that is running the HRC client ..
    OS Version Windows 7 Home Premium  64 bit and it’s a physical machine.
    . The Max DB Connections for Report Client Sessions is set to 5 for each servers (There are two servers). The no of HR Sessions is set to 10.
    I wanted to know if there is a way to find the HRC sessions active now and terminate the one or more or all of that sessions from the server end ? 

    We have had this "PRX5" problem with Exchange 2013 since the RTM version.  We recently applied CU3, and it did not correct the problem.  We have seen this problem on every Exchange 2013 we manage.  They are all installations where all roles
    are installed on the same Windows server, and in our case, they are all Windows virtual machines using Windows 2012 Hyper-V.
    We have tried all the "this fixed it for me" solutions regarding DNS, network cards, host file entries and so forth.  None of those "solutions" made any difference whatsoever.  The occurrence of the temporary error PRX5 seems totally random. 
    About 2 out of 20 incoming mail test by Microsoft Connectivity Analyzer fail with this PRX5 error.
    Most people don't ever notice the issue because remote mail servers retry the connection later.  However, telephone voice mail systems that forward voice message files to email, or other such applications such as your scanner, often don't retry and
    simply fail.  Our phone system actually disables all further attempts to send voice mail to a particular user if the PRX5 error is returned when the email is sent by the phone system.
    Is Microsoft totally oblivious to this problem?
    PRX5 is a serious issue that needs an Exchange team resolution, or at least an acknowledgement that the problem actually does exist and has negative consequences for proper mail flow.
    JSB

  • Error while connecting MYSQL Database

    Hi,
    I use a 30 days trial of Crystal Reports 2008. When i try to connect with the database i always get the next error: [http://www.visiscan.nl/error.jpg]
    The database is 4.1GB large and there is 10GB free space on the database.
    Anybody can tell me what to do?

    Hi Tom,
    As I understand the error while connecting to database is
    u201CFailed to retrieve data from databaseu201D
    There could be some could be multiple reasons for this.
    If you are using an ODBC connection then try to check the DSN. Recreate the same and then try.
    If the database is oracle check if native client is installed and try to ping from the native client to check if it responds.
    When connecting to Oracle, ensure that the Service name is identical to that used in the <ORA_HOME>/network/admin/tnsnames.ora file on the BusinessObjects XI Release 2 server.
    For ODBC databases, ensure that the ODBC DSN is exactly the same in the ODBC Manager as on the BusinessObjects XI Release 2 server.
    Please let us know if this helps
    Regards,
    Aditya Joshi

  • Server Error in '/' Application. [COMException (0x81020024): Unable to connect to database]

    Hi,
    My team and I are trying to resolve this issue. some of our users are having trouble uploading data into the database. this is the error that they are getting.
    I would really appreciate it if you could help me get ridd fo this issue.
    Server Error in '/' Application.
    Unable to connect to database. Check database connection information and make sure the database server is running.
    Description:
    An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details:
    System.Runtime.InteropServices.COMException: Unable to connect to database. Check database connection information and make sure the database server is running.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace
    below.
    Stack Trace:
    [COMException (0x81020024): Unable to connect to database.  Check database connection information and make sure the database server is running.]
       Microsoft.SharePoint.Library.SPRequestInternalClass.PreInitServer(String bstrAbsoluteRequestUrl, String bstrServerRelativeUrl, Int32 lZone, Guid gApplicationId, Guid gSiteId, Guid gDatabaseId,
    String bstrDatabaseServer, String bstrDatabaseName, String bstrDatabaseUsername, String bstrDatabasePassword, Boolean fHostHeaderIsSiteName) +0
       Microsoft.SharePoint.Library.SPRequest.PreInitServer(String bstrAbsoluteRequestUrl, String bstrServerRelativeUrl, Int32 lZone, Guid gApplicationId, Guid gSiteId, Guid gDatabaseId, String
    bstrDatabaseServer, String bstrDatabaseName, String bstrDatabaseUsername, String bstrDatabasePassword, Boolean fHostHeaderIsSiteName) +359
    [SPException: Unable to connect to database.  Check database connection information and make sure the database server is running.]
       Microsoft.SharePoint.Library.SPRequest.PreInitServer(String bstrAbsoluteRequestUrl, String bstrServerRelativeUrl, Int32 lZone, Guid gApplicationId, Guid gSiteId, Guid gDatabaseId, String
    bstrDatabaseServer, String bstrDatabaseName, String bstrDatabaseUsername, String bstrDatabasePassword, Boolean fHostHeaderIsSiteName) +479
       Microsoft.SharePoint.SPSite.PreinitializeServer(SPRequest request) +666
       Microsoft.SharePoint.SPWeb.InitializeSPRequest() +548
       Microsoft.SharePoint.SPWeb.EnsureSPRequest() +75
       Microsoft.SharePoint.SPWeb.get_Request() +74
       Microsoft.SharePoint.WebControls.SPControl.SPWebEnsureSPControl(HttpContext context) +613
       Microsoft.SharePoint.WebControls.SPControl.GetContextWeb(HttpContext context) +41
       Microsoft.SharePoint.SPContext.get_Current() +123
       CKS.EBE.BlogContext.get_BlogEnabledSite() +37
       CKS.EBE.BlogHttpModule._app_PostAuthorizeRequest(Object sender, EventArgs e) +113
       System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +80
       System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +171
    the description of the error on the server is as follows:
    The description for Event ID ( 27745 ) in Source ( Windows SharePoint Services 3 ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use
    the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: #50071: Unable to connect to the database MOSS_Content_RBI on BartDB\Bart.  Check the database connection information
    and make sure that the database server is running..

    are you using the Aliases for the SQL Server, make sure your account having the correct permission.
    If it is your QA farm, you can run the config wizard to fix his problem...
    check this post having the similar issue.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/478d6b3a-a51e-48c5-832b-5afb51c69734/unable-to-connect-to-the-sql-content-database-from-sharepoint-web-front-server?forum=sharepointadminlegacy
    http://hammad1.wordpress.com/2008/06/04/unable-to-connect-to-database-in-event-logs/
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • How to find out number of connections to database?

    Hi,
    How can I find number of connections connected to the database 4 hours ago. For examply, if current time is 5PM and I want to see total number of connections connected to database (and from what user?) in between 1 and 2 PM, is there a way to find that out?
    I see v$session has a column MACHINE from which I can use count function to check the # of concurrent connections but I am not sure how to check the # of connections that happend few hours ago. Any suggestions?
    --MM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    you should have audit on .. and create logon trigger and make entry in the tabe ..that would give you .
    --Girish                                                                                                                                                                                                                                       

  • No connect to database possible while logging in sap system

    hi to all experts ,
    all the work process are wait state but with one work process i have error 1 and when im trying to logon to sap im getting this message no connect to database possible session terminated
    dev_disp
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      00
    sid        EC6
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    75
    intno      20050900
    make:      multithreaded, Unicode, optimized
    pid        3664
    Thu Jul 10 00:06:23 2008
    kernel runs with dp version 217000(ext=109000) (@(#) DPLIB-INT-VERSION-217000-UC)
    length of sys_adm_ext is 572 bytes
    *** SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 3664) [dpxxdisp.c   1237]
         shared lib "dw_xml.dll" version 75 successfully loaded
         shared lib "dw_xtc.dll" version 75 successfully loaded
         shared lib "dw_stl.dll" version 75 successfully loaded
         shared lib "dw_gui.dll" version 75 successfully loaded
         shared lib "dw_mdm.dll" version 75 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Thu Jul 10 00:06:28 2008
    *** WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5273]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >gcecc6_EC6_00                           <
    DpShMCreate: sizeof(wp_adm)          18304     (1408)
    DpShMCreate: sizeof(tm_adm)          3994272     (19872)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    DpShMCreate: sizeof(comm_adm)          528064     (1048)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1440)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 05FF0040, size: 4653368)
    DpShMCreate: allocated sys_adm at 05FF0040
    DpShMCreate: allocated wp_adm at 05FF1E40
    DpShMCreate: allocated tm_adm_list at 05FF65C0
    DpShMCreate: allocated tm_adm at 05FF65F0
    DpShMCreate: allocated wp_ca_adm at 063C5890
    DpShMCreate: allocated appc_ca_adm at 063CB650
    DpShMCreate: allocated comm_adm at 063CD590
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 0644E450
    DpShMCreate: allocated gw_adm at 0644E490
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 0644E4C0
    DpShMCreate: allocated wall_adm at 0644E4C8
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    Thu Jul 10 00:06:29 2008
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation flat
    <EsNT> Memory Reset disabled as NT default
    <ES> 511 blocks reserved for free list.
    ES initialized.
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 1712
      argv[0] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=2122
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=EC6
      argv[7] = -DSAPMYNAME=gcecc6_EC6_00
      argv[8] = -DSAPPROFILE=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1623]
    ***LOG Q0K=> DpMsAttach, mscon ( gcecc6) [dpxxdisp.c   11586]
    DpStartStopMsg: send start message (myname is >gcecc6_EC6_00                           <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 75
    Release check o.K.
    Thu Jul 10 00:06:30 2008
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Jul 10 00:06:43 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    *** ERROR => NiIRead: SiRecv failed for hdl 4 / sock 1524
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:2124) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=1712)
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Jul 10 00:07:09 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 5372
      argv[0] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=2191
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=EC6
      argv[7] = -DSAPMYNAME=gcecc6_EC6_00
      argv[8] = -DSAPPROFILE=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Jul 10 00:07:12 2008
    MBUF state ACTIVE
    Thu Jul 10 00:07:15 2008
    DpModState: change server state from STARTING to ACTIVE
    Thu Jul 10 00:08:09 2008
    *** ERROR => W8 (pid 2248) died [dpxxdisp.c   14241]
    Thu Jul 10 00:08:35 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    *** ERROR => NiIRead: SiRecv failed for hdl 6 / sock 1484
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:2192) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=5372)
    *** ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Jul 10 00:08:49 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 1960
      argv[0] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=2252
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=EC6
      argv[7] = -DSAPMYNAME=gcecc6_EC6_00
      argv[8] = -DSAPPROFILE=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Jul 10 00:09:44 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    *** ERROR => NiIRead: SiRecv failed for hdl 4 / sock 1572
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:2255) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=1960)
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Jul 10 00:09:49 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 4832
      argv[0] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=2302
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=EC6
      argv[7] = -DSAPMYNAME=gcecc6_EC6_00
      argv[8] = -DSAPPROFILE=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Jul 10 00:09:55 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    *** ERROR => NiIRead: SiRecv failed for hdl 6 / sock 1472
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:2303) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=4832)
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Jul 10 00:10:09 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 2124
      argv[0] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=2381
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=EC6
      argv[7] = -DSAPMYNAME=gcecc6_EC6_00
      argv[8] = -DSAPPROFILE=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Jul 10 00:10:14 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    *** ERROR => NiIRead: SiRecv failed for hdl 4 / sock 1468
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:2382) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=2124)
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Jul 10 00:10:29 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 4180
      argv[0] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=2414
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=EC6
      argv[7] = -DSAPMYNAME=gcecc6_EC6_00
      argv[8] = -DSAPPROFILE=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Jul 10 00:10:34 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    *** ERROR => NiIRead: SiRecv failed for hdl 6 / sock 1464
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:2415) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=4180)
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Jul 10 00:10:49 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 6436
      argv[0] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=2439
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=EC6
      argv[7] = -DSAPMYNAME=gcecc6_EC6_00
      argv[8] = -DSAPPROFILE=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Thu Jul 10 00:10:50 2008
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Jul 10 00:10:54 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    *** ERROR => NiIRead: SiRecv failed for hdl 4 / sock 1460
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:2445) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=6436)
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Jul 10 00:11:09 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 7244
      argv[0] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=2491
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=EC6
      argv[7] = -DSAPMYNAME=gcecc6_EC6_00
      argv[8] = -DSAPPROFILE=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Jul 10 00:11:14 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    *** ERROR => NiIRead: SiRecv failed for hdl 6 / sock 1456
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:2492) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=7244)
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Jul 10 00:11:29 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 7560
      argv[0] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=2512
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=EC6
      argv[7] = -DSAPMYNAME=gcecc6_EC6_00
      argv[8] = -DSAPPROFILE=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Jul 10 00:11:34 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    *** ERROR => NiIRead: SiRecv failed for hdl 4 / sock 1452
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:2513) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=7560)
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Jul 10 00:11:49 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 7932
      argv[0] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=2539
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=EC6
      argv[7] = -DSAPMYNAME=gcecc6_EC6_00
      argv[8] = -DSAPPROFILE=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Thu Jul 10 00:11:50 2008
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Jul 10 00:11:54 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    *** ERROR => NiIRead: SiRecv failed for hdl 6 / sock 1456
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:2545) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=7932)
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Jul 10 00:12:09 2008
    DpEnvCheckJ2ee: switch off j2ee start flag
    DEV_W0
    trc file: "dev_w0", trc level: 1, release: "700"
    *  ACTIVE TRACE LEVEL           1
    *  ACTIVE TRACE COMPONENTS      all, MJ

    B Thu Jul 10 00:06:30 2008
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\EC6\DVEBMGS00\exe\dboraslib.dll' ...
    B  Library 'C:\usr\sap\EC6\DVEBMGS00\exe\dboraslib.dll' loaded
    B  Version of 'C:\usr\sap\EC6\DVEBMGS00\exe\dboraslib.dll' is "700.08", patchlevel (0.73)
    B  New connection 0 created
    M sysno      00
    M sid        EC6
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    75
    M intno      20050900
    M make:      multithreaded, Unicode, optimized
    M pid        1416
    M
    M  kernel runs with dp version 217000(ext=109000) (@(#) DPLIB-INT-VERSION-217000-UC)
    M  length of sys_adm_ext is 572 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 1416) [dpxxdisp.c   1299]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)          18304     (1408)
    M  DpShMCreate: sizeof(tm_adm)          3994272     (19872)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    M  DpShMCreate: sizeof(comm_adm)          528064     (1048)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1440)
    M  DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 05FF0040, size: 4653368)
    M  DpShMCreate: allocated sys_adm at 05FF0040
    M  DpShMCreate: allocated wp_adm at 05FF1E40
    M  DpShMCreate: allocated tm_adm_list at 05FF65C0
    M  DpShMCreate: allocated tm_adm at 05FF65F0
    M  DpShMCreate: allocated wp_ca_adm at 063C5890
    M  DpShMCreate: allocated appc_ca_adm at 063CB650
    M  DpShMCreate: allocated comm_adm at 063CD590
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 0644E450
    M  DpShMCreate: allocated gw_adm at 0644E490
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 0644E4C0
    M  DpShMCreate: allocated wall_adm at 0644E4C8
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host gcecc6

    M Thu Jul 10 00:06:34 2008
    M  calling db_connect ...
    C  Prepending C:\usr\sap\EC6\DVEBMGS00\exe to Path.
    C  Oracle Client Version: '10.2.0.1.0'
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)

    C Thu Jul 10 00:06:48 2008
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=05CAECF8)
    C  Now '/@EC6' is connected (con_hdl 0, nls_hdl 0).
    C  Got SAPSR3's password from OPS$-user
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=05C8C6D8,usrhp=05CAECF8)
    C  Now I'm disconnected from ORACLE
    C  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=05CAECF8)
    C  Now 'SAPSR3/<pwd>@EC6' is connected (con_hdl 0, nls_hdl 0).
    C  Database NLS settings: AMERICAN_AMERICA.UTF8
    C  Database instance EC6 is running on GCECC6 with ORACLE version 10.2.0.2.0 since 20080710
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20080710 000634 GCECC6         
    M  db_connect o.k.
    M  ICT: exclude compression: *.zip,*.cs,*.rar,*.arj,*.z,*.gz,*.tar,*.lzh,*.cab,*.hqx,*.ace,*.jar,*.ear,*.war,*.css,*.pdf,*.js,*.gzip,*.uue,*.bz2,*.iso,*.sda,*.sar,*.gif

    I Thu Jul 10 00:07:08 2008
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF               (addr: 0AA30040, size: 4400000)
    M  SHM_ROLL_AREA          (addr: 788A0040, size: 61440000)
    M  SHM_PAGING_AREA          (addr: 0AE70040, size: 32768000)
    M  SHM_ROLL_ADM               (addr: 0CDC0040, size: 615040)
    M  SHM_PAGING_ADM          (addr: 0CE60040, size: 525344)
    M  ThCreateNoBuffer          allocated 544152 bytes for 1000 entries at 0CEF0040
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 12160 bytes (50 server) at 06660040
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    X  ES initialized.
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 13, CON_ID = -1
    B  dbtbxbuf: Buffer TABL  (addr: 12B700C8, size: 30000000, end: 1480C448)
    B  dbtbxbuf: Buffer TABLP (addr: 148100C8, size: 10240000, end: 151D40C8)

    B Thu Jul 10 00:07:09 2008
    B  dbexpbuf: Buffer EIBUF (addr: 151E00D0, size: 4194304, end: 155E00D0)
    B  dbexpbuf: Buffer ESM   (addr: 155F00D0, size: 4194304, end: 159F00D0)
    B  dbexpbuf: Buffer CUA   (addr: 15A000D0, size: 3072000, end: 15CEE0D0)
    B  dbexpbuf: Buffer OTR   (addr: 15CF00D0, size: 4194304, end: 160F00D0)
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.

    S Thu Jul 10 00:07:10 2008
    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 1B3D3950
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 1F6300A8
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 1F630430
    S    using messages for server info
    S  size of spec char cache entry: 297028 bytes (timeout 100 sec)
    S  size of open spool request entry: 2132 bytes
    S  immediate print option for implicitely closed spool requests is disabled

    A  ---PXA-------------------------------------------
    A  PXA INITIALIZATION
    A  System page size: 4kb, total admin_size: 5132kb, dir_size: 5076kb.
    A  Attached to PXA (address 688A0040, size 150000K)
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  ---PXA-------------------------------------------


    A Thu Jul 10 00:07:11 2008
    A  ABAP ShmAdm attached (addr=57A1C000 leng=20955136 end=58E18000)
    A  >> Shm MMADM area (addr=57E91E58 leng=126176 end=57EB0B38)
    A  >> Shm MMDAT area (addr=57EB1000 leng=16150528 end=58E18000)
    A  RFC Destination> destination gcecc6_EC6_00 host gcecc6 system EC6 systnr 0 (gcecc6_EC6_00)
    A  RFC Options> H=gcecc6,S=00,d=2,
    A  RFC FRFC> fallback activ but this is not a central instance.
    A   
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 2
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    M  ThrCreateShObjects          allocated 13730 bytes at 06680040
    M  ThVBStartUp: restart pending update requests
    B  dbtran INFO (init_connection '<DEFAULT>' [ORACLE:700.08]):
    B   max_blocking_factor =   5,  max_in_blocking_factor      =   5,
    B   min_blocking_factor =   5,  min_in_blocking_factor      =   5,
    B   prefer_union_all    =   0,  prefer_join                 =   0,
    B   prefer_fix_blocking =   0,  prefer_in_itab_opt          =   1,
    B   convert AVG         =   0,  alias table FUPD            =   0,
    B   escape_as_literal   =   1,  opt GE LE to BETWEEN        =   0,
    B   select *            =0x0f,  character encoding          = STD / <none>:-,
    B   use_hints           = abap->1, dbif->0x1, upto->2147483647, rule_in->0,
    B                         rule_fae->0, concat_fae->0, concat_fae_or->0
    M  ThVBAutoStart: update-auto-delete
    N  SsfSapSecin: putenv(SECUDIR=C:\usr\sap\EC6\DVEBMGS00\sec): ok

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is C:\usr\sap\EC6\DVEBMGS00\exe\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...sucessfully completed.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 2
    W    ITS Plugin: Release: 700, [7000.0.75.20050900]
    W    ITS Plugin: Int.version, [32]
    W    ITS Plugin: Feature set: [10]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    E  Enqueue Info: rdisp/wp_no_enq=1, rdisp/enqname=<empty>, assume gcecc6_EC6_00

    E Thu Jul 10 00:07:12 2008
    E  Replication is disabled
    E  EnqCcInitialize: local lock table initialization o.k.
    E  EnqId_SuppressIpc: local EnqId initialization o.k.
    E  EnqCcInitialize: local enqueue client init o.k.
    M  MBUF info for hooks: MS component UP
    M  ThSetEnqName: set enqname by server list
    M  ThISetEnqname: enq name = >gcecc6_EC6_00                           <

    E  *************** EnqId_EN_ActionAtMsUpHook ***************
    E  Hook on upcoming Ms (with EnqSrv), get auth EnqId and check it locally

    E  *************** ObjShMem_CheckAuthoritativeEnqId ***************
    E  Checking authoritative EnqId from EnqSrv into ObjShMem
    E  ObjShMem_CheckAuthoritativeEnqId: ObjShMem ...
    E  EnqId.EnqTabCreaTime    = -999
    E  EnqId.RandomNumber      = -999
    E  ReqOrd.TimeInSecs       = -999
    E  ReqOrd.ReqNumberThisSec = -999
    E  ObjShMem_CheckAuthoritativeEnqId: ObjShMem ...
    E  EnqId.EnqTabCreaTime    = -999
    E  EnqId.RandomNumber      = -999
    E  ReqOrd.TimeInSecs       = -999
    E  ReqOrd.ReqNumberThisSec = -999
    E  ObjShMem_CheckAuthoritativeEnqId: EnqId is initial in ShMem
    E  ObjShMem_CheckAuthoritativeEnqId: Overwrite incoming auth EnqId, continue
    E  EnqId inscribed into initial ObjShMem: (ObjShMem_CheckAuthoritativeEnqId)
    E  ---SHMEM--------------------------------------------------------------------------------
    E  EnqId:          EnqTabCreaTime/RandomNumber    = 10.07.2008 00:07:11  1215628631 / 2560
    E  ReqOrd at Srv:  TimeInSecs/ReqNumberThisSec    = 10.07.2008 00:07:12  1215628632 / 1
    E  ReqOrd at Cli:  TimeInSecs/ReqNumberThisSec    = 10.07.2008 00:07:12  1215628632 / 1
    E  Status:         STATUS_OK
    E  ----------------------------------------------------------------------------------------

    M Thu Jul 10 00:07:15 2008
    M  ThActivateServer: state = STARTING
    L  BtcSysStartRaise: Begin
    L  Raise event SAP_SYSTEM_START with parameter <gcecc6_EC6_00       >
    L  BtcSysStartRaise: End

    M Thu Jul 10 00:07:32 2008
    M  SecAudit(RsauShmInit): WP attached to existing shared memory.
    M  SecAudit(RsauShmInit): addr of SCSA........... = 05FC0040
    M  SecAudit(RsauShmInit): addr of RSAUSHM........ = 05FC07A8
    M  SecAudit(RsauShmInit): addr of RSAUSLOTINFO... = 05FC07E0
    M  SecAudit(RsauShmInit): addr of RSAUSLOTS...... = 05FC07EC

    C Thu Jul 10 00:08:19 2008
    C  *** ERROR => ORA-3113 occurred when executing SQL statement (parse error offset=0)
    [dbsloci.c    12548]
    C  sc_p=05BDE198,no=48,idc_p=00000000,con=0,act=1,slen=97,smax=256,#vars=0,stmt=1FA374E8,table=V$LOG                        
    C  SELECT SUBSTR ( TO_CHAR ( SEQUENCE#-1, '0999999999' ), 4, 8 ) FROM V$LOG WHERE STATUS = 'CURRENT';
    C  sc_p=05BDE198,no=48,idc_p=00000000,con=0,act=1,slen=97,smax=256,#vars=0,stmt=1FA374E8,table=V$LOG                        
    C  prep=0,lit=0,nsql=1,lobret=0,#exec=1,dbcnt=0,upsh_p=00000000,ocistmth_p=1FA30364
    C  IN : cols=0,rmax=0,xcnt=0,rpc=0,rowi=0,rtot=0,upto=-1,rsize=0,vmax=0,bound=0,iobuf_p=00000000,vda_p=00000000
    C       lobs=0,lmax=0,lpcnt=0,larr=00000000,lcurr_p=00000000,rret=0
    C  OUT: cols=1,rmax=3611,xcnt=3611,rpc=0,rowi=0,rtot=0,upto=-1,rsize=16,vmax=32,bound=1,iobuf_p=1B38F7E8,vda_p=1FA37758
    C       lobs=0,lmax=0,lpcnt=0,larr=00000000,lcurr_p=00000000,rret=0
    C  SELECT SUBSTR ( TO_CHAR ( SEQUENCE#-1, '0999999999' ), 4, 8 ) FROM V$LOG WHERE STATUS = 'CURRENT';
    B  ***LOG BY2=> sql error 3113       performing FET        [dbds#1 @ 592] [dbds    0592 ]
    B  ***LOG BY0=> ORA-03113: end-of-file on communication channel [dbds#1 @ 592] [dbds    0592 ]
    C  *** ERROR => ORA-3114 occurred when executing SQL statement (parse error offset=0)
    [dbsloci.c    12548]
    C  sc_p=05BDD3AC,no=15,idc_p=05BEDB84,con=0,act=1,slen=184,smax=256,#vars=3,stmt=1B5332C8,table=REPOLOAD                     
    C  SELECT "UNAM" , "UDAT" , "UTIME" , "L_DATALG" , "Q_DATALG" , "SDAT" , "STIME" , "MINOR_VERS" , "MAJO\
    C  R_VERS" FROM "REPOLOAD" WHERE "PROGNAME" = :A0 AND "R3STATE" = :A1 AND "MACH" = :A2 ;
    C  sc_p=05BDD3AC,no=15,idc_p=05BEDB84,con=0,act=1,slen=184,smax=256,#vars=3,stmt=1B5332C8,table=REPOLOAD                     
    C  prep=0,lit=0,nsql=0,lobret=0,#exec=23,dbcnt=0,upsh_p=00000000,ocistmth_p=1B525E94
    C  IN : cols=3,rmax=1,xcnt=0,rpc=0,rowi=0,rtot=0,upto=-1,rsize=86,vmax=32,bound=1,iobuf_p=05A2E748,vda_p=1B5345E8
    C       lobs=0,lmax=0,lpcnt=0,larr=00000000,lcurr_p=00000000,rret=0
    C  OUT: cols=9,rmax=1,xcnt=1,rpc=1,rowi=0,rtot=1,upto=-1,rsize=96,vmax=32,bound=1,iobuf_p=1B38F7E8,vda_p=1B534A58
    C       lobs=0,lmax=0,lpcnt=0,larr=00000000,lcurr_p=00000000,rret=0
    C  SELECT "UNAM" , "UDAT" , "UTIME" , "L_DATALG" , "Q_DATALG" , "SDAT" , "STIME" , "MINOR_VERS" , "MAJO\
    C  R_VERS" FROM "REPOLOAD" WHERE "PROGNAME" = :A0 AND "R3STATE" = :A1 AND "MACH" = :A2 ;
    B  ***LOG BYM=> severe DB error 3114      ; work process in reconnect status [dbsh#2 @ 1123] [dbsh    1123 ]
    B  ***LOG BY4=> sql error 3114   performing SEL on table REPOLOAD   [dbrepo#4 @ 2656] [dbrepo  2656 ]
    B  ***LOG BY0=> ORA-03114: not connected to ORACLE [dbrepo#4 @ 2656] [dbrepo  2656 ]
    A  TH VERBOSE LEVEL FULL
    A  ** RABAX: level LEV_RX_PXA_RELEASE_MTX entered.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_MTX completed.
    A  ** RABAX: level LEV_RX_COVERAGE_ANALYSER entered.
    A  ** RABAX: level LEV_RX_COVERAGE_ANALYSER completed.
    A  ** RABAX: level LEV_RX_ROLLBACK entered.
    M  ***LOG R68=> ThIRollBack, roll back () [thxxhead.c   13155]
    C  *** ERROR => OCI-call 'OCITransRollback' failed: rc = 3114
    [dboci.c      3003]
    B  ***LOG BYM=> severe DB error 3114      ; work process in reconnect status [dbsh#2 @ 1123] [dbsh    1123 ]
    B  Reconnect state is entered by connection:
    B  0: name = R/3, con_id = 000000000 state = ACTIVE      , perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    B  hdl_error_on_commit_rollback: DB-ROLLBACK detected RECONNECT state
    M  ThShortCommit: db unusable
    B  RECONNECT: rsdb/reco_trials: 3
    B  RECONNECT: rsdb/reco_sleep_time: 5
    B  RECONNECT: rsdb/reco_sync_all_server: OFF
    B  db_con_reconnect disconnecting connection:
    B  0: name = R/3, con_id = 000000000 state = INACTIVE    , perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=05C8C6D8,usrhp=05CAECF8)
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  Now I'm disconnected from ORACLE
    B  db_con_reconnect performing the reconnect for con:
    B  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    C  Client NLS settings:
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)

    C Thu Jul 10 00:09:42 2008
    C  *** ERROR => OCI-call 'OCIServerAttach' failed: rc = 12518
    [dboci.c      4172]
    C  *** ERROR => CONNECT failed with sql error '12518'
    [dbsloci.c    10933]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]

    C Thu Jul 10 00:09:47 2008
    C  Client NLS settings:
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]

    C Thu Jul 10 00:09:52 2008
    C  Client NLS settings:
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    B  Reconnect failed for connection:
    B  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    M  *** WARNING => PfStatWrite: missing STAT_END for opcode STAT_REPLOAD [pfxxstat.c   4103]
    B  db_con_reconnect disconnecting connection:
    B  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    B  db_con_reconnect performing the reconnect for con:
    B  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    C  Client NLS settings:
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)

    C Thu Jul 10 00:09:53 2008
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]

    C Thu Jul 10 00:09:58 2008
    C  Client NLS settings:
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]

    C Thu Jul 10 00:10:03 2008
    C  Client NLS settings:
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    B  Reconnect failed for connection:
    B  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    M  *** ERROR => ThHdlReconnect: db_reconnect failed (2048) [thxxhead.c   16655]
    B  db_con_reconnect disconnecting connection:
    B  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    B  db_con_reconnect performing the reconnect for con:
    B  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    C  Client NLS settings:
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]

    C Thu Jul 10 00:10:08 2008
    C  Client NLS settings:
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]

    C Thu Jul 10 00:10:13 2008
    C  Client NLS settings:
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)

    C Thu Jul 10 00:10:14 2008
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    B  Reconnect failed for connection:
    B  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    M  *** ERROR => ThHdlReconnect: db_reconnect failed (2048) [thxxhead.c   16655]

    B Thu Jul 10 00:10:29 2008
    B  db_con_reconnect disconnecting connection:
    B  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    B  db_con_reconnect performing the reconnect for con:
    B  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    C  Client NLS settings:
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)

    C Thu Jul 10 00:10:30 2008
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]

    C Thu Jul 10 00:10:35 2008
    C  Client NLS settings:
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]

    C Thu Jul 10 00:10:40 2008
    C  Client NLS settings:
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    B  Reconnect failed for connection:
    B  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    M  *** ERROR => ThHdlReconnect: db_reconnect failed (2048) [thxxhead.c   16655]
    B  db_con_reconnect disconnecting connection:
    B  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    B  db_con_reconnect performing the reconnect for con:
    B  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    C  Client NLS settings:
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)

    C Thu Jul 10 00:10:41 2008
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]

    C Thu Jul 10 00:10:46 2008
    C  Client NLS settings:
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]

    C Thu Jul 10 00:10:51 2008
    C  Client NLS settings:
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    B  Reconnect failed for connection:
    B  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    M  *** ERROR => ThHdlReconnect: db_reconnect failed (2048) [thxxhead.c   16655]

    B Thu Jul 10 00:11:29 2008
    B  db_con_reconnect disconnecting connection:
    B  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    B  db_con_reconnect performing the reconnect for con:
    B  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = YES, timeout = 000, con_max = 255, con_opt = 255, occ = NO
    C  Client NLS settings:
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)

    C Thu Jul 10 00:11:30 2008
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1F8E7360)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    [dboci.c      4391]
    C  Detaching from DB Server (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    10933]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C87968   05C8CF04   05C8C78C
    C  Attaching to DB Server EC6 (con_hdl=0,svchp=05C8C6D8,svrhp=05C9C464)
    C  Starting user session (con_hdl=0,svchp=05C8C6D8,srvhp=05C9C464,usrhp=1

    4 ETW000 r3trans version 6.14 (release 700 - 18.09.06 - 09:35:00).
    4 ETW000 unicode enabled version
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 date&time   : 10.07.2008 - 01:06:33
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: r3trans -d
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000  [dev trc     ,00000]  Thu Jul 10 01:06:36 2008                            7795  0.007795
    4 ETW000  [dev trc     ,00000]  db_con_init called                                    23  0.007818
    4 ETW000  [dev trc     ,00000]  create_con (con_name=R/3)                             33  0.007851
    4 ETW000  [dev trc     ,00000]  Loading DB library 'dboraslib.dll' ...                28  0.007879
    4 ETW000  [dev trc     ,00000]  load shared library (dboraslib.dll), hdl 0         26757  0.034636
    4 ETW000  [dev trc     ,00000]      using "C:\usr\sap\EC6\SYS\exe\uc\NTI386\dboraslib.dll"
    4 ETW000                                                                              32  0.034668
    4 ETW000  [dev trc     ,00000]  Library 'dboraslib.dll' loaded                        12  0.034680
    4 ETW000  [dev trc     ,00000]  function DbSlExpFuns loaded from library dboraslib.dll
    4 ETW000                                                                              19  0.034699
    4 ETW000  [dev trc     ,00000]  Version of 'dboraslib.dll' is "700.08", patchlevel (0.73)
    4 ETW000                                                                           17051  0.051750
    4 ETW000  [dev trc     ,00000]  function dsql_db_init loaded from library dboraslib.dll
    4 ETW000                                                                              22  0.051772
    4 ETW000  [dev trc     ,00000]  function dbdd_exp_funs loaded from library dboraslib.dll
    4 ETW000                                                                              25  0.051797
    4 ETW000  [dev trc     ,00000]  New connection 0 created                              21  0.051818
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = -000000001 state = DISCONNECTED, perm = YES, reco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              28  0.051846
    4 ETW000  [dev trc     ,00000]  db_con_connect (con_name=R/3)                         18  0.051864
    4 ETW000  [dev trc     ,00000]  find_con_by_name found the following connection for reuse:
    4 ETW000                                                                              18  0.051882
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              24  0.051906
    4 ETW000  [dev trc     ,00000]  CLIENT_ORACLE_HOME is not set as environment variable or
    4 ETW000                        DIR_CLIENT_ORAHOME is not set as profile parameter.
    4 ETW000                          assuming using instant client with unspecified location.
    4 ETW000                                                                            1887  0.053793
    4 ETW000  [dev trc     ,00000]  Oracle Client Version: '10.2.0.1.0'                39929  0.093722
    4 ETW000  [dev trc     ,00000]  -->oci_initialize (con_hdl=0)                         29  0.093751
    4 ETW000  [dev trc     ,00000]  Client NLS settings: AMERICAN_AMERICA.UTF8          2402  0.096153
    4 ETW000  [dev trc     ,00000]  Logon as OPS$-user to get SAPSR3's password           30  0.096183
    4 ETW000  [dev trc     ,00000]  Connecting as /@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    4 ETW000                                                                              25  0.096208
    4 ETW000  [dev trc     ,00000]  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    4 ETW000                                                                             575  0.096783
    4 ETW000  [dev trc     ,00000]    0 UTF8                                                      1   0243DD48   0244327C   02442B04
    4 ETW000                                                                             116  0.096899
    4 ETW000  [dev trc     ,00000]  Allocating service context handle for con_hdl=0     9004  0.105903
    4 ETW000  [dev trc     ,00000]  Allocating server context handle                      18  0.105921
    4 ETW000  [dev trc     ,00000]  Attaching to DB Server EC6 (con_hdl=0,svchp=02442A50,svrhp=024542C4)
    4 ETW000                                                                              45  0.105966
    4 ETW000  [dev trc     ,00000]  Thu Jul 10 01:07:47 2008                         71710744  71.816710
    4 ETW000  [dev trc     ,00000]  Assigning server context 024542C4 to service context 02442A50
    4 ETW000                                                                              48  71.816758
    4 ETW000  [dev trc     ,00000]  Allocating user session handle                        53  71.816811
    4 ETW000  [dev trc     ,00000]  Starting user session (con_hdl=0,svchp=02442A50,srvhp=024542C4,usrhp=0248F930)
    4 ETW000                                                                              55  71.816866
    4 ETW000  [dboci.c     ,00000]  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    4 ETW000                                                                           38748  71.855614
    4 ETW000  [dev trc     ,00000]  server_detach(con_hdl=0,stale=1,svrhp=024542C4)       15  71.855629
    4 ETW000  [dev trc     ,00000]  Detaching from DB Server (con_hdl=0,svchp=02442A50,srvhp=024542C4)
    4 ETW000                                                                              22  71.855651
    4 ETW000  [dev trc     ,00000]  Deallocating server context handle 024542C4          941  71.856592
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => CONNECT failed with sql error '1034'
    4 ETW000                                                                              56  71.856648
    4 ETW000  [dev trc     ,00000]  Try to connect with default password                 119  71.856767
    4 ETW000  [dev trc     ,00000]  Connecting as SAPSR3/<pwd>@EC6 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    4 ETW000                                                                              21  71.856788
    4 ETW000  [dev trc     ,00000]  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    4 ETW000                                                                              23  71.856811
    4 ETW000  [dev trc     ,00000]    0 UTF8                                                      1   0243DD48   0244327C   02442B04
    4 ETW000                                                                              24  71.856835
    4 ETW000  [dev trc     ,00000]  Allocating server context handle                      12  71.856847
    4 ETW000  [dev trc     ,00000]  Attaching to DB Server EC6 (con_hdl=0,svchp=02442A50,svrhp=024542C4)
    4 ETW000                                                                              36  71.856883
    4 ETW000  [dev trc     ,00000]  Thu Jul 10 01:07:48 2008                           11514  71.868397
    4 ETW000  [dev trc     ,00000]  Assigning server context 024542C4 to service context 02442A50
    4 ETW000                                                                              31  71.868428
    4 ETW000  [dev trc     ,00000]  Assigning username to user session 0248F930           17  71.868445
    4 ETW000  [dev trc     ,00000]  Assigning password to user session 0248F930           23  71.868468
    4 ETW000  [dev trc     ,00000]  Starting user session (con_hdl=0,svchp=02442A50,srvhp=024542C4,usrhp=0248F930)
    4 ETW000                                                                              22  71.868490
    4 ETW000  [dboci.c     ,00000]  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    4 ETW000                                                                           30319  71.898809
    4 ETW000  [dev trc     ,00000]  server_detach(con_hdl=0,stale=1,svrhp=024542C4)       15  71.898824
    4 ETW000  [dev trc     ,00000]  Detaching from DB Server (con_hdl=0,svchp=02442A50,srvhp=024542C4)
    4 ETW000                                                                              31  71.898855
    4 ETW000  [dev trc     ,00000]  Deallocating server context handle 024542C4          927  71.899782
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => CONNECT failed with sql error '1034'
    4 ETW000                                                                              41  71.899823
    4 ETW000  [dblink      ,00431]  ***LOG BY2=>sql error 1034   performing CON [dblink#3 @ 431]
    4 ETW000                                                                            7115  71.906938
    4 ETW000  [dblink      ,00431]  ***LOG BY0=>ORA-01034: ORACLE not available           20  71.906958
    4 ETW000                        ORA-27101: shared memory realm does not exist [dblink#3 @ 431]
    2EETW169 no connect possible: "DBMS = ORACLE                           --- dbs_ora_tnsname = 'EC6'"
    Edited by: moazam hai on Jul 9, 2008 9:40 PM

  • Connect to database failed,rc=-10709 Connection failed (RTE:Database name)

    Hi gurues, I'm facing this issue with an IDES on MaxDB with Windows.
    System was up and running until someone tries to make an upgrade of the kernel. Since then we can not start our system. we tried to rollback kernel release to the previous one but it didn't work.
    When we start our system from MMC console we can see all process in green but work processes are in RUN state and after a few minutes they goes down with the following error
    trc file: "dev_w0", trc level: 1, release: "701"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Mon May 16 23:57:31 2011
    B  create_con (con_name=R/3)
    B  Loading DB library '
    sirillium1\sapmnt\SED\SYS\exe\uc\NTAMD64\dbsdbslib.dll' ...
    B  Library '
    sirillium1\sapmnt\SED\SYS\exe\uc\NTAMD64\dbsdbslib.dll' loaded
    B  Version of '
    sirillium1\sapmnt\SED\SYS\exe\uc\NTAMD64\dbsdbslib.dll' is "700.08", patchlevel (0.24)
    B  New connection 0 created
    M sysno      00
    M sid        SED
    M systemid   562 (PC with Windows NT)
    M relno      7010
    M patchlevel 0
    M patchno    32
    M intno      20020600
    M make:      multithreaded, Unicode, 64 bit, optimized
    M pid        212
    M
    M  kernel runs with dp version 241000(ext=110000) (@(#) DPLIB-INT-VERSION-241000-UC)
    M  length of sys_adm_ext is 576 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 212) [dpxxdisp.c   1348]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)          22784     (1752)
    M  DpShMCreate: sizeof(tm_adm)          5912704     (29416)
    M  DpShMCreate: sizeof(wp_ca_adm)          24064     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    M  DpShMCreate: sizeof(comm_adm)          552080     (1088)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (104)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1864)
    M  DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 000000000B2C0050, size: 6607136)
    M  DpShMCreate: allocated sys_adm at 000000000B2C0050
    M  DpShMCreate: allocated wp_adm at 000000000B2C2270
    M  DpShMCreate: allocated tm_adm_list at 000000000B2C7B70
    M  DpShMCreate: allocated tm_adm at 000000000B2C7BD0
    M  DpShMCreate: allocated wp_ca_adm at 000000000B86B450
    M  DpShMCreate: allocated appc_ca_adm at 000000000B871250
    M  DpShMCreate: allocated comm_adm at 000000000B873190
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 000000000B8F9E20
    M  DpShMCreate: allocated gw_adm at 000000000B8F9EA0
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 000000000B8F9ED0
    M  DpShMCreate: allocated wall_adm at 000000000B8F9EE0

    M Mon May 16 23:57:32 2011
    M  rdisp/queue_size_check_value :  -> off
    M  ThTaskStatus: rdisp/reset_online_during_debug 0
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host sirillium1

    M Mon May 16 23:57:33 2011
    M  calling db_connect ...

    C  DBSDBSLIB : version 700.08, patch 0.024 (Make PL 0.32)
    C  MAXDB shared library (dbsdbslib) patchlevels (last 10)
    C    (0.024) Default value for max. input variables is 2000 (note 655018)
    C    (0.024) Profile parameter to define max. input variables (note 655018)
    C    (0.024) Switch SQLMODE after CREATE INDEX SERIAL (note 1267841)
    C    (0.024) Input parameters for SQL statements increased (note 655018)
    C    (0.018) Create index serial for MaxDB 7.6 (note 1267841)
    C    (0.018) More trace in case of packed to string conversion error (note 1262799)
    C    (0.016) R3trans export aborts with signal 6 (note 1262245)
    C    (0.009) IA64 alignment errors (note 1245982)
    C    (0.007) Support DB-Type 'SAP DB' by UPDSTAT (note 1225668)


    C  Loading SQLDBC client runtime ...
    C  SQLDBC SDK Version : SQLDBC.H  7.6.0    BUILD 007-123-091-175
    C  SQLDBC Library Version : libSQLDBC 7.6.5    BUILD 015-123-202-938
    C  SQLDBC client runtime is MaxDB 7.6.5.015 CL 202938
    C  SQLDBC supports new DECIMAL interface : 0
    C  SQLDBC supports VARIABLE INPUT data   : 1
    C  SQLDBC supports keepAlive indicator   : 0
    C  INFO : SQLOPT= -I 0 -t 0 -S SAPR3
    C  Try to connect (DEFAULT) on connection 0 ...
    C  *** ERROR => Connect to database failed, rc = -10709 (Connection failed (RTE:Database name is missing))
    [dbsdbsql.cpp 137]
    B  ***LOG BV3=> severe db error -10709    ; work process is stopped [dbsh#2 @ 1203] [dbsh    1203 ]
    B  ***LOG BY2=> sql error -10709 performing CON [dblink#3 @ 431] [dblink  0431 ]
    B  ***LOG BY0=> Connection failed (RTE:Database name is missing) [dblink#3 @ 431] [dblink  0431 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1449]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10563]

    M  Info for wp 0

    M    pid = 212
    M    severity = 0
    M    status = 0
    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source =
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    attachedVm = no VM

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sirillium1_SED_00 on host sirillium1 (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Mon May 16 23:57:33 2011
    M  *  RELEASE     701
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10783
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >BtcCallLgCl< for event BEFORE_DUMP
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   723]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  261]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 212) [dpnttool.c   334]
    We check several entries on this SDN site, and look for a lot of notes on the marketplace, and they always are related to default user in xuser files, but our xuser list output is ok. We have a DEFAULT connection to SAPSID user, a DBM connection to CONTROL user and a USERDBA connection.
    XUSER Entry  1
    Key         :DEFAULT          
    Username    :SAPSID                                                         
    UsernameUCS2:S.A.P.S.E.D. . . . . . . . . . . . . . . . . . . . . . . . . . .
    Password    :?????????
    PasswordUCS2:?????????
    Dbname      :SID              
    Nodename    :server1                                                     
    Sqlmode     :SAPR3  
    Cachelimit  :-1
    Timeout    
    Isolation  
    Charset     :<unspecified>    
    XUSER Entry  2
    Key         :c                
    Username    :CONTROL                                                        
    UsernameUCS2:C.O.N.T.R.O.L. . . . . . . . . . . . . . . . . . . . . . . . . .
    Password    :?????????
    PasswordUCS2:?????????
    Dbname      :SID              
    Nodename    :server1                                                     
    Sqlmode     :INTERNAL
    Cachelimit  :-1
    Timeout     :-1
    Isolation   :-1
    Charset     :<unspecified>    
    XUSER Entry  3
    Key         :c_J2EE           
    Username    :CONTROL                                                        
    UsernameUCS2:C.O.N.T.R.O.L. . . . . . . . . . . . . . . . . . . . . . . . . .
    Password    :?????????
    PasswordUCS2:?????????
    Dbname      :SID              
    Nodename    :server1                                                     
    Sqlmode     :SAPR3  
    Cachelimit  :-1
    Timeout    
    Isolation  
    Charset     :<unspecified>    
    XUSER Entry  4
    Key         :w                
    Username    :SUPERDBA                                                       
    UsernameUCS2:S.U.P.E.R.D.B.A. . . . . . . . . . . . . . . . . . . . . . . . .
    Password    :?????????
    PasswordUCS2:?????????
    Dbname      :SID              
    Nodename    :server1                                                     
    Sqlmode     :INTERNAL
    Cachelimit  :-1
    Timeout     :-1
    Isolation   :-1
    Charset     :<unspecified>    
    Any idea? we are out of ideas at this moment.
    Regards
    Edited by: Gustavo Goicochea on May 17, 2011 6:37 PM

    Natalia, this system was not resored nor copied, it was up and running before kernel update. We did some of the tests you said and someothers, here are some outputs.
    We update kernel to release 142
    R3trans -d and -x exit with (all with user SIDADM)
    SVERS table does exist and belongs to SAPSID
    dbmcli on SID>sql_execute select * from domain.tables where tablename='SVERS'
    OK
    END
    'SAPSID';'SAPSID';'SVERS';'';'TABLE';'TABLE';'20100406';'00054637';'20100406';'00054637';'20100406';'00054638';'NO';(null);20000;(null);x'0000000000004842';'NO';'NO';'YES';'NO';(null)
    Why it still says that SVERS table does not exist and SQL error 942?
    C  Now I'm connected to SAP DB
    C  00: server1-SID, since=20110518015619, ABAP= <unknown> (0)
    B  Connection 0 opened (DBSL handle 0)
    C  *** ERROR =>   prepare() of C_0000, rc=1, rcSQL=-942 (POS(28) Unknown table name:SVERS) [
    dbsdbsql.cpp 1604]
    C  *** ERROR => SQL PREPARE on connection 0, rc=-942 (POS(28) Unknown table name:SVERS) [dbslsdb.cpp  7253]
    C sc_p=000000000CFAECC0,no=0,idc_p=0000000000000000,con=0,act=0,slen=34,smax=256,#vars=0,stmt=0000000002EA0AF0,table=SVERS                        
    C  SELECT VERSION INTO ? FROM SVERS  ;
    B  ***LOG BZA=> table SVERS      does not exist on database            [dblink#4 @ 1301] [dblink  1301 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 004096) [thxxhead.c   1515]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10824]

    Users seem to be ok
    dbmcli on SID>sql_execute SELECT username, usermode FROM users
    OK
    END
    'CONTROL';'ADMIN'
    'SUPERDBA';'SYSDBA'
    'SAPSID';'DBA'
    'SAPR3';'DBA'
    User SAPR3 does not have anything on database
    dbmcli on SID>sql_execute select * from domain.tables where owner='SAPR3'
    ERR
    -24988,ERR_SQL: SQL error
    100,Row not found
    Any idea?
    regards

  • CC&B not able to connect the database

    I have Welogic with Oracle CC&B 2.3.1 Installed on my local laptop.
    I have local database also in my laptop (oracle 11g). While doing spl start I am able to access CC&B with weblogic using local database.
    But when in configureEnv.cmd I changed database configuration to other database which is located on Unix box
    My Laptop have 32-bit window 7.
    In ConfigureEnv i gave all credentials of other database to which I am trying to connect. But I am facing below issue.
    E:\BEA\jdk150_15
    JAVA Memory arguments: -Xms1024m -Xmx1024m -XX:PermSize=300m
    WLS Start Mode=Development
    CLASSPATH=E:\BEA\wlserver_10.0\samples\server\examples\build\serverclasses;E:\BEA\patch_wss110\profiles\default\sys_manifest_classpath\weblogic_patch.jar;E:\BEA\patch_wlw1021\profiles\default\sys_manifest_classpath\weblogic_patch.jar;E:\BEA\patch_wls1002\profiles\default\sys_manifest_classpath\weblogic_patch.jar;E:\BEA\patch_cie640\profiles\default\sys_manifest_classpath\weblogic_patch.jar;E:\BEA\jdk150_15\lib\tools.jar;E:\BEA\wlserver_10.0\server\lib\weblogic_sp.jar;E:\BEA\wlserver_10.0\server\lib\weblogic.jar;E:\BEA\modules\features\weblogic.server.modules_10.0.2.0.jar;E:\BEA\modules\features\com.bea.cie.common-plugin.launch_2.1.2.0.jar;E:\BEA\wlserver_10.0\server\lib\webservices.jar;E:\BEA\modules\org.apache.ant_1.6.5/lib/ant-all.jar;E:\BEA\modules\net.sf.antcontrib_1.0b2.0/lib/ant-contrib.jar;;E:\BEA\wlserver_10.0\common\eval\pointbase\lib\pbembedded51.jar;E:\BEA\wlserver_10.0\common\eval\pointbase\lib\pbupgrade51.jar;E:\BEA\wlserver_10.0\common\eval\pointbase\lib\pbclient51.jar;E
    :\BEA\wlserver_10.0\server\lib\xqrl.jar;;;E:\SPL\CCBDEV\splapp\standalone\lib\xalan-2.7.0.jar;E:\SPL\CCBDEV\splapp\standalone\lib\serializer-2.7.0.jar;E:\SPL\CCBDEV\splapp\standalone\lib\antlr-2.7.6.jar
    PATH=E:\BEA\patch_wss110\profiles\default\native;E:\BEA\patch_wlw1021\profiles\default\native;E:\BEA\patch_wls1002\profiles\default\native;E:\BEA\patch_cie640\profiles\default\native;E:\BEA\wlserver_10.0\server\native\win\32;E:\BEA\wlserver_10.0\server\bin;E:\BEA\modules\org.apache.ant_1.6.5\bin;E:\BEA\jdk150_15\jre\bin;E:\BEA\jdk150_15\bin;E:\SPL\MicroFocus\Server5.1\Bin;E:\SPL\CCBDEV\runtime;E:\SPL\CCBDEV\runtime;E:\SPL\CCBDEV\bin;E:\SPL\CCBDEV\product\apache-ant-1.7.0\bin;E:\BEA\jdk150_15\bin;E:\OracleDB11201\Administrator\product\11.2.0\dbhome_1\bin;E:\app\prashant\product\11.2.0\dbhome_1\bin;E:\SPL\javaHome\Java\jdk150_15;E:\BEA\jdk150_15\bin;E:\SPL\MicroFocusServer5.1\Bin;E:\SPL\NIEESDEVL\product\apache-ant-1.7.0\bin;C:\csvn\bin\;C:\csvn\Python25\;C:\product\11.1.0\client_1;c:\perl\site\bin;c:\perl\bin;C:\Program Files\PC Connectivity Solution\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Common Files\Reallu
    sion\CamSuite;C:\Program Files\Toshiba\Bluetooth Toshiba Stack\sys\;C:\Program Files\TortoiseSVN\bin;E:\app\prashant\client_1;E:\app\prashant\client_1\bin;;C:\PROGRA~1\QAS\QuickAddress Pro Web;E:\BEA;E:\BEA\wlserver_10.0;E:\SPL\hibernate-3.2;E:\SPL\NIEESDEV\bin;E:\BEA\wlserver_10.0\server\bin;E:\BEA\jrockit_150_15\bin;E:\BEA\wlserver_10.0\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.5.0_15"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_15-b04)
    Java HotSpot(TM) Client VM (build 1.5.0_15-b04, mixed mode)
    "Starting Weblogic with the following arguments"
    E:\BEA\jdk150_15\bin\java -hotspot -Xms1024m -Xmx1024m -XX:PermSize=300m -da -Dplatform.home=E:\BEA\wlserver_10.0 -Dwls.home=E:\BEA\wlserver_10.0\myserver -Dwli.home=E:\BEA\wlserver_10.0\integration -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=E:\BEA\patch_wss110\profiles\default\sysext_manifest_classpath;E:\BEA\patch_wlw1021\profiles\default\sysext_manifest_classpath;E:\BEA\patch_wls1002\profiles\default\sysext_manifest_classpath;E:\BEA\patch_cie640\profiles\default\sysext_manifest_classpath -Dweblogic.management.username=system -Dweblogic.Name=myserver -Djava.security.policy=E:\BEA\wlserver_10.0\server\lib\weblogic.policy weblogic.Server
    <Oct 12, 2011 10:23:51 AM BST> <Notice> <WebLogicServer> <BEA-000395> <Following extensions directory contents added to the end of the classpath:
    E:\BEA\wlserver_10.0\platform\lib\p13n\p13n-schemas.jar;E:\BEA\wlserver_10.0\platform\lib\p13n\p13n_common.jar;E:\BEA\wlserver_10.0\platform\lib\p13n\p13n_system.jar;E:\BEA\wlserver_10.0\platform\lib\p13n\wlp_services.jar;E:\BEA\wlserver_10.0\platform\lib\wlp\netuix_common.jar;E:\BEA\wlserver_10.0\platform\lib\wlp\netuix_schemas.jar;E:\BEA\wlserver_10.0\platform\lib\wlp\netuix_system.jar;E:\BEA\wlserver_10.0\platform\lib\wlp\wsrp-client.jar;E:\BEA\wlserver_10.0\platform\lib\wlp\wsrp-common.jar>
    <Oct 12, 2011 10:23:54 AM BST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 1.5.0_15-b04 from Sun Microsystems Inc.>
    <Oct 12, 2011 10:23:57 AM BST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.0 MP2 Sat Apr 25 01:45:38 EDT 2009 1213942 >
    <Oct 12, 2011 10:24:03 AM BST> <Info> <WebLogicServer> <BEA-000215> <Loaded License : E:\BEA\license.bea>
    <Oct 12, 2011 10:24:03 AM BST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Oct 12, 2011 10:24:04 AM BST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Oct 12, 2011 10:24:05 AM BST> <Notice> <Log Management> <BEA-170019> <The server log file E:\SPL\CCBDEV\logs\system\myserver.log is opened. All server side log events will be written to this file.>
    <Oct 12, 2011 10:24:15 AM BST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Oct 12, 2011 10:24:30 AM BST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Oct 12, 2011 10:24:30 AM BST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Oct 12, 2011 10:26:42 AM BST> <Warning> <HTTP> <BEA-101304> <Webapp: weblogic.servlet.internal.WebAppServletContext@d90727 - appName: 'SPLWeb', name: '/spl', context-path: '/spl', the role: cisusers defined in web.xml has not been mapped to principals in security-role-assignment in weblogic.xml. Will use the rolename itself as the principal-name.>
    <Oct 12, 2011 10:27:11 AM BST> <Warning> <HTTP> <BEA-101304> <Webapp: weblogic.servlet.internal.WebAppServletContext@10a59d2 - appName: 'SPLWeb', name: '/spl/XAIApp', context-path: '/spl/XAIApp', the role: cisusers defined in web.xml has not been mapped to principals in security-role-assignment in weblogic.xml. Will use the rolename itself as the principal-name.>
    Failed to load servlet Class: org.openspml.v2.transport.RPCRouterServletIgnoring: unable to load class:java.lang.ClassNotFoundException: org.openspml.v2.transport.RPCRouterServlet at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)Failed to load servlet Class: org.openspml.v2.transport.RPCRouterServletIgnoring: unable to load class:java.lang.ClassNotFoundException: org.openspml.v2.transport.RPCRouterServlet at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)INFO: Loaded log4j.properties from external file E:\SPL\CCBDEV\etc\conf\root\WEB-INF\classes\log4j.properties
    INFO: Loaded spl.properties from external file E:\SPL\CCBDEV\etc\conf\root\WEB-INF\classes\spl.properties: {spl.ejbContainer.url=t3://L-156018395:6500, spl.runtime.options.isDevelopmentMode=false, spl.ejbContainer.password=spladmin, spl.runtime.service.extraInstallationServices=CILTINCP, spl.tools.loaded.applications=base,ccb,cm, spl.runtime.socket.file.dir=E:/SPL/CCBDEV/runtime, spl.runtime.cobol.sql.fetchSize=150, spl.runtime.cobol.cobrcall=false, spl.serviceBean.jndi.name=spl/servicebean, spl.ejbContainer.contextFactory=weblogic.jndi.WLInitialContextFactory, spl.runtime.cobol.encoding=UTF8, spl.runtime.cobol.sql.disableQueryCache=false, spl.ejbContainer.user=system, spl.runtime.utf8Database=true, spl.runtime.fusionlook=true, spl.runtime.environ.init.dir=E:/SPL/CCBDEV/etc, spl.runtime.cobol.sql.cache.maxTotalEntries=1000, spl.runtime.oracle.statementCacheSize=300, spl.runtime.cobol.sql.cursoredCache.maxRows=10, spl.runtime.cobol.remote.jvm=false, spl.runtime.sql.highValue=?}
    - 2011-10-12 10:27:16,367 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (shared.context.ApplicationMode) Application set to production mode
    - 2011-10-12 10:27:16,422 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (web.startup.SPLWebStartup) Initializing SPL web application
    - 2011-10-12 10:27:16,694 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (web.dynamicui.TransformServletHelper) Disable UIPage Compression set to false
    - 2011-10-12 10:27:16,908 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (support.context.ContextFactory) Creating lightweight context. This context cannot access Java business objects.
    - 2011-10-12 10:27:16,964 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (support.context.ApplicationContext) Building hibernate configuration
    - 2011-10-12 10:27:17,802 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (support.context.ApplicationContext) Loaded hibernate.properties from external file E:\SPL\CCBDEV\etc\conf\root\WEB-INF\classes\hibernate.properties
    - 2011-10-12 10:27:17,847 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (support.context.ApplicationContext) Adding 0 hibernate mappings
    - 2011-10-12 10:27:18,404 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (support.context.ApplicationContext) Done building hibernate configuration, time 1,440.181 ms
    - 2011-10-12 10:27:18,405 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (support.context.ApplicationContext) Building hibernate session factory
    - 2011-10-12 10:27:18,409 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (hibernate.connection.ConnectionProviderFactory) Initializing connection provider: org.hibernate.connection.C3P0ConnectionProvider
    - 2011-10-12 10:27:18,418 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (hibernate.connection.C3P0ConnectionProvider) C3P0 using driver: oracle.jdbc.driver.OracleDriver at URL: jdbc:oracle:thin:@172.19.84.33:1521:niesdev
    - 2011-10-12 10:27:18,418 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (hibernate.connection.C3P0ConnectionProvider) Connection properties: {user=cisadm, password=****}
    - 2011-10-12 10:27:18,418 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (hibernate.connection.C3P0ConnectionProvider) autocommit mode: false
    - 2011-10-12 10:27:20,856 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (v2.log.MLog) MLog clients using log4j logging.
    - 2011-10-12 10:27:21,437 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (v2.c3p0.C3P0Registry) Initializing c3p0-0.9.1.2 [built 21-May-2007 15:04:56; debug? true; trace: 10]
    - 2011-10-12 10:27:21,567 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (c3p0.impl.AbstractPoolBackedDataSource) Initializing c3p0 pool... com.mchange.v2.c3p0.PoolBackedDataSource@2217200b [ connectionPoolDataSource -> com.mchange.v2.c3p0.WrapperConnectionPoolDataSource@d691d4fd [ acquireIncrement -> 1, acquireRetryAttempts -> 30, acquireRetryDelay -> 1000, autoCommitOnClose -> false, automaticTestTable -> null, breakAfterAcquireFailure -> false, checkoutTimeout -> 0, connectionCustomizerClassName -> null, connectionTesterClassName -> com.mchange.v2.c3p0.impl.DefaultConnectionTester, debugUnreturnedConnectionStackTraces -> false, factoryClassLocation -> null, forceIgnoreUnresolvedTransactions -> false, identityToken -> 1br00b48i1wns8gho21ebz|1c95553, idleConnectionTestPeriod -> 0, initialPoolSize -> 1, maxAdministrativeTaskTime -> 0, maxConnectionAge -> 0, maxIdleTime -> 300, maxIdleTimeExcessConnections -> 0, maxPoolSize -> 150, maxStatement
    s -> 0, maxStatementsPerConnection -> 0, minPoolSize -> 1, nestedDataSource -> com.mchange.v2.c3p0.DriverManagerDataSource@d869ae3f [ description -> null, driverClass -> null, factoryClassLocation -> null, identityToken -> 1br00b48i1wns8gho21ebz|1b5d53a, jdbcUrl -> jdbc:oracle:thin:@172.19.84.33:1521:niesdev, properties -> {user=******, password=******} ], preferredTestQuery -> null, propertyCycle -> 0, testConnectionOnCheckin -> false, testConnectionOnCheckout -> false, unreturnedConnectionTimeout -> 0, usesTraditionalReflectiveProxies -> false; userOverrides: {} ], dataSourceName -> null, factoryClassLocation -> null, identityToken -> 1br00b48i1wns8gho21ebz|1715c20, numHelperThreads -> 3 ]
    - 2011-10-12 10:37:26,348 [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0] WARN (v2.resourcepool.BasicResourcePool) com.mchange.v2.resourcepool.BasicResourcePool$AcquireTask@1b1dd12 -- Acquisition Attempt Failed!!! Clearing pending acquires. While trying to acquire a needed new resource, we failed to succeed more than the maximum number of allowed acquisition attempts (30). Last acquisition attempt exception:
    java.sql.SQLException: Io exception: Software caused connection abort: recv failed
    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:74)
    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:131)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:197)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:261)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:566)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:418)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:508)
    at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:203)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:33)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:510)
    at com.mchange.v2.c3p0.DriverManagerDataSource.getConnection(DriverManagerDataSource.java:134)
    at com.mchange.v2.c3p0.WrapperConnectionPoolDataSource.getPooledConnection(WrapperConnectionPoolDataSource.java:182)
    at com.mchange.v2.c3p0.WrapperConnectionPoolDataSource.getPooledConnection(WrapperConnectionPoolDataSource.java:171)
    at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.acquireResource(C3P0PooledConnectionPool.java:137)
    at com.mchange.v2.resourcepool.BasicResourcePool.doAcquire(BasicResourcePool.java:1014)
    at com.mchange.v2.resourcepool.BasicResourcePool.access$800(BasicResourcePool.java:32)
    at com.mchange.v2.resourcepool.BasicResourcePool$AcquireTask.run(BasicResourcePool.java:1810)
    at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547)
    Caused by: java.net.SocketException: Software caused connection abort: recv failed
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:129)
    at oracle.net.ns.Packet.receive(Packet.java:240)
    at oracle.net.ns.DataPacket.receive(DataPacket.java:92)
    at oracle.net.ns.NetInputStream.getNextPacket(NetInputStream.java:172)
    at oracle.net.ns.NetInputStream.read(NetInputStream.java:117)
    at oracle.net.ns.NetInputStream.read(NetInputStream.java:92)
    at oracle.net.ns.NetInputStream.read(NetInputStream.java:77)
    at oracle.jdbc.driver.T4CMAREngine.unmarshalUB1(T4CMAREngine.java:1034)
    at oracle.jdbc.driver.T4CMAREngine.unmarshalSB1(T4CMAREngine.java:1010)
    at oracle.jdbc.driver.T4C8TTIdty.receive(T4C8TTIdty.java:516)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:332)
    ... 12 more
    - 2011-10-12 10:37:26,348 [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1] WARN (v2.resourcepool.BasicResourcePool) com.mchange.v2.resourcepool.BasicResourcePool$AcquireTask@6dbcef -- Acquisition Attempt Failed!!! Clearing pending acquires. While trying to acquire a needed new resource, we failed to succeed more than the maximum number of allowed acquisition attempts (30). Last acquisition attempt exception:
    java.sql.SQLException: Io exception: Software caused connection abort: recv failed
    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:74)
    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:131)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:197)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:261)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:566)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:418)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:508)
    at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:203)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:33)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:510)
    at com.mchange.v2.c3p0.DriverManagerDataSource.getConnection(DriverManagerDataSource.java:134)
    at com.mchange.v2.c3p0.WrapperConnectionPoolDataSource.getPooledConnection(WrapperConnectionPoolDataSource.java:182)
    at com.mchange.v2.c3p0.WrapperConnectionPoolDataSource.getPooledConnection(WrapperConnectionPoolDataSource.java:171)
    at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.acquireResource(C3P0PooledConnectionPool.java:137)
    at com.mchange.v2.resourcepool.BasicResourcePool.doAcquire(BasicResourcePool.java:1014)
    at com.mchange.v2.resourcepool.BasicResourcePool.access$800(BasicResourcePool.java:32)
    at com.mchange.v2.resourcepool.BasicResourcePool$AcquireTask.run(BasicResourcePool.java:1810)
    at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547)
    Caused by: java.net.SocketException: Software caused connection abort: recv failed
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:129)
    at oracle.net.ns.Packet.receive(Packet.java:240)
    at oracle.net.ns.DataPacket.receive(DataPacket.java:92)
    at oracle.net.ns.NetInputStream.getNextPacket(NetInputStream.java:172)
    at oracle.net.ns.NetInputStream.read(NetInputStream.java:117)
    at oracle.net.ns.NetInputStream.read(NetInputStream.java:92)
    at oracle.net.ns.NetInputStream.read(NetInputStream.java:77)
    at oracle.jdbc.driver.T4CMAREngine.unmarshalUB1(T4CMAREngine.java:1034)
    at oracle.jdbc.driver.T4CMAREngine.unmarshalSB1(T4CMAREngine.java:1010)
    at oracle.jdbc.driver.T4C8TTIdty.receive(T4C8TTIdty.java:516)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:332)
    ... 12 more
    - 2011-10-12 10:37:26,425 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] WARN (hibernate.cfg.SettingsFactory) Could not obtain connection metadata
    java.sql.SQLException: Connections could not be acquired from the underlying database!
    at com.mchange.v2.sql.SqlUtils.toSQLException(SqlUtils.java:106)
    at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool.checkoutPooledConnection(C3P0PooledConnectionPool.java:529)
    at com.mchange.v2.c3p0.impl.AbstractPoolBackedDataSource.getConnection(AbstractPoolBackedDataSource.java:128)
    at org.hibernate.connection.C3P0ConnectionProvider.getConnection(C3P0ConnectionProvider.java:56)
    at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:84)
    at org.hibernate.cfg.Configuration.buildSettingsInternal(Configuration.java:2090)
    at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2086)
    at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1311)
    at com.splwg.base.support.context.ApplicationContext.buildSessionFactory(ApplicationContext.java:188)
    at com.splwg.base.support.context.ContextFactory.buildContext(ContextFactory.java:113)
    at com.splwg.base.support.context.ContextFactory.createLightweightContext(ContextFactory.java:749)
    at com.splwg.base.web.startup.SPLWebStartup.initializeApplicationContext(SPLWebStartup.java:180)
    at com.splwg.base.web.startup.SPLWebStartup.contextInitialized(SPLWebStartup.java:63)
    at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:458)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:168)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1744)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:2918)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:973)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:361)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:117)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:635)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:154)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:80)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:182)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:359)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:196)
    at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:233)
    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:173)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:89)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    Caused by: com.mchange.v2.resourcepool.CannotAcquireResourceException: A ResourcePool could not acquire a resource from its primary factory or source.
    at com.mchange.v2.resourcepool.BasicResourcePool.awaitAvailable(BasicResourcePool.java:1319)
    at com.mchange.v2.resourcepool.BasicResourcePool.prelimCheckoutResource(BasicResourcePool.java:557)
    at com.mchange.v2.resourcepool.BasicResourcePool.checkoutResource(BasicResourcePool.java:477)
    at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool.checkoutPooledConnection(C3P0PooledConnectionPool.java:525)
    ... 46 more
    - 2011-10-12 10:37:26,548 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (hibernate.dialect.Dialect) Using dialect: org.hibernate.dialect.Oracle10gDialect
    - 2011-10-12 10:37:26,736 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (hibernate.transaction.TransactionFactoryFactory) Transaction strategy: org.hibernate.transaction.JDBCTransactionFactory
    - 2011-10-12 10:37:26,751 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (hibernate.transaction.TransactionManagerLookupFactory) No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
    - 2011-10-12 10:37:27,067 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (hibernate.impl.SessionFactoryImpl) building session factory
    - 2011-10-12 10:37:27,129 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (hibernate.impl.SessionFactoryObjectFactory) Not binding factory to JNDI, no JNDI name configured
    - 2011-10-12 10:37:27,193 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (support.context.ApplicationContext) Done building hibernate session factory, time 608,776.565 ms(10 min 8.777 sec)
    Please help me out here.
    Any advice please.
    Regards,
    Techie
    Edited by: 815302 on Oct 12, 2011 2:54 AM

    I tried same with tomcat...
    CC&B 2.3.1 with apache tomcat trying to connect with other database.... getting below error
    java.sql.SQLException: Io exception: Software caused connection abort: recv failed
    Oct 17, 2011 4:44:05 PM org.apache.catalina.core.AprLifecycleListener init
    INFO: The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: E:\SPL\javaHome\Java\jdk1.5.0_21\bin;.;C:\Windows\system32;C:\Windows;E:\SPL\MicroFocus\Server5.1\Bin;E:\SPL\NIEESDEVL\runtime;E:\SPL\javaHome\Java\jdk1.5.0_21\bin;E:\SPL\NIEESDEVL\runtime;E:\SPL\NIEESDEVL\bin;E:\SPL\NIEESDEVL\product\apache-ant-1.7.0\bin;E:\SPL\javaHome\Java\jdk1.5.0_21\bin;E:\DEMODB\product\11.2.0\dbhome_1\bin;E:\SPL\MicroFocusServer5.1\Bin;E:\SPL\NIEESDEVL\product\apache-ant-1.7.0\bin;C:\csvn\bin\;C:\csvn\Python25\;c:\perl\site\bin;c:\perl\bin;C:\Program Files\PC Connectivity Solution\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Common Files\Reallusion\CamSuite;C:\Program Files\Toshiba\Bluetooth Toshiba Stack\sys\;C:\Program Files\TortoiseSVN\bin;E:\app\prashant\client_1\bin;;C:\PROGRA~1\QAS\QuickAddress Pro Web;E:\BEA;E:\BEA\wlserver_10.0;E:\SPL\hibernate-3.2;E:\SPL\NIEESDEV\bin;E:\BEA\wlserver_10.0\server\bin;C:\Program Files\Microsoft SQL Server\90\Tools\binn\
    Oct 17, 2011 4:44:05 PM org.apache.coyote.http11.Http11Protocol init
    INFO: Initializing Coyote HTTP/1.1 on http-6500
    Oct 17, 2011 4:44:05 PM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 2005 ms
    Oct 17, 2011 4:44:06 PM org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    Oct 17, 2011 4:44:06 PM org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/6.0.13
    INFO: Loaded log4j.properties from external file E:\SPL\NIEESDEVL\etc\conf\XAIApp\WEB-INF\classes\log4j.properties
    INFO: Loaded spl.properties from external file E:\SPL\NIEESDEVL\etc\conf\XAIApp\WEB-INF\classes\spl.properties: {spl.runtime.options.isDevelopmentMode=true, spl.runtime.service.extraInstallationServices=CILTINCP, spl.runtime.cobol.remote.jvmcommand=E:/SPL/javaHome/Java/jdk1.5.0_21/bin/java.exe, spl.tools.loaded.applications=base,ccb,cm, spl.runtime.cobol.remote.jvmcount=2, spl.runtime.socket.file.dir=E:/SPL/NIEESDEVL/runtime, spl.runtime.cobol.sql.fetchSize=150, spl.runtime.cobol.cobrcall=false, spl.runtime.initialize.waittime=90, spl.runtime.cobol.encoding=UTF8, spl.runtime.cobol.sql.disableQueryCache=false, spl.runtime.utf8Database=true, spl.runtime.fusionlook=true, spl.runtime.cobol.remote.jvmoptions=-Xmx1024m -server -Dfile.encoding=ISO8859_1 -cp E:/SPL/NIEESDEVL/splapp/standalone/config;E:/SPL/NIEESDEVL/splapp/standalone/lib/activation_api-1.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/cm.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/coherence-3.5.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/coherence-work-3.5.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commonj-3.5.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-beanutils-core-1.7.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-cli-1.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-codec-1.3.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-collections-2.1.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-fileupload-1.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-httpclient-2.0.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-io-1.3.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-lang-2.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-logging-1.0.4.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/concurrent-1.3.4.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/dom4j-1.6.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/e2Vault.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/hibernate-3.2.7.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/icu4j-3.6.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/jaxen-1.1.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/jcip-annotations.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/jstl-api-1.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/jta.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/jtds-1.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/log4j-1.2.15.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/mail_api-1.4.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/mfcobol.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/ojdbc5-11.1.0.7.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/orai18n-collation.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/orai18n-mapping.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/orai18n-utility.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/orai18n.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/serializer-2.7.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/spl-base-2.2.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/spl-ccb-2.3.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/spl-servicebeaninterface-2.2.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/spl-serviceclient-2.2.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/spl-shared-2.2.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/spl-spml-2.2.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/spl-web-2.2.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/spl-xai-2.2.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/stax-api-1.0.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/stax2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/staxmate-0.9.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/wstx-asl-3.2.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/xalan-2.7.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/xmlparserv2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/xquery.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/xstream-1.2.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/yjp-controller-api-redist.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/geronimo-spec-j2ee-1.4-rc4.jar, spl.runtime.environ.init.dir=E:/SPL/NIEESDEVL/etc, spl.runtime.cobol.sql.cache.maxTotalEntries=1000, spl.runtime.oracle.statementCacheSize=300, spl.runtime.cobol.remote.rmiStartPort=6503, spl.runtime.cobol.sql.cursoredCache.maxRows=10, spl.runtime.cobol.remote.jvm=true, spl.runtime.cobol.remote.lib.prefix=xaiapp, spl.runtime.sql.highValue=?}
    - 2011-10-17 16:44:12,312 [main] INFO (shared.context.ApplicationMode) Application set to development mode
    - 2011-10-17 16:44:12,325 [main] INFO (web.dynamicui.TransformServletHelper) Disable UIPage Compression set to false
    - 2011-10-17 16:44:12,349 [main] WARN (web.common.ServletHelper) Web app env variable maxAge not defined; defaulting to 1 sec
    - 2011-10-17 16:44:12,356 [main] INFO (web.startup.DeferredXAIStartup) Starting thread for deferred XAI application context initialization
    - 2011-10-17 16:44:12,371 [Thread-1] INFO (web.startup.DeferredXAIStartup) Waiting 90 seconds before starting XAI application context initialization
    INFO: Loaded log4j.properties from external file E:\SPL\NIEESDEVL\etc\conf\root\WEB-INF\classes\log4j.properties
    INFO: Loaded spl.properties from external file E:\SPL\NIEESDEVL\etc\conf\root\WEB-INF\classes\spl.properties: {spl.runtime.options.isDevelopmentMode=true, spl.runtime.service.extraInstallationServices=CILTINCP, spl.runtime.cobol.remote.jvmcommand=E:/SPL/javaHome/Java/jdk1.5.0_21/bin/java.exe, spl.tools.loaded.applications=base,ccb,cm, spl.runtime.cobol.remote.jvmcount=2, spl.runtime.socket.file.dir=E:/SPL/NIEESDEVL/runtime, spl.runtime.cobol.sql.fetchSize=150, spl.runtime.cobol.cobrcall=false, spl.runtime.cobol.encoding=UTF8, spl.runtime.cobol.sql.disableQueryCache=false, com.splwg.grid.online.enabled=false, spl.runtime.utf8Database=true, spl.runtime.fusionlook=true, spl.runtime.cobol.remote.jvmoptions=-Xmx1024m -server -Dfile.encoding=ISO8859_1 -cp E:/SPL/NIEESDEVL/splapp/standalone/config;E:/SPL/NIEESDEVL/splapp/standalone/lib/activation_api-1.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/cm.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/coherence-3.5.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/coherence-work-3.5.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commonj-3.5.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-beanutils-core-1.7.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-cli-1.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-codec-1.3.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-collections-2.1.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-fileupload-1.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-httpclient-2.0.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-io-1.3.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-lang-2.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/commons-logging-1.0.4.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/concurrent-1.3.4.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/dom4j-1.6.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/e2Vault.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/hibernate-3.2.7.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/icu4j-3.6.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/jaxen-1.1.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/jcip-annotations.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/jstl-api-1.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/jta.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/jtds-1.2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/log4j-1.2.15.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/mail_api-1.4.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/mfcobol.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/ojdbc5-11.1.0.7.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/orai18n-collation.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/orai18n-mapping.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/orai18n-utility.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/orai18n.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/serializer-2.7.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/spl-base-2.2.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/spl-ccb-2.3.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/spl-servicebeaninterface-2.2.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/spl-serviceclient-2.2.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/spl-shared-2.2.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/spl-spml-2.2.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/spl-web-2.2.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/spl-xai-2.2.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/stax-api-1.0.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/stax2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/staxmate-0.9.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/wstx-asl-3.2.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/xalan-2.7.0.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/xmlparserv2.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/xquery.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/xstream-1.2.1.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/yjp-controller-api-redist.jar;E:/SPL/NIEESDEVL/splapp/standalone/lib/geronimo-spec-j2ee-1.4-rc4.jar, spl.runtime.environ.init.dir=E:/SPL/NIEESDEVL/etc, com.splwg.grid.distThreadPool.threads.DEFAULT=5, spl.runtime.cobol.sql.cache.maxTotalEntries=1000, spl.runtime.oracle.statementCacheSize=300, spl.runtime.cobol.remote.rmiStartPort=6503, spl.runtime.cobol.sql.cursoredCache.maxRows=10, spl.runtime.cobol.remote.jvm=true, com.splwg.batch.scheduler.daemon=false, spl.runtime.sql.highValue=?}
    - 2011-10-17 16:44:18,459 [main] INFO (shared.context.ApplicationMode) Application set to development mode
    - 2011-10-17 16:44:18,473 [main] INFO (web.startup.SPLWebStartup) Initializing SPL web application
    - 2011-10-17 16:44:18,477 [main] INFO (web.dynamicui.TransformServletHelper) Disable UIPage Compression set to false
    - 2011-10-17 16:44:18,522 [main] INFO (support.context.ContextFactory) Creating default context
    - 2011-10-17 16:44:39,053 [main] ERROR (support.context.ContextFactory) Error getting connection to database jdbc:oracle:thin:@172.19.84.33:1521:niesdev, with user cisadm and driver oracle.jdbc.driver.OracleDriver
    java.sql.SQLException: Io exception: Software caused connection abort: recv failed
    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:74)
    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:131)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:197)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:261)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:566)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:418)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:508)
    at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:203)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:33)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:510)
    at java.sql.DriverManager.getConnection(DriverManager.java:525)
    at java.sql.DriverManager.getConnection(DriverManager.java:171)
    at com.splwg.base.support.context.ContextFactory.getConnection(ContextFactory.java:134)
    at com.splwg.base.support.context.ContextFactory.getBaseLookupInterfaceNames(ContextFactory.java:143)
    at com.splwg.base.support.context.ContextFactory.buildContext(ContextFactory.java:102)
    at com.splwg.base.support.context.ContextFactory.buildContext(ContextFactory.java:90)
    at com.splwg.base.support.context.ContextFactory.createDefaultContext(ContextFactory.java:498)
    at com.splwg.base.web.startup.SPLWebStartup.initializeApplicationContext(SPLWebStartup.java:178)
    at com.splwg.base.web.startup.SPLWebStartup.contextInitialized(SPLWebStartup.java:63)
    at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3827)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:4334)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
    at org.apache.catalina.core.StandardService.start(StandardService.java:516)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:566)
    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:592)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
    Caused by: java.net.SocketException: Software caused connection abort: recv failed
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:129)
    at oracle.net.ns.Packet.receive(Packet.java:240)
    at oracle.net.ns.DataPacket.receive(DataPacket.java:92)
    at oracle.net.ns.NetInputStream.getNextPacket(NetInputStream.java:172)
    at oracle.net.ns.NetInputStream.read(NetInputStream.java:117)
    at oracle.net.ns.NetInputStream.read(NetInputStream.java:92)
    at oracle.net.ns.NetInputStream.read(NetInputStream.java:77)
    at oracle.jdbc.driver.T4CMAREngine.unmarshalUB1(T4CMAREngine.java:1034)
    at oracle.jdbc.driver.T4CMAREngine.unmarshalSB1(T4CMAREngine.java:1010)
    at oracle.jdbc.driver.T4C8TTIdty.receive(T4C8TTIdty.java:516)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:332)
    ... 28 more
    Oct 17, 2011 4:44:39 PM org.apache.catalina.core.StandardContext start
    SEVERE: Error listenerStart
    Oct 17, 2011 4:44:39 PM org.apache.catalina.core.StandardContext start
    SEVERE: Context [] startup failed due to previous errors
    - 2011-10-17 16:44:39,143 [main] INFO (web.startup.SPLWebStartup) Shutting Down the JMX Connectors...
    - 2011-10-17 16:44:39,161 [main] INFO (web.startup.SPLWebStartup) JMX Connectors shutdown successfully
    - 2011-10-17 16:44:39,162 [main] INFO (web.startup.SPLWebStartup) Shutting Down the Application Context...
    - 2011-10-17 16:44:39,183 [main] INFO (web.startup.SPLWebStartup) Application Context shutdown successfully
    Oct 17, 2011 4:44:39 PM org.apache.coyote.http11.Http11Protocol start
    INFO: Starting Coyote HTTP/1.1 on http-6500
    Oct 17, 2011 4:44:39 PM org.apache.jk.common.ChannelSocket init
    INFO: JK: ajp13 listening on /0.0.0.0:8009
    Oct 17, 2011 4:44:39 PM org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/29 config=null
    Oct 17, 2011 4:44:39 PM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 34150 ms

Maybe you are looking for

  • How can I change the default application for a content type?

    Running a version of Linux, the default application for PDF files is "Use Document Viewer (default)", which appears to be /usr/bin/evince. I'd much prefer to use /usr/bin/okular; how can I change the default. This question is NOT about how to change

  • Do 2nd Harddrives have Verifiable/Repairable Permissions?

    Hello all, When running Disk Utility, I cannot choose to verify/repair permissions on my 2nd, non-OS harddrive, even after verifying the disk. The HD is an internal SATA drive, just like the OS disk. I thought (still think?) this was normal, but then

  • Debugging BSP page

    I want to debug a bsp application (Z app), i am logged in remote desktop, ecc 6.0, internet explorer: 7 i have tried to test page directly from se80 and also from URL. I have tried setting external break-point, activating debugging for user..........

  • Framemaker file disappeared during TOC creation

    During generating/updating a TOC file in a book file one of the content file is gone/removed/disappeared. Although the contents of the file is correctly inserted in the TOC, the source file (.fm) is no longer traceable. Restoring not possible, so sig

  • Error preloading servlet - javax.servlet.UnavailableException

    Hello All, I'm getting below message while running application on Oracle Application Server 10g. I have struts.jar under WEB-INF/lib folder in EAR file. Really appreciate any suggestions. Thanks REPORTAPP: Error preloading servlet javax.servlet.Unava