Loosing datasource connection in a server thread

Hi,
In a backing bean I start a long term thread that uses the datasource connection taken from application module.
Everything works fine but after a period of time between one and two hours the connection is lost and server throws a
<BEA-001112> <Test "SELECT 1 FROM DUAL" set up for pool "AEE2010DS" failed with exception: "java.sql.SQLException: Connection Closed".>
Is there any way to stop the server from closing the connection that is used in a separate thread, programmatically or using configuration?
Any comment will be helpful,
Thanks

That looks like something external is killing the connection, either the DBMS or a firewall.

Similar Messages

  • P4 Connection and Dispatcher/Server Threads...

    Hi,
    I'd like to know what would be the resource impacts of having P4 connection opened on a server in term of theads.
    Here is the scenario:
      - A stand alone java application starts on a remote server
      - It connects to the Nw04s J2ee Engine using P4 either via the Message Server or the Dispatcher.
      - It calls an Engine Service passing a its remote interface.
      - The service binds it to the J2ee Engine JNDI.
      - The call returns
    In the end we have a stub pointing to the remove VM bound in the JNDI tree of the J2ee engine.
    What does this imply in term of threads in keeping this connection alive? Does P4 books some threads to send and receive requests in the dispatcher?
    The problem is that I have around 30 remote clients bound to the JNDI tree and this consumes lots of threads in the dispatcher (more than 60.)
    And when I disconnect them, the dispatcher thread pool goes back to a normal value.
    Thanks in advance,
    Serge.

    Hi,
    After having asked to the P4 team (many thanks to Atanassov Ivan), if a remote VM connects to the SAP J2ee Engine using P4, it reaches it via the dispatcher and a System thread is reserved in the disptacher to handle this connection.
    This System thread is released only if the connection is closed.
    It's closed if the remote VM calls the P4Broker's close() method or if the remote VM crashes.
    Regards,
    Serge.

  • Datasource connection in Weblogic server using JDeveloper

    Hi,
    I am using JDeveloper 11g Release 2 (11.1.2.1.0) and WebLogic Server Version: 10.3.5.0.
    We have a project (ant build.xml) with some Application Modules.
    In JDeveloper we did the following to create a connection to datasource in the WebLogic:
    1- Created an Application Server Connection (called ActivityModuleConnection) testing this gives success so we have connection to WebLogic.
    2- Created a database connection (called ActivityModuleCore) and test goes well here as well.
    3- In WebLogic Server created a datasource (called jdbc/ActivityModuleCordeDS).
    And here are the bc4j.xcfg file that we have:
    <AppModuleConfig DeployPlatform="EjbWls" oracle.jbo.usemds="false" jbo.pers.max.active.nodes="-1" oracle.adfm.usemds="false" name="J2EEDS" ApplicationName="dv.framework.activity.model.ActivityModule">
    <Security AppModuleJndiName="dv.framework.activity.model.ActivityModule"/>
    <Custom JDBCDataSource="java:comp/env/jdbc/VeraActivityModuleCoreDS" AppServerConnectionName="ActivityModuleConnection"/>
    </AppModuleConfig>
    <ConnectionDefinition name="ActivityModuleConnection">
    <Entry value="7002" name="JMX_CONNECTOR_SSL_PORT"/>
    <Entry value="WebLogic_10.x" name="ConnectionType"/>
    <Entry value="weblogic" name="user"/>
    <Entry value="base_domain" name="weblogic.domain"/>
    <Entry value="localhost" name="JMX_CONNECTOR_HOST"/>
    <Entry value="false" name="USE_SSL"/>
    <Entry value="7001" name="JMX_CONNECTOR_PORT"/>
    <SecureEntry name="password">
    <XXXXXXXX>
    </SecureEntry>
    <Entry name="DeployPassword" value="true"/>
    </ConnectionDefinition>
    </BC4JConfig>
    But when running the application it seems that it can not find the datasource:
    oracle.jbo.ConfigException: JBO-33003: The connection file ActivityModuleConnection has not been defined.
    at oracle.jbo.client.Configuration.initializeFromConnectionName(Configuration.java:1255)
    at oracle.jbo.client.Configuration.getConfiguration(Configuration.java:648)
    at oracle.jbo.common.ampool.PoolMgr.loadConfiguration(PoolMgr.java:605)
    at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:332)
    Could you help please? what am I doing wrong here?
    I also tried with
    JDBCDataSource="jdbc/VeraActivityModuleCoreDS" but no luck.
    Best Regards
    Keyvan

    Hi Johan and thanks for comments,
    Now I made some changes and it looks like :
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BC4JConfig xmlns="http://xmlns.oracle.com/bc4j/configuration" version="11.1">
    <AppModuleConfigBag ApplicationName="dv.framework.activity.model.ActivityModule">
    <AppModuleConfig name="J2EEDS" DeployPlatform="LOCAL" jbo.pers.max.active.nodes="-1" java.naming.factory.initial="oracle.jbo.common.JboInitialContextFactory" ApplicationName="dv.framework.activity.model.ActivityModule" oracle.jbo.usemds="false" oracle.adfm.usemds="false">
    <Security AppModuleJndiName="dv.framework.activity.model.ActivityModule"/>
    <Custom JDBCDataSource="jdbc/VeraActivityModuleCoreDS"/>
    </AppModuleConfig>
    </AppModuleConfigBag>
    </BC4JConfig>
    But the error message is:
    oracle.jbo.DMLException: JBO-27200: JNDI-fel. couldn't search for datasource in the context jdbc/VeraActivityModuleCoreDS
         at oracle.jbo.server.DBTransactionImpl.lookupDataSource(DBTransactionImpl.java:1476)
         at oracle.jbo.server.DBTransactionImpl2.connectToDataSource(DBTransactionImpl2.java:332)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.connect(DefaultConnectionStrategy.java:203)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolConnect(ApplicationPoolMessageHandler.java:592)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolMessage(ApplicationPoolMessageHandler.java:422)
         at oracle.jbo.server.ApplicationModuleImpl.doPoolMessage(ApplicationModuleImpl.java:8995)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.sendPoolMessage(ApplicationPoolImpl.java:4603)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2533)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2343)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:3242)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:572)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:505)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:500)
    Best Regards
    Keyvan
    Edited by: 916815 on 2012-mar-24 08:55

  • Oracle BI saw server is loosing his connection randomly

    Hi all,
    For an unknown reason the Oracle BI saw server is loosing his connection randomly (on all the BI Servers) and we have to run this script ./run-saw.sh again to solve the issue. Any idea why? :
    Snapshot from the /mnt/preproduccion/oracle/oraclebi/OracleBIData/web/log/javahost.out.log logfile :
    Sep 16, 2009 11:20:21 AM MessageProcessorImpl processMessage
    WARNING: Unexpected exception. Connection will be closed
    java.io.EOFException
         at com.siebel.analytics.web.sawconnect.sawprotocol.SAWProtocol.readInt(SAWProtocol.java:167)
         at com.siebel.analytics.javahost.MessageProcessorImpl.processMessage(MessageProcessorImpl.java:133)
         at com.siebel.analytics.javahost.Listener$Job.run(Listener.java:223)
         at com.siebel.analytics.javahost.standalone.SAJobManagerImpl.threadMain(SAJobManagerImpl.java:205)
         at com.siebel.analytics.javahost.standalone.SAJobManagerImpl$1.run(SAJobManagerImpl.java:153)
         at java.lang.Thread.run(Thread.java:619)
    Thanks for your help on this!
    Regards,
    Jordi

    In the meantime I removed all the logs and wait till we have the issue again..
    I was able now to get the results of the ps commands, as you will notice...all the servers are up and we are able to use FTI without errormessages so far....Will come back with logfile results if we have the issue again :
    [oracle@LES000930122 setup]$ ps -efx|grep javahost
    Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.3/FAQ
    22869 pts/1 S+ 0:00 \_ grep javahost HOSTNAME=LES000930122 ANA_WEB_DIR=/mnt/desarrollo/oracle/oraclebi/web/bin TERM=xterm SHELL=/bin/bash HISTSIZE=1000 TMPDIR=/mnt/desarrollo/oracle/oraclebi/OracleBIData/tmp NLS_LANG=American_America.UTF8 SSH_CLIENT=10.254.210.121 1445 22 PYTHONUNBUFFERED=1 OLDPWD=/mnt/desarrollo/oracle/oraclebi SSH_TTY=/dev/pts/1 USER=oracle LD_LIBRARY_PATH=/mnt/desarrollo/oracle/oraclebi/server/Bin:/mnt/desarrollo/oracle/oraclebi/web/bin:/mnt/desarrollo/oracle/oraclebi/odbc/lib:/usr/lib:/lib:/mnt/desarrollo/oracle/product/9.2.0/client_1/lib32:/mnt/desarrollo/oracle/product/9.2.0/client_1/lib:/mnt/desarrollo/oracle/product/9.2.0/client_1/jdbc/lib:/mnt/desarrollo/oracle/product/9.2.0/client_1/lib:/mnt/desarrollo/oracle/product/9.2.0/client_1/lib LS_COLORS=no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35: GLOG_HOME=/opt/otm KDEDIR=/usr SA_ROOTDIR=/mnt/desarrollo/oracle/oraclebi UNIXPERFDIR=/mnt/desarrollo/oracle/oraclebi/OracleBIData/tmp TNS_ADMIN=/mnt/desarrollo/oracle/product/9.2.0/client_1/network/admin MAIL=/var/spool/mail/oracle PATH=/mnt/desarrollo/oracle/oraclebi/server/Bin:/mnt/desarrollo/oracle/oraclebi/web/bin:/mnt/desarrollo/oracle/product/9.2.0/client_1/bin:/opt/otm/jdk/bin:/opt/otm/python/bin:/mnt/desarrollo/oracle/product/10.2.0/client_1/bin:/usr/kerberos/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11R6/bin:/home/oracle/bin:/mnt/desarrollo/oracle/product/10.2.0/client_1/bin:/home/oracle/bin:/mnt/desarrollo/oracle/product/9.2.0/client_1/bin ANA_BIN_DIR=/mnt/desarrollo/oracle/oraclebi/server/Bin INPUTRC=/etc/inputrc PWD=/mnt/desarrollo/oracle/oraclebi/setup JAVA_HOME=/opt/otm/jdk LANG=en_US.UTF-8 SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass SADATADIR=/mnt/desarrollo/oracle/oraclebi/OracleBIData SHLVL=1 HOME=/home/oracle ODBCINI=/mnt/desarrollo/oracle/oraclebi/setup/odbc.ini PYTHONPATH=/opt/otm/python/lib/python2.4:/opt/otm/python/lib/python2.4/site-packages:/opt/otm/python/lib/python2.4/site-packages/_xmlplus:/opt/otm/utils/integration/python LOGNAME=oracle CLASSPATH=/opt/otm/glog/glog_resources:/opt/otm/glog/config:/opt/otm/glog/gc3webapp/WEB-INF/classes:/opt/otm/glog/gc3webapp/WEB-INF/lib/glogserver.jar:/opt/otm/glog/gc3webapp/WEB-INF/lib/3rdparty/WaitForServer.zip:/mnt/desarrollo/oracle/product/10.2.0/client_1/jdbc/lib/classes12.jar:/opt/otm/oas/j2ee/home/lib/ejb.jar:/opt/otm/oas/j2ee/home/lib/jta.jar SSH_CONNECTION=10.254.210.121 1445 10.136.47.220 22 SATEMPDIR=/mnt/desarrollo/oracle/oraclebi/OracleBIData/tmp LESSOPEN=|/usr/bin/lesspipe.sh %s PYTHON_HOME=/opt/otm/python ORACLE_HOME=/mnt/desarrollo/oracle/product/9.2.0/client_1 SAROOTDIR=/mnt/desarrollo/oracle/oraclebi G_BROKEN_FILENAMES=1 _=/bin/grep
    22634 pts/1 Sl 0:15 /mnt/desarrollo/oracle/oraclebi/jdk/bin/java -server -classpath /mnt/desarrollo/oracle/oraclebi/web/javahost/lib/core/sautils.jar:/mnt/desarrollo/oracle/oraclebi/web/javahost/lib/core/sawconnect.jar:/mnt/desarrollo/oracle/oraclebi/web/javahost/lib/core/javahost.jar:/mnt/desarrollo/oracle/oraclebi/web/javahost/lib/core/xalan-2.4.1.jar:/mnt/desarrollo/oracle/oraclebi/web/javahost/lib/core/xercesImpl-2.6.2.jar:/mnt/desarrollo/oracle/oraclebi/web/javahost/lib/core/xml-apis-2.6.2.jar -Xms128M -Xmx256M -Djava.awt.headless=true -Djava.util.logging.config.file=/mnt/desarrollo/oracle/oraclebi/web/javahost/config/logconfig.txt -Doracle.bi.presentation.coreconfigdir=/mnt/desarrollo/oracle/oraclebi/web/config -Doracle.bi.presentation.dataconfigdir=/mnt/desarrollo/oracle/oraclebi/OracleBIData/web/config -Doracle.bi.rootdir=/mnt/desarrollo/oracle/oraclebi -Doracle.bi.presentation.rootdir=/mnt/desarrollo/oracle/oraclebi/web -Doracle.bi.tempdir=/mnt/desarrollo/oracle/oraclebi/OracleBIData/tmp -Doracle.bi.javahostdir=/mnt/desarrollo/oracle/oraclebi/web/javahost -Doracle.bi.presentation.cordaroot=/mnt/desarrollo/oracle/oraclebi/corda50 com.siebel.analytics.javahost.standalone.Main /Config /mnt/desarrollo/oracle/oraclebi/web/javahost/config/config.xml SAWCLASSPATH=/mnt/desarrollo/oracle/oraclebi/web/javahost/lib/core/sautils.jar:/mnt/desarrollo/oracle/oraclebi/web/javahost/lib/core/sawconnect.jar:/mnt/desarrollo/oracle/oraclebi/web/javahost/lib/core/javahost.jar:/mnt/desarrollo/oracle/oraclebi/web/javahost/lib/core/xalan-2.4.1.jar:/mnt/desarrollo/oracle/oraclebi/web/javahost/lib/core/xercesImpl-2.6.2.jar:/mnt/desarrollo/oracle/oraclebi/web/javahost/lib/core/xml-apis-2.6.2.jar HOSTNAME=LES000930122 ANA_WEB_DIR=/mnt/desarrollo/oracle/oraclebi/web/bin TERM=xterm SHELL=/bin/bash HISTSIZE=1000 TMPDIR=/mnt/desarrollo/oracle/oraclebi/OracleBIData/tmp NLS_LANG=American_America.UTF8 SSH_CLIENT=10.254.210.121 1445 22 PYTHONUNBUFFERED=1 SSH_TTY=/dev/pts/1 USER=oracle LD_LIBRARY_PATH=/mnt/desarrollo/oracle/oraclebi/jdk/jre/lib/i386/jrockit:/mnt/desarrollo/oracle/oraclebi/jdk/jre/lib/i386:/mnt/desarrollo/oracle/oraclebi/jdk/jre/../lib/i386:/mnt/desarrollo/oracle/oraclebi/server/Bin:/mnt/desarrollo/oracle/oraclebi/web/bin:/mnt/desarrollo/oracle/oraclebi/odbc/lib:/usr/lib:/lib:/mnt/desarrollo/oracle/product/9.2.0/client_1/lib32:/mnt/desarrollo/oracle/product/9.2.0/client_1/lib:/mnt/desarrollo/oracle/product/9.2.0/client_1/jdbc/lib:/mnt/desarrollo/oracle/product/9.2.0/client_1/lib:/mnt/desarrollo/oracle/product/9.2.0/client_1/lib LS_COLORS=no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35: SawJavaHostDir=/mnt/desarrollo/oracle/oraclebi/web/javahost GLOG_HOME=/opt/otm KDEDIR=/usr SA_ROOTDIR=/mnt/desarrollo/oracle/oraclebi UNIXPERFDIR=/mnt/desarrollo/oracle/oraclebi/OracleBIData/tmp TNS_ADMIN=/mnt/desarrollo/oracle/product/9.2.0/client_1/network/admin MAIL=/var/spool/mail/oracle PATH=/mnt/desarrollo/oracle/oraclebi/server/Bin:/mnt/desarrollo/oracle/oraclebi/web/bin:/mnt/desarrollo/oracle/product/9.2.0/client_1/bin:/opt/otm/jdk/bin:/opt/otm/python/bin:/mnt/desarrollo/oracle/product/10.2.0/client_1/bin:/usr/kerberos/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11R6/bin:/home/oracle/bin:/mnt/desarrollo/oracle/product/10.2.0/client_1/bin:/home/oracle/bin:/mnt/desarrollo/oracle/product/9.2.0/client_1/bin JAVA_DEBUG_OPTIONS= ANA_BIN_DIR=/mnt/desarrollo/oracle/oraclebi/server/Bin INPUTRC=/etc/inputrc PWD=/mnt/desarrollo/oracle/oraclebi/web/javahost/bin JAVA_HOME=/mnt/desarrollo/oracle/oraclebi/jdk LANG=en_US.UTF-8 SAWROOTDIR=/mnt/desarrollo/oracle/oraclebi/web SASRVTUNESCRIPT=/mnt/desarrollo/oracle/oraclebi/setup/systunesrv.sh SASAWSERVER=/mnt/desarrollo/oracle/oraclebi/web/bin/sawserver SASYSINITSCRIPT=/mnt/desarrollo/oracle/oraclebi/setup/sysenvinit.sh ANA_VARIANT=Linux SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass SASBINDIR=/mnt/desarrollo/oracle/oraclebi/server/Bin SADATADIR=/mnt/desarrollo/oracle/oraclebi/OracleBIData SHLVL=3 HOME=/home/oracle SawCoreConfigDir=/mnt/desarrollo/oracle/oraclebi/web/config ODBCINI=/mnt/desarrollo/oracle/oraclebi/setup/odbc.ini SAWBINDIR=/mnt/desarrollo/oracle/oraclebi/web/bin PYTHONPATH=/opt/otm/python/lib/python2.4:/opt/otm/python/lib/python2.4/site-packages:/opt/otm/python/lib/python2.4/site-packages/_xmlplus:/opt/otm/utils/integration/python LOGNAME=oracle CLASSPATH=/opt/otm/glog/glog_resources:/opt/otm/glog/config:/opt/otm/glog/gc3webapp/WEB-INF/classes:/opt/otm/glog/gc3webapp/WEB-INF/lib/glogserver.jar:/opt/otm/glog/gc3webapp/WEB-INF/lib/3rdparty/WaitForServer.zip:/mnt/desarrollo/oracle/product/10.2.0/client_1/jdbc/lib/classes12.jar:/opt/otm/oas/j2ee/home/lib/ejb.jar:/opt/otm/oas/j2ee/home/lib/jta.jar SSH_CONNECTION=10.254.210.121 1445 10.136.47.220 22 ANA_INSTALL_DIR=/mnt/desarrollo/oracle/oraclebi SATEMPDIR=/mnt/desarrollo/oracle/oraclebi/OracleBIData/tmp LESSOPEN=|/usr/bin/lesspipe.sh %s CordaInstallDir=/mnt/desarrollo/oracle/oraclebi/corda50 SawDataConfigDir=/mnt/desarrollo/oracle/oraclebi/OracleBIData/web/config PYTHON_HOME=/opt/otm/python ORACLE_HOME=/mnt/desarrollo/oracle/product/9.2.0/client_1 SAROOTDIR=/mnt/desarrollo/oracle/oraclebi G_BROKEN_FILENAMES=1 _=/mnt/desarrollo/oracle/oraclebi/jdk/bin/java
    22607 pts/1 S 0:00 /bin/sh /mnt/desarrollo/oracle/oraclebi/setup/sawserver.sh HOSTNAME=LES000930122 ANA_WEB_DIR=/mnt/desarrollo/oracle/oraclebi/web/bin SHELL=/bin/bash TERM=xterm HISTSIZE=1000 SSH_CLIENT=10.254.210.121 1445 22 NLS_LANG=American_America.UTF8 TMPDIR=/mnt/desarrollo/oracle/oraclebi/OracleBIData/tmp PYTHONUNBUFFERED=1 SSH_TTY=/dev/pts/1 USER=oracle SawJavaHostDir=/mnt/desarrollo/oracle/oraclebi/web/javahost LS_COLORS=no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35: LD_LIBRARY_PATH=/mnt/desarrollo/oracle/oraclebi/server/Bin:/mnt/desarrollo/oracle/oraclebi/web/bin:/mnt/desarrollo/oracle/oraclebi/odbc/lib:/usr/lib:/lib:/mnt/desarrollo/oracle/product/9.2.0/client_1/lib32:/mnt/desarrollo/oracle/product/9.2.0/client_1/lib:/mnt/desarrollo/oracle/product/9.2.0/client_1/jdbc/lib:/mnt/desarrollo/oracle/product/9.2.0/client_1/lib:/mnt/desarrollo/oracle/product/9.2.0/client_1/lib KDEDIR=/usr GLOG_HOME=/opt/otm UNIXPERFDIR=/mnt/desarrollo/oracle/oraclebi/OracleBIData/tmp SA_ROOTDIR=/mnt/desarrollo/oracle/oraclebi PATH=/mnt/desarrollo/oracle/oraclebi/server/Bin:/mnt/desarrollo/oracle/oraclebi/web/bin:/mnt/desarrollo/oracle/product/9.2.0/client_1/bin:/opt/otm/jdk/bin:/opt/otm/python/bin:/mnt/desarrollo/oracle/product/10.2.0/client_1/bin:/usr/kerberos/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11R6/bin:/home/oracle/bin:/mnt/desarrollo/oracle/product/10.2.0/client_1/bin:/home/oracle/bin:/mnt/desarrollo/oracle/product/9.2.0/client_1/bin MAIL=/var/spool/mail/oracle TNS_ADMIN=/mnt/desarrollo/oracle/product/9.2.0/client_1/network/admin ANA_BIN_DIR=/mnt/desarrollo/oracle/oraclebi/server/Bin PWD=/mnt/desarrollo/oracle/oraclebi/server/Log INPUTRC=/etc/inputrc JAVA_HOME=/mnt/desarrollo/oracle/oraclebi/jdk SASRVTUNESCRIPT=/mnt/desarrollo/oracle/oraclebi/setup/systunesrv.sh SAWROOTDIR=/mnt/desarrollo/oracle/oraclebi/web LANG=en_US.UTF-8 SASAWSERVER=/mnt/desarrollo/oracle/oraclebi/web/bin/sawserver ANA_VARIANT=Linux SASYSINITSCRIPT=/mnt/desarrollo/oracle/oraclebi/setup/sysenvinit.sh SASBINDIR=/mnt/desarrollo/oracle/oraclebi/server/Bin SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass SawCoreConfigDir=/mnt/desarrollo/oracle/oraclebi/web/config HOME=/home/oracle SHLVL=2 SADATADIR=/mnt/desarrollo/oracle/oraclebi/OracleBIData ODBCINI=/mnt/desarrollo/oracle/oraclebi/setup/odbc.ini SAWBINDIR=/mnt/desarrollo/oracle/oraclebi/web/bin LOGNAME=oracle PYTHONPATH=/opt/otm/python/lib/python2.4:/opt/otm/python/lib/python2.4/site-packages:/opt/otm/python/lib/python2.4/site-packages/_xmlplus:/opt/otm/utils/integration/python SSH_CONNECTION=10.254.210.121 1445 10.136.47.220 22 CLASSPATH=/opt/otm/glog/glog_resources:/opt/otm/glog/config:/opt/otm/glog/gc3webapp/WEB-INF/classes:/opt/otm/glog/gc3webapp/WEB-INF/lib/glogserver.jar:/opt/otm/glog/gc3webapp/WEB-INF/lib/3rdparty/WaitForServer.zip:/mnt/desarrollo/oracle/product/10.2.0/client_1/jdbc/lib/classes12.jar:/opt/otm/oas/j2ee/home/lib/ejb.jar:/opt/otm/oas/j2ee/home/lib/jta.jar ANA_INSTALL_DIR=/mnt/desarrollo/oracle/oraclebi CordaInstallDir=/mnt/desarrollo/oracle/oraclebi/corda50 LESSOPEN=|/usr/bin/lesspipe.sh %s SATEMPDIR=/mnt/desarrollo/oracle/oraclebi/OracleBIData/tmp SawDataConfigDir=/mnt/desarrollo/oracle/oraclebi/OracleBIData/web/config ORACLE_HOME=/mnt/desarrollo/oracle/product/9.2.0/client_1 PYTHON_HOME=/opt/otm/python SAROOTDIR=/mnt/desarrollo/oracle/oraclebi G_BROKEN_FILENAMES=1 OLDPWD=/mnt/desarrollo/oracle/oraclebi/setup _=/mnt/desarrollo/oracle/oraclebi/setup/sawserver.sh
    22618 pts/1 Sl 0:01 \_ /mnt/desarrollo/oracle/oraclebi/web/bin/sawserver HOSTNAME=LES000930122 ANA_WEB_DIR=/mnt/desarrollo/oracle/oraclebi/web/bin TERM=xterm SHELL=/bin/bash HISTSIZE=1000 TMPDIR=/mnt/desarrollo/oracle/oraclebi/OracleBIData/tmp NLS_LANG=American_America.UTF8 SSH_CLIENT=10.254.210.121 1445 22 ANA_ODBC_DIR=/mnt/desarrollo/oracle/oraclebi/odbc PYTHONUNBUFFERED=1 SSH_TTY=/dev/pts/1 USER=oracle LD_LIBRARY_PATH=/mnt/desarrollo/oracle/oraclebi/server/Bin:/mnt/desarrollo/oracle/oraclebi/web/bin:/mnt/desarrollo/oracle/oraclebi/odbc/lib:/usr/lib:/lib:/mnt/desarrollo/oracle/oraclebi/server/Bin:/mnt/desarrollo/oracle/oraclebi/web/bin:/mnt/desarrollo/oracle/oraclebi/odbc/lib:/usr/lib:/lib:/mnt/desarrollo/oracle/product/9.2.0/client_1/lib32:/mnt/desarrollo/oracle/product/9.2.0/client_1/lib:/mnt/desarrollo/oracle/product/9.2.0/client_1/jdbc/lib:/mnt/desarrollo/oracle/product/9.2.0/client_1/lib:/mnt/desarrollo/oracle/product/9.2.0/client_1/lib LS_COLORS=no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35: SawJavaHostDir=/mnt/desarrollo/oracle/oraclebi/web/javahost GLOG_HOME=/opt/otm KDEDIR=/usr SA_ROOTDIR=/mnt/desarrollo/oracle/oraclebi UNIXPERFDIR=/mnt/desarrollo/oracle/oraclebi/OracleBIData/tmp TNS_ADMIN=/mnt/desarrollo/oracle/product/9.2.0/client_1/network/admin MAIL=/var/spool/mail/oracle PATH=/mnt/desarrollo/oracle/oraclebi/server/Bin:/mnt/desarrollo/oracle/oraclebi/web/bin::/mnt/desarrollo/oracle/oraclebi/server/Bin:/mnt/desarrollo/oracle/oraclebi/web/bin:/mnt/desarrollo/oracle/product/9.2.0/client_1/bin:/opt/otm/jdk/bin:/opt/otm/python/bin:/mnt/desarrollo/oracle/product/10.2.0/client_1/bin:/usr/kerberos/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11R6/bin:/home/oracle/bin:/mnt/desarrollo/oracle/product/10.2.0/client_1/bin:/home/oracle/bin:/mnt/desarrollo/oracle/product/9.2.0/client_1/bin ANA_BIN_DIR=/mnt/desarrollo/oracle/oraclebi/server/Bin INPUTRC=/etc/inputrc PWD=/mnt/desarrollo/oracle/oraclebi/server/Log JAVA_HOME=/mnt/desarrollo/oracle/oraclebi/jdk LANG=en_US.UTF-8 SAWROOTDIR=/mnt/desarrollo/oracle/oraclebi/web SASRVTUNESCRIPT=/mnt/desarrollo/oracle/oraclebi/setup/systunesrv.sh SASAWSERVER=/mnt/desarrollo/oracle/oraclebi/web/bin/sawserver SASYSINITSCRIPT=/mnt/desarrollo/oracle/oraclebi/setup/sysenvinit.sh ANA_VARIANT=Linux SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass SASBINDIR=/mnt/desarrollo/oracle/oraclebi/server/Bin SADATADIR=/mnt/desarrollo/oracle/oraclebi/OracleBIData SHLVL=3 HOME=/home/oracle SawCoreConfigDir=/mnt/desarrollo/oracle/oraclebi/web/config ODBCINI=/mnt/desarrollo/oracle/oraclebi/setup/odbc.ini SAWBINDIR=/mnt/desarrollo/oracle/oraclebi/web/bin PYTHONPATH=/opt/otm/python/lib/python2.4:/opt/otm/python/lib/python2.4/site-packages:/opt/otm/python/lib/python2.4/site-packages/_xmlplus:/opt/otm/utils/integration/python LOGNAME=oracle CLASSPATH=/opt/otm/glog/glog_resources:/opt/otm/glog/config:/opt/otm/glog/gc3webapp/WEB-INF/classes:/opt/otm/glog/gc3webapp/WEB-INF/lib/glogserver.jar:/opt/otm/glog/gc3webapp/WEB-INF/lib/3rdparty/WaitForServer.zip:/mnt/desarrollo/oracle/product/10.2.0/client_1/jdbc/lib/classes12.jar:/opt/otm/oas/j2ee/home/lib/ejb.jar:/opt/otm/oas/j2ee/home/lib/jta.jar SSH_CONNECTION=10.254.210.121 1445 10.136.47.220 22 ANA_INSTALL_DIR=/mnt/desarrollo/oracle/oraclebi SATEMPDIR=/mnt/desarrollo/oracle/oraclebi/OracleBIData/tmp LESSOPEN=|/usr/bin/lesspipe.sh %s CordaInstallDir=/mnt/desarrollo/oracle/oraclebi/corda50 SawDataConfigDir=/mnt/desarrollo/oracle/oraclebi/OracleBIData/web/config PYTHON_HOME=/opt/otm/python ORACLE_HOME=/mnt/desarrollo/oracle/product/9.2.0/client_1 SAROOTDIR=/mnt/desarrollo/oracle/oraclebi G_BROKEN_FILENAMES=1 _=/mnt/desarrollo/oracle/oraclebi/web/bin/sawserver

  • HT1414 Since updating to iso6.0 I have had problems with my email exchange account syncing correctly - I keeps loosing connection with the server.

    Since updating to iso6.0 I have had problems with my email exchange account syncing correctly - I keeps loosing connection with the server.

    Are you losing the connection to iTunes on the iPad or the computer? You are saying that iTunes is updated. Of course iTunes is updated when you update the iOS software. That's a no brainer.
    If you mean that iTunes is updated on the computer, that has absolutely nothing whatsoever to do with downloading and updating apps on the iPad itself so changing the date on the iPad, signing in and out of the stores on the iPad .... Doing any of that on the iPad would have nothing to do with iTunes on your computer.
    If .... you have not been able to connect to the iTunes or app stores at all on the iPad - try this ...
    Settings>Privacy>Location Services>System Services (swipe to the bottom of the page to find this)>Location Based iAds>Off.
    If the downloads are stalled or "waiting" - try these suggestions.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    Make sure that you do not have a stalled download in iTunes - a song or podcast .... if you have a download in there that did not finish, complete that one first. Only one thing can download at a time on the iPad so that could be what is causing the problem.
    If you can't connect at all - you can also try rebooting your router. Unplug it from power for about 30 seconds and then plug it in again.

  • Loose of email connection to company server

    I am periodically loosing email connection to company email server on both my iphone and ipad.  Happens randomly.  Reconnection occurs right after.  Have gone thru and deleted email account in settings and re-established to no avail. Any thoughts?

    You are allowing slack or losing tightness in your email connection?
    are you connected to the server by string?
    If you meant you are losing the connection, what troubleshooting have you done?
    have you checked with the IT department for outages or if it is a widespread issue?
    What kind of Internet connection do you have during these outages-wifi, cellular?

  • Numbers loose connection with the server (osx server 10.6.8)

    Hello, I use numbers application on an iMac under 10.6.8, all updates done. The files are written to a intel xserve under 10.6.8. Here's my problem: When i use a file on the server, from time to time, numbers tell me that the connection to the server was lost and I can not save the changes to the server. I only have one solution: to save locally on the iMac and then copy it to the server. It is very frustrating and annoying. Do you have any idea to solve this problem, thank you all and see you soon,
    Damien / Geneva

    Damien,
    Have you asked in the Networking Category of the Snow Leopard Discussions?
    Jerry

  • Re: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server

    Hi,
    I'm encountering an issue with "Named Pipes Provider, error: 40 windows" and am having problems determining how to fix it due to the environment I'm using.  I have two SQL Servers installed on two separate Win2K3 Server boxes, one is SQL Server 2000 and the other is SQL Server 2005.  The SQL Server 2000 contains the actual application data.  The 2005 database is used only for Reporting Services.  I've set up the reports on SSRS such that their datasources hit the 2000 server.  This is using SQL Server authentication.
    When testing the reports via SSRS (in Visual Studio 2005), the connection to the data works and the reports are generated fine.  When I deploy them to the reporting server and launch IE to test locally (still on the 2005 box), I get this "Named Pipes Provider, error 40" issue.  I made sure that Named Pipes and TCP were enabled and the port set at 1433 (to match that on the 2000 box). 
    Now I changed the datasource's authentication from SQL Server to Windows authentication.  I tested this in SSRS and this works too.  When I redeployed the reports with this authentication change, testing the reports via IE locally (on the 2005 box) worked.  Great.  Now when I open IE on an external box, i.e. on the 2000 box, and try to test the reports, I get this same error 40 issue.  I've been through a few threads describing the error 40, fiddling around with the SQL Server configuration as well as SSRS, to no avail.  I have a feeling this error 40 issue has to due with permissions/authentication between the SQL Server boxes but I can't really be sure.  Anyone have any ideas on how to troubleshoot my situation.  Thanks.
    larry

    Named Pipes Provider, error: 40 - Could not open a connection to SQL Server :
    I.   Incorrect connection string, such as using SqlExpress.
    Check out: http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=558456&SiteID=17
                    https://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1245564&SiteID=1
    The typical error when dealing with Express includes:
    a.  User is not aware of SqlExpress was installed as a named instance, consequently, in his/her connection string, he/she only specify ".","localhost" etc instead of ".\SqlExpress" or "<machinename>\Sqlexpress".
    b. Np was disabld by default after installing SqlExpress.
    c. If Sqlexpress was installed on the remote box, you need to enable remote connection for Express.
    Please read the following blog for best practice of connecting to SqlExpress.
    http://blogs.msdn.com/sql_protocols/archive/2006/03/23/558651.aspx
    II. Named Pipes(NP) was not enabled on the SQL instance.
    Check out: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=136253&SiteID=1
    Oppose to SQL 2000 which turn on all protocols, SQL 2005 SKUs turn off NP by default. So, when you see this error, please check:
    1) Go to SQL Server Configuration Manager, See Server has NP enabled.
    2) %windir%\program files\microsoft sql server\mssql.1\mssql\log, notepad ERRORLOG, see whether Server is listening on NP.  You should see "Server named pipe provider is ready to accept connection on [ \\.\pipe\sql\query ] or [\\.\pipe\mssql$<InstanceName>\sql\query]"
    3) Notice that "sql\query" is the default pipe name, so you need to know server is listening on which pipe name. eg: if you specify server pipe name is "sql\query1", then you would see in the errorlog that server listening on [ \\.\pipe\sql\query1 ], and go to SQL Server Configuration Manager, click client Named Pipe properties, see whether the pipe name is same with the one server listening on.
    4) If you are using SQL Native Client ODBC/OLEDB provider({SQL Native Client} or SQLNCLI), go to SQL Configuration Manager, click client protocols, make sure NP and TCP are both enabled. Right click properties of NP, make sure client is using the same pipe name as server for connection.
    5) If you are using MDAC ODBC/OLEDB({SQL Server} or SQLOLEDB) provider, in command line, launch "cliconfg.exe" and make sure NP enabled and right pipe name specified.
    III. Remote connection was not enabled. 
    Check out: when you right click on the Server in SQL Server Management Studio, in Connections, the Remote server connections part, you have enabled the "Allow remote connections to this server" check box
    http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=322792&SiteID=1
    https://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=763875&SiteID=1
    If you are making a remote connection, namely, your target SQL Server is on the different box as client application, you might need to check whether:
    a. "File and Printer Sharing" was opened in Firewall exception list.
    b. Please see the blog for enabling remote connection for express and troubleshooting tips of remote connection.
    http://blogs.msdn.com/sql_protocols/archive/2005/11/14/492616.aspx
    http://blogs.msdn.com/sql_protocols/archive/2006/09/30/SQL-Server-2005-Remote-Connectivity-Issue-TroubleShooting.aspx
    IV. Server not started, or point to not a real server in your connection string.
    Check out: Open SQL Server Surface Area Configuration and ensure all the required services are started, Remote Connections are configured.
    http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=348662&SiteID=1
    a. use "sc query mssqlserver" for default instance or "sc query mssql$<instancename>" to make sure SQL Server was started. Sometimes, reseason behind the broken of your client application w/ this error:40 might be SQL server restarted and failed, so, it'd better for you to double check.
    b. User specified wrong server in their connection string, as described in the forum discussion, "MSSQLSERVER" is an invalid instance name. Remember, when you connect to default instance, <machinename> could be best representitive for the instance, when you connect to a named instance such as sqlexpress, you should specify <machinename>\<instancename> as data source in your connection string.
     V. Other reasons such as incorrect security context.
    Check out: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=192622&SiteID=1
    Such error also occured during user operation such as moving database or db mirroring or cluster, any DB OP that might invovle different sql instances, namely, the destination database is located in another sql instance and user is not aware of the state of the destination. I recommend you first isolate whether this fail is during connection stage or data operation stage.
    a. During data operation, you are normally asked to type in the destination server name whether it is default to "(local)" or another server "<remotemachinename>". So, remember the exact string that represent the target instance, then when the error repros, open command line, use "sqlcmd -S<representitive> -E" ,see what happens, if the connection fail, please follow up above I - IV troubleshooting lists. otherwise continue.
    b. If you can make basic conection, but still face the error, then there must be something that server reject the connection or client close the connection for some reason.
    VI. Please try basic connectivity tests between the two mahcines you are working on. One simple way to verifty connectivity is to use command line tools, such as osql.exe. For example, osql -E -Stcpervername\instancename. If it connects cross-machine successfully, please also verify that your connection string in your scenario is correct.
    Here are some blogs which could be helpful: just follow the basic connectivity troubleshooting guidelines on the SQL Protocols blog, see:
    SQL Server 2005 Connectivity Issue Troubleshoot - Part I
    http://blogs.msdn.com/sql_protocols/archive/2005/10/22/483684.aspx
    and
    SQL Server 2005 Connectivity Issue Troubleshoot - Part II
    http://blogs.msdn.com/sql_protocols/archive/2005/10/29/486861.aspx
    Hope this helps.

  • Com.hyperion.odi.essbase.ODIEssbaseException: com.hyperion.odi.essbase.ODIEssbaseException: Error in connecting to Essbase server

    Hi Experts,
    I am trying to load metadata From Oracle to Essbase.In the Essbase data server, all credentails are correct. In the model, I am using OracleDIAgent(not local agent), Context Global, RKM Hyperion Essbase.
    In the execution, Start the Reverse is failing and getting the below error.
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (most recent call last):
      File "<string>", line 58, in <module>
      at com.hyperion.odi.essbase.ODIEssbaseConnection.connect(Unknown Source)
      at com.hyperion.odi.common.ODIModelImporter.importModels(Unknown Source)
      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:597)
    com.hyperion.odi.essbase.ODIEssbaseException: com.hyperion.odi.essbase.ODIEssbaseException: Error in connecting to Essbase server. Error message is : Cannot connect to olap service. Cannot connect to Essbase Server. Error:Essbase Error(1051293): Login fails due to invalid login credentials
      at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
      at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.execInBSFEngine(SnpScriptingInterpretor.java:322)
      at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.exec(SnpScriptingInterpretor.java:170)
      at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java:2472)
      at oracle.odi.runtime.agent.execution.cmd.ScriptingExecutor.execute(ScriptingExecutor.java:47)
      at oracle.odi.runtime.agent.execution.cmd.ScriptingExecutor.execute(ScriptingExecutor.java:1)
      at oracle.odi.runtime.agent.execution.TaskExecutionHandler.handleTask(TaskExecutionHandler.java:50)
      at com.sunopsis.dwg.dbobj.SnpSessTaskSql.processTask(SnpSessTaskSql.java:2913)
      at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2625)
      at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:577)
      at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:468)
      at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:2128)
      at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:366)
      at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:216)
      at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:300)
      at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:292)
      at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:855)
      at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:126)
      at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
      at java.lang.Thread.run(Thread.java:662)
    Caused by: Traceback (most recent call last):
      File "<string>", line 58, in <module>
      at com.hyperion.odi.essbase.ODIEssbaseConnection.connect(Unknown Source)
      at com.hyperion.odi.common.ODIModelImporter.importModels(Unknown Source)
      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:597)
    Thanks,
    mady

    Hi John,
    Thanks for the reply.
    Actually i have written big reply to u with explaining about the issue. But at the writing reply only, i got an idea to resolve this.
    Now i am able to run the Model successfully.
    Yes, you are correct. Due to invalid credentials only i am getting this error.
    I want to ask you one thing. Actually, at the time configuration i gave password as a password, then my manager wants to change that password to Gxxx@123!
    I have changed that password, it is working fine to connect workspace, easconsole and all.
    But the issue i seen in creating DataSource(In planning), i am getting error with new password in the Essbase server datails. If i give old password(as password), it is working fine.
    So, How can get that new password to work here??
    In ODI also, it is the issue. When i am using New password it is not working. With Old password it is working fine.
    Thanks,
    mady

  • Entity bean connection with SQL Server Error! urgent

    Hi,
    I am working with J2EE tutorial and when i tried SavingsAccount Entity bean to connect with SQL Server 2000(other than default Cloudscape)and I'm also having SQL Server 2K JDBC Driver installed. I also made entries in Server Configuration menu of J2EE deployment tool for this MS JDBC Driver for SQL Server 2K,I will enclose my dbName and connection method in the entity bean , but i am getting error like this.
    my data base name in SQL Server 2K is 'rajeshrNew'.
    private String dbName="java:comp/env/jdbc/rajeshrNew"; //dbName
    private void makeConnection() throws NamingException, SQLException {
    InitialContext ic = new InitialContext();
    DataSource ds = (DataSource) ic.lookup(dbName);
    con = ds.getConnection();
    and errors receiving are:
    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
    java.rmi.RemoteException: nested exception is: javax.ejb.EJBException: Unable to connect to database. No suitable driver; nested exception is:
    javax.ejb.EJBException: Unable to connect to database. No suitable driver
    java.rmi.RemoteException: nested exception is: javax.ejb.EJBException: Unable to connect to database. No suitable driver; nested exception is:
    javax.ejb.EJBException: Unable to connect to database. No suitable driver
    javax.ejb.EJBException: Unable to connect to database. No suitable driver <<no stack trace available>>
    Please help me to resolve this problem!!
    Regards
    Rajesh R

    yes i do create System DSN with rajeshrNew and my default.properties file look like this..
    # maximum size of message driven bean instance
    # pool per mdb type
    messagebean.pool.size=3
    # maximum size of a "bulk" message bean delivery
    messagebean.max.serversessionmsgs=1
    # message-bean container resource cleanup interval
    messagebean.cleanup.interval=600
    passivation.threshold.memory=128000000
    idle.resource.threshold=600
    log.directory=logs
    log.output.file=output.log
    log.error.file=error.log
    log.event.file=event.log
    distributed.transaction.recovery=false
    transaction.timeout=0
    transaction.nonXA.optimization=true
    sessionbean.timeout=0
    # validating parser values
    # validating.perser is used when archive file are loaded by
    # any of the J2EE Reference Implementation tools.
    # deployment.validating.parser is used when deploying an
    # archive on the J2EE AppServer.
    validating.parser=false
    deployment.validating.parser=true
    now u tell me what i have to change..
    with regards
    Rajesh

  • Getting following error while creating a datasource connection with oracle database.

    I have 32 bit oracle server installed in remote server.
    and 64 bit sql server 2008 r2 report server installed, and 64 bit oracle client installed on my report server  while create a new datasource
    in the report server i am getting this error
    Error 
    Attempt to load Oracle client libraries threw BadImageFormatException. This problem will occur when running in 64 bit mode with the 32 bit Oracle
    client components installed
    How can i fix this and let me know the reason

    This link will help you out.
    http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/0a38fa00-31de-49de-b68f-4c5a4565e5b1?prof=required
    Milan Das

  • A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (p

    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that
    the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)(Microsoft SQL Server, Error: 2)
    The system cannot find the file specified
    Cannot connect to COWBOYS.
    Here are the technical details===================================
    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider:
    Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (.Net SqlClient Data Provider)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&EvtSrc=MSSQLServer&EvtID=2&LinkId=20476
    Error Number: 2
    Severity: 20
    State: 0
    Program Location:
       at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
       at System.Data.SqlClient.TdsParser.Connect(ServerInfo serverInfo, SqlInternalConnectionTds connHandler, Boolean ignoreSniOpenTimeout, Int64 timerExpire, Boolean encrypt, Boolean trustServerCert, Boolean integratedSecurity, Boolean withFailover)
       at System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo serverInfo, String newPassword, SecureString newSecurePassword, Boolean ignoreSniOpenTimeout, TimeoutTimer timeout, Boolean withFailover)
       at System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(ServerInfo serverInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString connectionOptions, SqlCredential credential, TimeoutTimer
    timeout)
       at System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(TimeoutTimer timeout, SqlConnectionString connectionOptions, SqlCredential credential, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance)
       at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance,
    SqlConnectionString userConnectionOptions, SessionData reconnectSessionData)
       at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionFactory.CreateNonPooledConnection(DbConnection owningConnection, DbConnectionPoolGroup poolGroup, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
       at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
       at System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
       at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
       at System.Data.SqlClient.SqlConnection.Open()
       at Microsoft.SqlServer.Management.SqlStudio.Explorer.ObjectExplorerService.ValidateConnection(UIConnectionInfo ci, IServerType server)
       at Microsoft.SqlServer.Management.UI.ConnectionDlg.Connector.ConnectionThreadUser()
    ===================================
    The system cannot find the file specified
    I have tried from so many forms. This is so frustrating. Thank for everyone/anyone who wants to help. So this is what happened: I had to uninstall my previous sqlserver 2012(which worked great) for some reason, and I uninstalled everything from that download.
    Then I installed the trial edition of sql server 2012 (64 Bit) and It wouldn't connect to the database. (Error mentioned above.) My local DB is COWBOYS. (COWBOYS is also my computer name.) After this, I have tried downloading sqlexpress and sqlserver 64bit
    many times and cannot connect to my local DB. 
    How do I connect to my Local DB? 
    Also, I think this might help: (When I run sqlserve.exe, which I was able to find in C:\Program Files\Microsoft SQL Server\110\LocalDB\Binn, I get an error: Your SQL server installation is either corrupt or has been tampered with(Error getting
    instance ID from name). Please uninstall then re-run setup to correct this problem.
    I would happily re install it, if it wasn't my 20th time.
    I don't have any remote connections, I don't use username/password, only window authentication. I work mostly on visual studio, but without able to store /retrieve data, I don't know how to survive.
    May be the solution is very simple, but I am too frustrated. 
    Some of the things I have tried:
    From a command prompt, enter one of the following commands:
    net start "SQL Server Agent (MSSQLSERVER)" OR 
    net start "SQL Server Agent(instancename)"(for instance)
    on my sql configuration, I cannot start anything because there is nothing there to start. I can post more details, if that would help. Also, some more details about the error:
    Details
    Product:
    SQL Server
    ID:
    2
    Source:
    MSSQLServer
    Version:
    10.0
    Component:
    SQLEngine
    Message:
    An error has occurred while establishing a connection to the server. When connecting to SQL Server, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error:
    40 - Could not open a connection to SQL Server) (.Net SqlClient Data Provider)
    Explanation
    SQL Server did not respond to the client request because the server is probably not started.
    User Action
    Make sure that the server is started.
    Version:
    9.0
    Component:
    SQLEngine
    Message:
    An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error:
    40 - Could not open a connection to SQL Server) (.Net SqlClient Data Provider)
    Explanation
    SQL Server did not respond to the client request because the server is probably not started.
    User Action
    Make sure that the server is started.
    Any one that can help me, I will be greatful. Thank you so much. p.s. please ask me anything if you have any questions.

    It sounds like there are a couple things going on here.  First check if you have a successful install of SQL Server, then we'll figure out the connection issues.
    Can you launch SQL Server Configuration Manager and check for SQL Server (MSSQLSERVER) if default instance or SQL Server (other name) if you've configured your instance as a named instance.  Once you find this, make sure the service is started. 
    If not started, try to start it and see if it throws an error.  If you get an error, post the error message your hitting.  If the service starts, you can then launch SSMS and try to connect.  If you have a default instance, you can use the machine
    name in the connection dialog.  Ex:  "COWBOYS" where Cowboys is the machine name.  However, if you named the SQL Server instance during install, you'll need to connect using the machine\instance format.  Ex:  COWBOYS\Romo (where Romo
    is the instance name you set during install).
    You can also look at the summary.txt file in the SQL Server setup error logs to see what happened on the most recent install.  Past install history is archived in the log folder if you need to dig those up to help troubleshoot, but the most
    recent one may help get to the bottom of it if there is an issue with setup detecting a prior instance that needs to be repaired.
    Thanks,
    Sam Lester (MSFT)
    http://blogs.msdn.com/b/samlester
    This posting is provided "AS IS" with no warranties, and confers no rights. Please remember to click
    "Mark as Answer" and
    "Vote as Helpful" on posts that help you. This can be beneficial to other community members reading the thread.

  • Null connection when trying to connect to SQL Server 2000 in Tomcat4.1.29

    Hi All,
    I am still struggling with null connection when trying to connect to sql server 2000 with tomcat using sun.jdbc.odbc.JdbcOdbcDriver
    Here is my server.xml
    <Server port="8005" shutdown="SHUTDOWN" debug="0">
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener"
    debug="0"/>
    <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"
    debug="0"/>
    <GlobalNamingResources>
    <Resource name="UserDatabase" auth="Container"
    type="org.apache.catalina.UserDatabase"
    description="User database that can be updated and saved">
    </Resource>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.MemoryUserDatabaseFactory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    <Resource auth="Container" description="Users and Groups
    Database" name="UserDatabase"
    scope="Shareable"
    type="org.apache.catalina.UserDatabase"/>
    <Resource name="jdbc/DefaultDS" scope="Shareable"
    type="javax.sql.DataSource"/>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.
    MemoryUserDatabaseFactory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    <ResourceParams name="jdbc/DefaultDS">
    <parameter>
    <name>validationQuery</name>
    <value></value>
    </parameter>
    <parameter>
    <name>user</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>maxWait</name>
    <value>5000</value>
    </parameter>
    <parameter>
    <name>maxActive</name>
    <value>4</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>url</name>
    <value>jdbc:odbc:JBoss-SQL://localhost:1433;databaseName=Development;selectMethod=cursor;</value>
    </parameter>
    <parameter>
    <name>driverClassName</name>
    <value>sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    <parameter>
    <name>maxIdle</name>
    <value>2</value>
    </parameter>
    </ResourceParams>
    </GlobalNamingResources>
    <!-- Define the Tomcat Stand-Alone Service -->
    <Service name="Tomcat-Standalone">
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8080" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="100" debug="0" connectionTimeout="20000"
    useURIValidationHack="false" disableUploadTimeout="true" />
    <!-- Note : To disable connection timeouts, set connectionTimeout value
    to -1 -->
    <!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
    <!--
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8443" minProcessors="5" maxProcessors="75"
    enableLookups="true"
    acceptCount="100" debug="0" scheme="https" secure="true"
    useURIValidationHack="false" disableUploadTimeout="true">
    <Factory className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
    clientAuth="false" protocol="TLS" />
    </Connector>
    -->
    <!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -->
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8009" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="10" debug="0" connectionTimeout="0"
    useURIValidationHack="false"
    protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
    <!-- Define an AJP 1.3 Connector on port 8009 --><Logger className="org.apache.catalina.logger.FileLogger"
    prefix="catalina_log." suffix=".txt"
    timestamp="true"/>
    <!-- Define the default virtual host -->
    <Host name="localhost" debug="0" appBase="webapps"
    unpackWARs="true" autoDeploy="true">
    <Logger className="org.apache.catalina.logger.FileLogger"
    directory="logs" prefix="localhost_log." suffix=".txt"
    timestamp="true"/>
    <Environment name="maxExemptions" type="java.lang.Integer"
    value="15"/>
    <Parameter name="context.param.name" value="context.param.value"
    override="false"/>
    <Resource name="jdbc/DefaultDS" auth="container" type="javax.sql.DataSource"/>
    <ResourceParams name="jdbc/DefaultDS">
    <!-- Maximum number of dB connections in pool.
    Set to 0 for no limit.
    -->
    <parameter>
    <name>maxActive</name>
    <value>8</value>
    </parameter>
    <!-- Maximum number of idle dB connections to retain in pool.
    Set to 0 for no limit.
    -->
    <parameter>
    <name>maxIdle</name>
    <value>4</value>
    </parameter>
    <!-- Maximum time to wait for a dB connection to become available
    in ms, in this example 10 seconds. An Exception is thrown if
    this timeout is exceeded. Set to -1 to wait indefinitely.
    -->
    <parameter>
    <name>maxWait</name>
    <value>5000</value>
    </parameter>
    <!-- MS Sql Server dB username and password for dB connections
    -->
    <parameter>
    <name>user</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>sa</value>
    </parameter>
    <!-- Class name for MS Sql Server JDBC driver
    -->
    <parameter>
    <name>driverClassName</name>
    <value>sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    <!-- The JDBC connection url for connecting to MS Sql Server dB.
    -->
    <parameter>
    <name>url</name>
    <value>jdbc:odbc:JBoss-SQL://localhost:1433;databaseName=Development;selectMethod=cursor;</value>
    </parameter>
    <!-- This Databae Connection Pool Description.
    -->
    <parameter>
    <name>description</name>
    <value>JDBC Driver: sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    </ResourceParams>
    <Resource name="mail/Session" auth="Container"
    type="javax.mail.Session"/>
    <ResourceParams name="mail/Session">
    <parameter>
    <name>mail.smtp.host</name>
    <value>localhost</value>
    </parameter>
    </ResourceParams>
    <ResourceLink name="linkToGlobalResource"
    global="simpleValue"
    type="java.lang.Integer"/>
    </Host>
    </Engine>
    </Service>
    </Server>
    and my web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <!-- Standard Action Servlet Mapping -->
    <web-app>
    <resource-ref>
    <res-ref-name>jdbc/DefaultDS</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </web-app>
    and JBoss-SQL is data source I created from control panel settings and here is way I am retrieving connetion
    InitialContext initCtx = new InitialContext();
    DataSource ds = (DataSource) initCtx.lookup("java:comp/env/jdbc/DefaultDS");
    Connection con = ds.getConnection();
    return con;
    I tried connecting as mentioned in this website
    http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-datasource-examples-howto.html#Common%20Problems.But didn't help
    Please help urgent
    Sorry for long file. Can any one please help me in solving this problem.
    Thanks in advnace
    Kurakula

    I'd recommend that you not use the JDBC-ODBC bridge driver to connect to SQL Server. M$ and jTDS are two free type IV JDBC drivers that you should use instead. Put those JARs in the WEB-INF/lib directory.
    The database URL you're using is not correct if you change drivers. Consult the docs to find out what the proper syntax is.
    MOD

  • How do I connect to the server to agree to terms of service for my IPhone on IOS7

    I recently updated my IPhone 5 to IOS7 and I need to agree to the terms of service but I cannot connect to the server.  What should I do?

    Sorry, you can't connect through the PC to enable internet on your BlackBerry.
    That's why it has the wireless mobile radio and WiFi.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Sharepoint list dataheet view error "Cannot connect to the server at this time. You can continue working with this list, but some data may not be available"

    I have a List which is having around 14000 items in it.while opening that list in datasheet view it is giving error .
    Below is a summary of the issue:
    After selecting datasheet view beow error occurs:
        "Cannot connect to the server at this time.  You can continue working with this list, but some data may not be available."
        "Unable to retrieve all data."
        The item counts displays say 100 out of 14000 items.
    Exporting List to excel is giving only 2000 records out of 14000 records.
    Other Observations   -  
    This is happening to only one list on the site .There are other lists in the site whose no. of records is equal to 8000 to 9000.They are working absolutely fine without any error.
    Also, If I am saving this list as a template and creating another list with it ,then it is working absolutely fine with 14000 records,so the issue does not seem to be related with no. of records as the template list is working fine.
    I have checked the Alternate access mapping setting ,its fine.
    It should not be related to lookup,datefield or any other column as the list created from it template is working fine with all these columns.
    I checked below links also ,but doesn't seem to work in my case.
    http://social.technet.microsoft.com/forums/en-US/sharepointadminprevious/thread/974b9168-f548-409b-a7f9-a79b9fdd4c50/
    http://social.technet.microsoft.com/Forums/en-US/smallbusinessserver/thread/87077dd8-a329-48e8-b42d-d0a8bf87b082
    http://social.msdn.microsoft.com/Forums/en-US/sharepointgeneral/thread/dc757598-f670-4229-9f8a-07656346b9b0

    I have spent two days to resolve this issue. Microsoft has released two KBs with reference to this issue...but are not appearing in search results at the top.
    I am sharing my finding.
    1. First install the
    KB2552989 (Hopefully you might have already installed it. The KB detetcts it and informs the user.)
    2. Then update registry by adding new key for data fetch timeout as mentioned inKB2553007
    These two steps resolved the issue in our environment. Hope it might help others as well.
    Pradip T. ------------- MCTS(SharePoint 2010/Web)|MCPD(Web Development) https://www.mcpvirtualbusinesscard.com/VBCServer/paddytakate/profile

Maybe you are looking for

  • Installation of ecc6.0

    while installing ecc6.0 in windows we got error in ABAP export stage. the error is executing script. can u tell to me that solution for that

  • Burn issues

    IDvd finds errors in the burn of my dvd everytime. I redid the entire movie and layout many times with no help. This is especially wierd because it only does it with this one file. Help.

  • How do I get rid of title bar?

    When I installed Firefox on my new Windows 8 computer, I got a style in which there is no title bar. The tabs are up there with an orange Firefox button at the left. It provides access to the menu items. I like that. However, I wanted the function of

  • Contribute CS4 no longer works with updated OS X 10.9.5, but as it won't launch I cannot deactivate - any advice?

    AS CS4 does not work wit the newer Mac version of OS X I want to deactivate from the computer. However, I cannot do so as I can't launch CS4 to deactivate and so I am going around in a loop. There must be a way to resolve and Adobe just is not respon

  • Replication sql server to oracle

    Hi all, Anyone here good at replication? Can you help me what freeware, or poor woman's script, or cheaper tool (compared to GG) to replicate table from sql server to oracle? I tried googling it but it just too complex to understand :( Please help...