OCI connection Locked

Hi Guys:
I have a Server application in C++. This application connects with Oracle DataBase (9.2.0.5). The application fork in 8 child process, and each one keep a connection with the database. But after several transactions received and update in the DB, the child process is locked waiting for answer from oracle.
I think is init.ora issue. Could anybody guide me with that?
Thanks a lot.

Hi,
Does each of the child processes do a commit after having done their part of insert/updates. There is every likelihood of processes waiting for a particular row to get unlocked (which happens only on a commit).
Thanks
Sumit

Similar Messages

  • Oracle 8.1.5 and JDBC OCI connection problem

    We are running Oracle 8.1.5 on Solaris 7 machine, and our java application running on JDK 1.2 connects to Oracle via JDBC thin driver because we couldn't make jdbc oci driver work.
    When we try to connect via oci with the driver originally shipped with 8.1.5, we get:
    Exception in thread "main" java.lang.UnsatisfiedLinkError: make_c_state
    at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:213)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:198)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:251)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:224)
    at java.sql.DriverManager.getConnection(Compiled Code)
    at java.sql.DriverManager.getConnection(DriverManager.java:137)
    at JDBCTest.main(Compiled Code)
    After we downloaded 8.1.6sdk driver from technet and install it, we get:
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no ocijdbc8 in java.library.path
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Error.<init>(Error.java:50)
    at java.lang.LinkageError.<init>(LinkageError.java:43)
    at java.lang.UnsatisfiedLinkError.<init>(UnsatisfiedLinkError.java:42)
    at java.lang.ClassLoader.loadLibrary(Compiled Code)
    at java.lang.Runtime.loadLibrary0(Runtime.java:471)
    at java.lang.System.loadLibrary(System.java:745)
    at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:209)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:198)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:251)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:224)
    at java.sql.DriverManager.getConnection(Compiled Code)
    at java.sql.DriverManager.getConnection(DriverManager.java:137)
    at JDBCTest.main(Compiled Code)
    I searched this forum for answer and only relevent answer from oracle was: consult README file! Readme file mentions that lobocijdbc.so file is shared library file for oci connection. That't all. So what?
    I added the directory where libocijdbc8.so resides to LD_LIBRARY_PATH, and System.getProperty("java.library.path") shows content of LD_LIBRARY_PATH correctly.
    null

    Please this is not simple as simple as checking the classpath and LD_LIBRARY_PATH.
    I tried the sample program and the result is the same. As pointed out first by Won, putting the libocijdbc8.so from SDK8.1.6 in the LD_LIBRARY_PATH has no effect at all. It gives the unsatisfied linker error. The sample program fails. However the sample program works fine with the libocijdbc8.so from sdk8.1.5. The library gets loaded. But at the time of creating the connection it gives make_c_state error.
    Here is my CLASSPATH, PATH and LD_LIBARY_PATH variables
    ORACLE_HOME=/opt/oracle/product/8.1.5
    LD_LIBRARY_PATH=/usr/local/lib:/usr/lib:/opt/oracle/product/8.1.5/lib
    PATH=/usr/openwin/bin:/usr/sbin:/usr/local/bin:/usr/ccs/bin:/usr/ucb:/opt/oracle/product/8.1.5/lib
    Hope you are able to provide better answer then check your environment variables.
    THE libocijdbc8.so FROM SDK8.1.6 DOES NOT GET LOADED AT ALL.
    Waiting for the reply.
    Please Help.
    Regards,
    Vipul Modi.
    Novell Inc.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Won, Taewoong([email protected]):
    We are running Oracle 8.1.5 on Solaris 7 machine, and our java application running on JDK 1.2 connects to Oracle via JDBC thin driver because we couldn't make jdbc oci driver work.
    When we try to connect via oci with the driver originally shipped with 8.1.5, we get:
    Exception in thread "main" java.lang.UnsatisfiedLinkError: make_c_state
    at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:213)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:198)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:251)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:224)
    at java.sql.DriverManager.getConnection(Compiled Code)
    at java.sql.DriverManager.getConnection(DriverManager.java:137)
    at JDBCTest.main(Compiled Code)
    After we downloaded 8.1.6sdk driver from technet and install it, we get:
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no ocijdbc8 in java.library.path
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Error.<init>(Error.java:50)
    at java.lang.LinkageError.<init>(LinkageError.java:43)
    at java.lang.UnsatisfiedLinkError.<init>(UnsatisfiedLinkError.java:42)
    at java.lang.ClassLoader.loadLibrary(Compiled Code)
    at java.lang.Runtime.loadLibrary0(Runtime.java:471)
    at java.lang.System.loadLibrary(System.java:745)
    at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:209)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:198)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:251)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:224)
    at java.sql.DriverManager.getConnection(Compiled Code)
    at java.sql.DriverManager.getConnection(DriverManager.java:137)
    at JDBCTest.main(Compiled Code)
    I searched this forum for answer and only relevent answer from oracle was: consult README file! Readme file mentions that lobocijdbc.so file is shared library file for oci connection. That't all. So what?
    I added the directory where libocijdbc8.so resides to LD_LIBRARY_PATH, and System.getProperty("java.library.path") shows content of LD_LIBRARY_PATH correctly.
    <HR></BLOCKQUOTE>
    null

  • Application crashes with timesten database  over  OCI connection

    Application crashes with timesten database over OCI connection
    #0 0x405e09f8 in kpudsany () from /home/oracle/TimesTen/ratingtt1121/ttoracle_home/instantclient_11_1/libclntsh.so.10.1
    #1 0x405728d0 in OCIDescribeAny () from /home/oracle/TimesTen/ratingtt1121/ttoracle_home/instantclient_11_1/libclntsh.so.10.1
    #2 0x43748a5a in GDBociDriver::StoredProcArgumentList () from /home/omni/library/libgfr_dboci.so
    #3 0x4374e865 in GDBociDriver::StoredProcCallFormat () from /home/omni/library/libgfr_dboci.so
    #4 0x4376ec9a in GDBociDriver::ExecuteStmtBind () from /home/omni/library/libgfr_dboci.so
    #5 0x4376fc69 in GDBociDriver::Execute () from /home/omni/library/libgfr_dboci.so
    #6 0x436ba240 in GDBstatement::Execute () from /home/omni/library/libgfr_dblayer.so
    #7 0x43736106 in GDBociDriver::SetModule () from /home/omni/library/libgfr_dboci.so
    #8 0x4366cb22 in GDBconnectionPool::GetConnection () from /home/omni/library/libgfr_dblayer.so
    #9 0x4367a9db in GDBdriver::LoginConnectionGet () from /home/omni/library/libgfr_dblayer.so
    #10 0x4373dbaa in GDBociDriver::Login () from /home/omni/library/libgfr_dboci.so
    #11 0x4377380f in CreateOCIDriver () from /home/omni/library/libgfr_dboci.so
    #12 0x4367bb2a in GDBdriverLoader::CreateDriver () from /home/omni/library/libgfr_dblayer.so
    #13 0x436d423d in IGDBdriverMgr::GetDriverAndLogin () from /home/omni/library/libgfr_dblayer.so
    #14 0x436d4da1 in IGDBdriverMgr::GetDriver () from /home/omni/library/libgfr_dblayer.so
    #15 0x436a5071 in GDBserverDef::InitialLogin () from /home/omni/library/libgfr_dblayer.so
    #16 0x433247cc in CcapAdbAccess::Init (this=0x9e85a88) at CcapAdbAccess.C:161
    #17 0x43331c44 in CcapMain::Run (this=0x434eeb80, sdpId=2, processName=0x9dae29c "URE61_O2") at CcapMain.C:132
    #18 0x080947d1 in ccap_thread (arg=0x0) at main.C:1588
    #19 0x080e7bd2 in ThreadManager::WrapperRoutine (ipArg=0x9e84fc0) at ThreadManager.C:176
    #20 0x0035f44a in start_thread () from /lib/libpthread.so.0
    Timesten has some limitations and it says:
    Describing objects with OCIDescribeAny() is supported only by name. Describing PL/SQL objects is not supported.
    home/omni/library/libgfr_dblayer.so
    Cloud you please tell us whit might be the reason for this

    Are you able to provide exact details of the OCIDescribeAny call being made by the application (including parameter values)?
    Chris

  • Using a Context in Pro*C from OCI connection

    Hi all.
    I have to write embedded SQL instruction using a context based upon an OCI connection.
    I get the connection from an Arbor/BP API that return an LDA_DEF structure and I want to execute the SQL instruction on that connection.
    Does anybody of you meet something like this?
    Thanx
    Claudio

    hey VARCHAR is the same as VARCHAR2, isn't it???Yes, they are the same (as long as the ANSI committee is not going to change the definition of VARCHAR)
    What I was trying to say is that VARCHAR is an external datatype just like STRING
    in any case will it work from STRING of host language to VARCHAR2 of oracle database while inserting???I pointed you to the documentation, but you will only know for sure, if you try it yourself with a small example

  • Group by SQL functionality under OCI connection

    Hi,
    I am using OCI connection to load data into Essbase cube. I was just wondering, where to define group by statements in the connection panel. Because i only see Select,From and Where boxes.
    Can i put my groupby script under where condition?

    You can ignore the other boxes besides the select one, you can put the full sql statement in the select box though remove the select.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Load-balancing with OCI connections

    Gurus,
    Oracle Identity Federation (OIF) can leverage an Oracle database as its transient data store in which case it uses JDBC-OCI connections to connect. However, there is no provision in OIF of defining multiple databases for load-balancing purposes.
    Is this achievable using some load-balancer in front of multiple database instances and using a virtual hostname/IP in tnsnames.ora which OIF refers to?
    -Vinod

    I would say that using two seperate databases (with replication)
    as the backend would mean that one database, at any time,
    might be lagging the other, depending on which tables are updated
    and how replication is implemented.
    Connect Time Failover, rather than Load Balancing, might be an
    implementation -- to handle Instance Failure (eg node / site has gone down).
    Instead of Load Balancing.
    Load Balancng between two seperate databases would be usable
    if you are sure that either of
    a. The underlying data doesn't change
    OR
    b. The application and users are aware that they might see different data
    if there ARE changes to the data, not yet synchronised between the two DBs.

  • Oci connection-entry point kpufhndl0 could not be located

    hi
    i use jdev 10.1.3.3 & 10g.
    a thin connection to db works fine, but i have to use an oci connection which i fail to set.
    i've edited jdev.conf file as described here: http://www.oracle.com/webapps/online-help/jdeveloper/10.1.2/state/content/navId.4/navSetId._/vtTopicFile.db%7Ccdb_rconnectionreqsoci~html/
    and added AddNativeCodePath pointing to oracle installation directory.
    but an attempt to test a connection returns an error saying "The procedure entry point kpufhndl0 could not be located in the dynamic link library OCI.dll".
    i've found a post saying that this issue has been solved by placing jdbc:oracle:oci:@host:port:sid in jdbc custom url field of db settings. not i my case, i'm getting the same error.
    any thoughts?
    thanks a lot!
    Message was edited by:
    cyclid

    sorry, no solution yet. bumpin' it...

  • OCI Connection Pool

    Hi,
    How do I use an OCI Connection Pool as a data source in OC4J?
    A sample data-sources.xml would be helpful.
    A snippet of servlet code would be great!
    Thanks

    Hi,
    OracleOCIConnectionPool extends OracleDataSource and I have
    created and attached a example test case OCIConnPoolJNDI.java of
    how to register this OCI pool object via JNDI InitialContext and
    look it up.
    The test assumes a default directory /tmp/JNDI/jndi_dir to exist
    that can be changed. You also need dbjava/lib/jndi.zip (or
    jndi.jar) and jis/lib/aurora_client.jar in your CLASSPATH
    * Different Config test for connection pooling
    import java.sql.*;
    import java.io.*;
    import java.util.*;
    import java.math.BigDecimal;
    import oracle.jdbc.*;
    import oracle.jdbc.pool.*;
    import oracle.jdbc.oci.*;
    import oracle.sql.*;
    import javax.naming.*;
    import javax.naming.spi.*;
    import javax.sql.*;
    public class OCIConnPoolJNDI
    public static void main(String args[]) throws SQLException,
    NamingException
    String url = "jdbc:oracle:oci8:@" ;
    Context ctx = null;
    Hashtable env = new Hashtable (5);
    env.put (Context.INITIAL_CONTEXT_FACTORY,
    "com.sun.jndi.fscontext.RefFSContextFactory");
    String fileDir = "file:/tmp/JNDI";
    System.out.println("fileDir = " + fileDir);
    env.put (Context.PROVIDER_URL, fileDir);
    ctx = new InitialContext(env);
    Properties poolconfig = new Properties( ) ;
    poolconfig.put(OracleOCIConnectionPool.CONNPOOL_MIN_LIMIT,
    "1") ;
    poolconfig.put(OracleOCIConnectionPool.CONNPOOL_MAX_LIMIT,
    "10") ;
    poolconfig.put(OracleOCIConnectionPool.CONNPOOL_INCREMENT,
    "2") ;
    poolconfig.put(OracleOCIConnectionPool.CONNPOOL_NOWAIT,
    "true") ;
    poolconfig.put(OracleOCIConnectionPool.TRANSACTIONS_DISTRIBUTED,
    "true") ;
    OracleOCIConnectionPool ods = new OracleOCIConnectionPool
    ("scott", "tiger", url, poolconfig);
    System.out.println("-- Doing the Bind --");
    ctx.bind ("jndi_dir/tkpjcpdb1",ods);
    ods.close();
    System.out.println("-- Doing the Lookup --");
    OracleOCIConnectionPool cpool = (OracleOCIConnectionPool)
    ctx.lookup
    ("jndi_dir/tkpjcpdb1");
    test1(cpool);
    // Close the connection
    cpool.close();
    cpool = null;
    public static void test1(OracleOCIConnectionPool cpool)
    throws SQLException
    System.out.println ("User = " + cpool.getUser());
    System.out.println ("URL = " + cpool.getURL());
    System.out.println ("Default Min poolsize Limit = " +
    cpool.getMinLimit());
    System.out.println ("Default Max poolsize Limit = " +
    cpool.getMaxLimit());
    System.out.println ("Default Connection Increment = " +
    cpool.getConnectionIncrement());
    java.util.Properties p = new java.util.Properties( );
    p.put (OracleOCIConnectionPool.CONNPOOL_MIN_LIMIT, "1") ;
    p.put (OracleOCIConnectionPool.CONNPOOL_MAX_LIMIT, "1") ;
    p.put (OracleOCIConnectionPool.CONNPOOL_INCREMENT, "0") ;
    cpool.setPoolConfig(p);
    System.out.println ("Set Min poolsize Limit = " +
    cpool.getMinLimit());
    System.out.println ("Set Max poolsize Limit = " +
    cpool.getMaxLimit());
    System.out.println ("Set Connection Increment = " +
    cpool.getConnectionIncrement());
    //get a connection from the pool
    OracleOCIConnection conn1 = (OracleOCIConnection)
    cpool.getConnection();
    OracleOCIConnection conn2 = (OracleOCIConnection)
    cpool.getConnection();
    OracleOCIConnection conn3 = (OracleOCIConnection)
    cpool.getConnection();
    System.out.println("ActiveSize of pool = " +
    cpool.getActiveSize());
    System.out.println("PoolSize = " + cpool.getPoolSize());
    testConn1(conn1);
    testConn1(conn2);
    testConn1(conn3);
    conn1.close();
    conn2.close();
    conn3.close();
    public static void testConn1 (OracleOCIConnection conn)
    throws SQLException
    System.out.println ("Got Pooled connection ...");
    // try operations via the pool
    Statement stmt = conn.createStatement ();
    ResultSet rset = stmt.executeQuery ("select USER from
    dual");
    while (rset.next ())
    System.out.println (" User = " + rset.getString (1));
    rset.close();
    stmt.close();

  • Java 10g OCI connection

    I am not able to connect to oracle 10g from java(j2sdk1.4.2_04) using OCI. I have the basic instantclient10_1 downloaded and I have made my classpath and path point to the instantclient directory. Os used is win2k.
    I think I am able to load the driver because
    Class.forName ("oracle.jdbc.driver.OracleDriver"); given inside try doesn't get caught.
    when I use
    DriverManager.getConnection("jdbc:oracle:oci8:scott/tiger@"); I get runtime error(no compile error)
    Exception in thread "main" java.lang.UnsatisfiedLinkError: t2cGetCharSet
    at oracle.jdbc.driver.T2CConnection.t2cGetCharSet(Native Method)
    at oracle.jdbc.driver.T2CConnection.getCharSetIds(T2CConnection.java:290
    7) and some more lines.
    The same error I get if I use oci instead of oci8 and if I add orcl after @.
    I then tried
    java -classpath %cp% -Djava.library.path=C:\instantclient MyJavaApp
    which gives
    java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
    But I am able to connect using thin client. Please help in setting my oci connection right.

    I just realized after the last post, that not everyone is amiliar with the latin character set.
    I'm refering to ISO 8859-1 Or WE8ISO8859P1
    The default on my pc is
    [AMERICAN_AMERICA.WE8MSWIN1252] which may or may not be what I need.
    But some how for me the following always does the trick nicely.
    AMERICAN_AMERICA.WE8ISO8859P1
    The reall killer in going from UTF to another format or vice versa. The 10g OCI client puts to much faith in Microsoft and defaults you to whatever is in windows.
    -- Checking your NLS:
    From windows, to check the NLS_LANG, you need to open a command prompt and to run sqlplus in command line mode.
    First, check if it's set in the environment:
    SQL> host echo %NLS_LANG%
    If this reports just %NLS_LANG% back, the variable is not set in the
    environment. If it's set it reports something like
    ENGLISH_UNITED KINGDOM.WE8PC850
    If NLS_LANG is not set in the enviroment, you should check the value
    in the registry:
    SQL> @.[%NLS_LANG%].
    If you get something like:
    unable to open file ".[ENGLISH_UNITED KINGDOM.WE8ISO8859P1]."
    the "file name" between the '[]' is the value of the registry parameter.
    (This is NOT an error but just a "trick" to get the NLS_LANG value)
    If you get this as result:
    unable to open file ".[%NLS_LANG%]."
    then the parameter NLS_LANG is also not set in the registry.
    Note: the @.[%NLS_LANG%]. "trick" reports the NLS_LANG known by the sqlplus
    executable, it will not read the registry itself.
    But then you are not sure if the variable is set in the enviroment or in the
    registry. That's the reason of checking with the host commando first.

  • Issues with OCI connection..

    I've been working on this for over a day, with infinite variations on the theme; but I cannot get a basic query to give back data. I've got the following code:
    <?
    $orcl = <<<OUT
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = )(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = orcl)(INSTANCE_NAME = orcl)
    OUT;
    $oci = oci_connect('','',$orcl)
    or die('Connection error.');
    if(!$oci) {
         echo 'Connection error: ';
         if(oci_error($oci)) {
              $oerr = oci_error();
              echo $oerr['code'];
         die;
    echo '<p>Initiated connection.</p>';
    $input = <<<OUT
         select * from user_objects
         where object_name not like '%SYS_%'
         order by object_name;
    OUT;
    $query = oci_parse($oci, $input);
    if(!$query) {
         $oerr = oci_error($oci);
         echo $oerr['code'];
    if(oci_execute($query)) {
         while($output = oci_fetch_array($query)) {
              $object = $output['OBJECT_NAME'];
              echo $object . '
    } else {
         echo 'Issue occurred..';
    oci_close($oci);
    ?>
    If I open this in a browser, it gives back the following:
         Initiated connection.
         Issue occurred..
    In other words, this indicates to me that the connection is being created, but that the query itself isn't being parsed or executed correctly. I've changed various things, for instance inserting 'orcl' instead or $orcl in the oci_connect(), including environment variables, etc. etc.; but I've gotten no further than this with it.
    Interestingly, if I do 'php index.php' on the command line, I get an ORA-12557 error (why is the page giving back 'Initiated connection' if this is the case).
    Installed Oracle is 10g 10.1.0 on Windows, connection is local. Thanks very much for any input..

    Odd; but thank you.
    I generally do that in order to offset db interactions a bit from other code and it's never been an issue with postgres interactions; but in this case I changed that and it's working now. I'm off to look into why this is (I imagine oci_parse isn't into it while PEAR::DB or pg_query ignore it; but I'm not certain).
    In either case, thank you.

  • Oracle OCI connectivity issue

    Hi All,
    We have jave code, that resides in the same server as the Oracle DB( HP-Ux). It uses OCI driver to connect to the server.
    jdbc.url=jdbc:oracle:oci8:@
    jdbc.username=
    jdbc.password=
    These are the properties that had been set. The code was working fine in Oracle 9.i. On migrating the server to 10g we get an error saying that
    java.java.sql.SQLException: SimpleDataSource:connect - java.sql.SQLException: ORA-01017: invalid username/password; logon denied.
    OfCourse the basic idea would be that userid/pwd is not being passed. But we have not been setting the user id and pwd in 9i and it is working there, but not in 10g. So does OCI driver use the os userid/pwd or something for connecting.
    Thanks in Advance,
    Vignesh

    No, we have no such file. In fact i just wrote a simple connection class. The code is as below.
    import java.sql.Connection;
    import java.sql.*;
    class SimpleCon {
         public static void main(String args[]){
              getConnection();
         public static void getConnection() {
         try {
              Connection con = connect();
              System.out.println("Connected");
         } catch(SQLException ex) {
              ex.printStackTrace();
         public static Connection connect() throws SQLException
         final String methodSig = "SimpleDataSource:connect";
         String jdbcUrl = "jdbc:oracle:oci:@"     ;
         String jdbcUsername = ""     ;
         String jdbcPassword = "";
         Connection conn = null;
         try
         Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
         conn = DriverManager.getConnection
         (jdbcUrl, jdbcUsername, jdbcPassword);
                   DatabaseMetaData dbm = conn.getMetaData();
                   System.out.println(dbm.getUserName());
                   System.out.println(dbm.getDriverName());
                   System.out.println(dbm.getDriverVersion());
         //setConnectionProperties(conn);
         return conn;
         catch (SQLException e) {
         e.printStackTrace();
              System.err.println("SQL error: " + e.getErrorCode());
              System.err.println("SQL state: " + e.getSQLState());
              throw(e);
         }catch(Exception ie){
                   ie.printStackTrace();
              return null;
    This particular code works in HP-UX - Oracle 9.i . If we do not pass userid/pwd it usually connects in as OS user, and Oracle has a User id Setup corresponding to the os user.
    But the same code does not work in Oracle 10g, even though we have the Oracle User corresponding to the OS user set up. If we pass that particular user id and pwd, it works fine.
    Does it throw and light.
    Thanks
    Vignesh

  • HP Laserjet m602 firmware upgrade successful_network connection locks up printer

    Our laserjet m602dn control panel displayed that a firmware update was successful, but connecting the ethernet cable to the printer locks it up.  The update removed a blinking amber attention light (on control panel) that kept the printer from going into "Ready" mode.
    After the firmware update, the printer displays "Ready"; printing works through a local connection; pinging to the ip address fails. Can a firmware update be successful on a defective jetdirect/formatter board? If the board is defective, why does a local connection work?
    Are there any known issues with the following part: CE988-67906?
    Thank you.
    JP

    JP_VA,
    I am sorry, but to get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial printer. You can do this at http://h30499.www3.hp.com/hpeb/ .
    I hope this helps.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • HELP: Connectivity locked up problem

    Firstly I am sorry about I don't know this is the right place to post this thread...
    I have a Nokia 5800 Xpressmusic. And I have a problem with it. When I tap into "Menu-Settings-Connectivity" and try to exit from there my "Settings" menu locked up. It shows that "Settings" menu always running background. And I can't tap anymore "Settings" menu until restart my phone. How can I resolve this problem? 

    I write my step by step and i attached two pictures to understand my problem easily.
    And please replace extension to jpg from txt.
    1) I tap menu button and it opens menu. (picture 5800mainmenu.jpg) but for now ignore red circle in the picture.
    2) Then I tap "Settings" from main menu and it opens settings for phone (picture 28.jpg)
    3) Then I tap "Connectivity" from settings menu and it opens another menu. (I couldn't attach third picture. sorry for that)
    4) I tap "Exit" from "Connectivity" and it don't. It partially locked up. I mean i can't use "Settings" menu if dont restart my phone. It always show busy "Settings" menu like in picture 1 that marked with red circle.
    I hope it would be more understandable...
    Attachments:
    5800mainmenu.txt ‏82 KB
    28.txt ‏43 KB

  • Connecting locked ipod to new computer

    I have a 2nd generation ipod touch that is locked and the screen say connect to itunes. When I connect to my mac, itunes doesn't recognize the ipod because this computer is not the original computer that it was synced to. How can I reset the ipod and the passcode?

    From http://support.apple.com/kb/HT1212
    If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present. Refer to Updating and restoring iPhone and iPod touch software: http://support.apple.com/kb/HT1414

  • OCI connect error reported to cause core dump

    I use OCI in my developped library. Other developers use my library for their development purposes. Last night, the oracle server went down for patching, and a user reported a core dump that I recognized it is comming from my OCI section of library.
    I do OCI initialization, select, execute a query, and cleanup.
    Has there been any reports as for the case, when a connection is initialized, and the server goes down after successful initialization but before calls to execute a query or commit?
    Any comment???
    I have the error message below, and replace prepriotory info with xxxxxxx.
    thanks,
    --M
    Fatal NI connect error 12541, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xxxxxxx)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=xxxxxx)(CID=(PROGRAM=xxxxxx@fashing)(HOST=xxxxxx)(USER=xxxxx))))
    VERSION INFORMATION:
    TNS for Solaris: Version 10.1.0.4.0 - Production
    TCP/IP NT Protocol Adapter for Solaris: Version 10.1.0.4.0 - Production
    Time: 15-FEB-2007 15:49:09
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12541
    TNS-12541: TNS:no listener
    ns secondary err code: 12560
    nt main err code: 511
    TNS-00511: No listener

    We have seen core dumps in system calls earlier and have tried to debug them. We did not have the exact same stack as you but the core used to show up a stack in _malloc.
    As it turned out that we had out of bound array reads (used purify to detect this) and which resulted in this dump. So the stack shown in this case could be totally misleading and the real cause could be somewhere else.
    Hope this helps.

Maybe you are looking for

  • Font Size in Character Mode Report

    Hi , I have to print a report in a pre printed Stationary, which has tabular columns The columns are little bit small . when i have bigger data say value like 9999999.45 it over prints on the pre printed text. is it possible to reduce the size of the

  • S-Video output no longer works under 10.4.7, iBook G3 700MHz

    Before the 10.4.7 update, I would have to put the OS to sleep and when I brought it back, it would recognize that there was a TV connected as opposed to a VGA display. Now after the update, no matter how many sleeps or reboots I do, I only get the se

  • Leaving to Selection Screen in a Module Pool

    hi,    I have a module pool with a number of screen.Now ifi am on the 4 th screen after i process something i need to go back to the selection screen. Giving leeve to screen 1000 doesnt work.Could neone please tell what command must be written.

  • Z field in open item display

    Hi, in F-04 screen , we have a Z field called BankRef No. while uploading customer open item, we use this field. while showing the customer open item display, this Z field is not shown. the requirement is to see this field in the customer open item d

  • Nokia E5?

    Hello, I've got the Nokia E5. Great phone but in the dark, the flashlight on the back is on. The battery is dead in 1 night so i want to put the flashligt off. But i don't now how to do it. I use the space but it doesn't work because the flashlight i