ORA-12154 with Oracle 10.2 Client to 9.2.0.3 Database

I'm having a devil of a time getting connected to a new installation of Oracle 9.2.0.3 on Windows 2003. I have no problems connecting from clients running the 9i client. I have a server using the 10.2 client and it won't talk to the Windows server. I don't think it's the client installation since this server with the 10g client has no problems talking with Oracle 9.2.0.6 servers running on Unix. It's only trying to talk with the 9.2.0.3 on Windows.
I tried installing the 32-bit 10.2 client on a newly installed client, and it also can't talk to Oracle on Windows. Again, it has no problem connecting to the Oracle servers on Unix.
Here are the two types of Oracle servers
Windows:
Window Server 2003 32-bit
Oracle 9.2.0.3 32-bit
Unix:
Sun Solaris 64-bit
Oracle 9.2.0.6 64-Bit
Any help would be appreciated. I've tried Googling this, but can't find any helpful solutions. The thing that has me baffled is that I can connect to Oracle on Unix, it's just Oracle on Unix that has the issue.
Thanks,
Leonard Nisenoff

See Oracle 9i Client and 10g install on the server - Help Please
Connections between 10.2 and 9.2.0.1, 9.2.0.2 or 9.2.0.3 are not supported.

Similar Messages

  • ORA-12154 using Oracle.DataAccess.Client

    I am experiencing an ORA-12154 exception when accessing a remote Oracle database using ADO.NET called from c# code running on a Windows 2003 system. The code functions correctly on our internal (remote) database using the Oracle XE 10.2 Client. At the customer site with Oracle 10.1 Client the same code generates the 12154 error.
    At the customer site, I can connect without errors with the customer's connection information (Hostname, port, SID) using Navicat 8 Lite for Oracle and SQL-Plus. I can also connect with no problems using ODBC (except I can't use ODBC because it causes other problems when accessed from ASP.NET).
    The connection string is correctly formulated i.e. "Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=myServerName)(PORT=1521)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=myServiceName)));User Id=myUserName;Password=myPassword"
    When I run TNSPING on the client's system I get the following result (server and SID name altered for confidentiality reasons):
    Adapter TNSNAMES zur Auflösung des Alias benutzt
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = myServerName)(PORT = 1521)) (CONNECT_DATA = (SERVER = dedicated) (SERVICE_NAME = myServiceName)))
    OK (10 ms)
    I can't determine anything about the listener since I don't have access to teh datbase server.
    To summarize, my .net code fails when I use the Oracle Data Access Client, but works fine with ODBC, and Navicat, SQL Plus also work fine.
    Can anyone suggest the cause and possible solution for this problem? - thanks in advance for any help :)

    user8609285 wrote:
    I am experiencing an ORA-12154 exception when accessing a remote Oracle database using ADO.NET called from c# code running on a Windows 2003 system. The code functions correctly on our internal (remote) database using the Oracle XE 10.2 Client. At the customer site with Oracle 10.1 Client the same code generates the 12154 error.
    At the customer site, I can connect without errors with the customer's connection information (Hostname, port, SID) using Navicat 8 Lite for Oracle and SQL-Plus. I can also connect with no problems using ODBC (except I can't use ODBC because it causes other problems when accessed from ASP.NET).
    The connection string is correctly formulated i.e. "Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=myServerName)(PORT=1521)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=myServiceName)));User Id=myUserName;Password=myPassword"
    When I run TNSPING on the client's system I get the following result (server and SID name altered for confidentiality reasons):
    Adapter TNSNAMES zur Auflösung des Alias benutzt
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = myServerName)(PORT = 1521)) (CONNECT_DATA = (SERVER = dedicated) (SERVICE_NAME = myServiceName)))
    OK (10 ms)
    I can't determine anything about the listener since I don't have access to teh datbase server.
    To summarize, my .net code fails when I use the Oracle Data Access Client, but works fine with ODBC, and Navicat, SQL Plus also work fine.
    Can anyone suggest the cause and possible solution for this problem? - thanks in advance for any help :)ora-12154 means one thing and one thing only.
    [oracle@vmlnx01 ~]$ oerr ora 12154
    12154, 00000, "TNS:could not resolve the connect identifier specified"
    // *Cause:  A connection to a database or other service was requested using
    // a connect identifier, and the connect identifier specified could not
    // be resolved into a connect descriptor using one of the naming methods
    // configured. For example, if the type of connect identifier used was a
    // net service name then the net service name could not be found in a
    // naming method repository, or the repository could not be
    // located or reached.
    // *Action:
    //   - If you are using local naming (TNSNAMES.ORA file):
    //      - Make sure that "TNSNAMES" is listed as one of the values of the
    //        NAMES.DIRECTORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA)
    //      - Verify that a TNSNAMES.ORA file exists and is in the proper
    //        directory and is accessible.
    //      - Check that the net service name used as the connect identifier
    //        exists in the TNSNAMES.ORA file.
    //      - Make sure there are no syntax errors anywhere in the TNSNAMES.ORA
    //        file.  Look for unmatched parentheses or stray characters. Errors
    //        in a TNSNAMES.ORA file may make it unusable.
    //   - If you are using directory naming:
    //      - Verify that "LDAP" is listed as one of the values of the
    //        NAMES.DIRETORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA).
    //      - Verify that the LDAP directory server is up and that it is
    //        accessible.
    //      - Verify that the net service name or database name used as the
    //        connect identifier is configured in the directory.
    //      - Verify that the default context being used is correct by
    //        specifying a fully qualified net service name or a full LDAP DN
    //        as the connect identifier
    //   - If you are using easy connect naming:
    //      - Verify that "EZCONNECT" is listed as one of the values of the
    //        NAMES.DIRETORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA).
    //      - Make sure the host, port and service name specified
    //        are correct.
    //      - Try enclosing the connect identifier in quote marks.
    //   See the Oracle Net Services Administrators Guide or the Oracle
    //   operating system specific guide for more information on naming.Bottom line is the net service name you presented is not found in the tnsnames that was being used. Which may not be the tnsnames you think was being used.
    And since it never resolved that on the client side, there is no need to look to anything (like the listener) on the host side. You never got out of your driveway, so there is no need to see if the entrance to your destination is open.

  • ORA-12154 as oracle user, whit the root account it works fine

    Hello there,
    I've a problem with a client installation if I try to connect to the database. I've the following configuration:
    1. Database: Running on a Ubuntu Jeos VM, Oracle 11g (Release 11.1.0.6.0 64 bit)
    2. Client: Running on a CentOS 5.2 VM, Oracle Client 10g Linux 32bit
    I've configured the tnsnames.ora and stored it in the $ORACLE_HOME/network/admin directory. The content of the tnsnames.ora file is the following:
    ORCL64=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.12.128)(PORT=1521)))(CONNECT_DATA=(SID=orcl)))
    If I try to connect to the database as the oracle user with the following command sqlplus SYS@ORCL64 AS SYSDBA, I'll get the ORA-12154  TNS:could not resolve the connect identifier specified error message. If I try the same as the root user it works fine and I can establish the connection. The same result I've got if I try the command tnsping ORCL64. As the root user the tnsnames adapter can resolve the alias, as the oracle user this is'nt possible and I'll get the error message: TNS-03505: Failed to resolve name. In both he uses the paramter file /u01/app/oracle/network/admin/sqlnet.ora. The content of the sqlnet.ora file is the following:
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT).
    Have you any suggestions how can I resolve this problem to get a connection with the oracle user.
    Thank you in advance
    Sven

    Hello,
    thanks for your answers. On the CentOS maschine, where the client is installed, there are no directory's $ORACLE_HOME/bin/oracle and $ORACLE_HOME/bin/lsnrctl. The output from the $ORACLE_HOME/network/admin/*ora is:
    -rw-r----- 1 oracle oinstall 171 28. Apr 21:25 /u01/app/oracle/network/admin/sqlnet.ora
    wx---- 1 root root 118 5. Mai 11:33 /u01/app/oracle/network/admin/tnsnames.ora
    The post-install script $ORACLE_HOME/root.sh I've started.
    On the Ubuntu Jeos VM, where the database is installed, the output from the 3 directories are:
    ls -l $ORACLE_HOME/bin/oracle
    -rwsr-s--x 1 oracle oinstall 188459338 2009-02-23 09:21 /u01/app/oracle/product/11.1.0/db_1/bin/oracle
    ls -l $ORACLE_HOME/bin/lsnrctl
    -rwxr-x--x 1 oracle oinstall 143599 2009-02-23 09:48 /u01/app/oracle/product/11.1.0/db_1/bin/lsnrctl
    ls -l $ORACLE_HOME/network/admin/*ora
    -rw-rw-r-- 1 oracle oinstall 542 2009-03-25 19:08 /u01/app/oracle/product/11.1.0/db_1/network/admin/listener.ora
    -rw-rw-r-- 1 oracle oinstall 191 2009-02-23 09:57 /u01/app/oracle/product/11.1.0/db_1/network/admin/sqlnet.ora
    -rw-rw-r-- 1 oracle oinstall 324 2009-03-25 19:12 /u01/app/oracle/product/11.1.0/db_1/network/admin/tnsnames.ora
    Kind regards
    Sven

  • Ora 12154 in oracle 11g r2

    hi all ,
    after  install oracle 11 g r2  and after configuration  i want to  connect my forms and report with my oracle database 12 c
    after copy  file tnsname.ora  from
    C:\app\hasnaa\product\12.1.0\dbhome_1\NETWORK\ADMIN
    to
    C:\Oracle\Middleware\asinst_1\config
    i try to connect in forms through username hr and pass hr
    getting this  error :
    ORA-12154: TNS: could not resolve the connect identifier specified
    this is my tnsname file:
    # tnsnames.ora Network Configuration File: C:\app\hasnaa\product\12.1.0\dbhome_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    LISTENER_ORCL =
      (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    ORACLR_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
        (CONNECT_DATA =
          (SID = CLRExtProc)
          (PRESENTATION = RO)
    ORCL =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = orcl)
    could any one help me ?

    yes , i found it in
    C:\app\hasnaa\diag\tnslsnr\hasnaa\listener\trace
    this is all  which written in it :
    Create Relation ADR_CONTROL
    Create Relation ADR_INVALIDATION
    Create Relation INC_METER_IMPT_DEF
    Create Relation INC_METER_PK_IMPTS
    System parameter file is C:\app\hasnaa\product\12.1.0\dbhome_1\network\admin\listener.ora
    Log messages written to C:\app\hasnaa\diag\tnslsnr\hasnaa\listener\alert\log.xml
    Trace information written to C:\app\hasnaa\diag\tnslsnr\hasnaa\listener\trace\ora_2124_2788.trc
    Trace level is currently 0
    Started with pid=2124
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
    Listener completed notification to CRS on start
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    Dynamic address is already listened on (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
    09-JAN-2014 16:53:52 * service_register * orcl * 0
    09-JAN-2014 16:53:55 * service_update * orcl * 0
    09-JAN-2014 16:53:58 * service_update * orcl * 0
    09-JAN-2014 16:54:01 * service_update * orcl * 0
    09-JAN-2014 16:54:25 * service_update * orcl * 0
    09-JAN-2014 16:54:28 * service_update * orcl * 0
    09-JAN-2014 16:54:37 * service_update * orcl * 0
    09-JAN-2014 16:55:01 * service_update * orcl * 0
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=hasnaa)(PORT=5500))(Security=(my_wallet_directory=C:\APP\HASNAA\admin\orcl\xdb_wallet))(Presentation=HTTP)(Session=RAW))
    09-JAN-2014 16:55:11 * service_update * orcl * 0
    09-JAN-2014 16:55:14 * service_update * orcl * 0
    09-JAN-2014 16:55:20 * service_update * orcl * 0
    09-JAN-2014 16:55:26 * service_update * orcl * 0
    09-JAN-2014 16:55:29 * service_update * orcl * 0
    09-JAN-2014 16:55:32 * service_update * orcl * 0
    09-JAN-2014 16:55:44 * service_update * orcl * 0
    09-JAN-2014 16:56:14 * service_update * orcl * 0
    09-JAN-2014 16:56:23 * service_update * orcl * 0
    09-JAN-2014 16:57:17 * service_update * orcl * 0
    09-JAN-2014 16:58:08 * service_update * orcl * 0
    09-JAN-2014 16:58:56 * service_update * orcl * 0
    09-JAN-2014 16:59:47 * service_update * orcl * 0
    09-JAN-2014 17:00:32 * service_update * orcl * 0
    09-JAN-2014 17:00:35 * service_update * orcl * 0
    09-JAN-2014 17:01:05 * service_update * orcl * 0
    09-JAN-2014 17:01:08 * service_update * orcl * 0
    09-JAN-2014 17:01:56 * service_update * orcl * 0
    09-JAN-2014 17:02:38 * service_update * orcl * 0
    09-JAN-2014 17:03:29 * service_update * orcl * 0
    09-JAN-2014 17:04:14 * service_update * orcl * 0
    09-JAN-2014 17:04:38 * service_update * orcl * 0
    09-JAN-2014 17:05:26 * service_update * orcl * 0
    09-JAN-2014 17:05:35 * service_update * orcl * 0
    09-JAN-2014 17:06:20 * service_update * orcl * 0
    09-JAN-2014 17:07:11 * service_update * orcl * 0
    09-JAN-2014 17:07:56 * service_update * orcl * 0
    09-JAN-2014 17:08:47 * service_update * orcl * 0
    09-JAN-2014 17:08:53 * service_update * orcl * 0
    09-JAN-2014 17:08:56 * service_update * orcl * 0
    09-JAN-2014 17:09:06 * service_update * orcl * 0
    Thu Jan 09 17:09:39 2014
    09-JAN-2014 17:09:39 * service_update * orcl * 0
    09-JAN-2014 17:10:12 * service_update * orcl * 0
    09-JAN-2014 17:10:36 * service_update * orcl * 0
    09-JAN-2014 17:11:27 * service_update * orcl * 0
    09-JAN-2014 17:12:15 * service_update * orcl * 0
    09-JAN-2014 17:13:00 * service_update * orcl * 0
    09-JAN-2014 17:13:51 * service_update * orcl * 0
    09-JAN-2014 17:14:39 * service_update * orcl * 0
    09-JAN-2014 17:15:27 * service_update * orcl * 0
    09-JAN-2014 17:15:36 * service_update * orcl * 0
    09-JAN-2014 17:16:27 * service_update * orcl * 0
    09-JAN-2014 17:17:12 * service_update * orcl * 0
    09-JAN-2014 17:17:51 * service_update * orcl * 0
    09-JAN-2014 17:18:39 * service_update * orcl * 0
    09-JAN-2014 17:18:45 * service_update * orcl * 0
    09-JAN-2014 17:19:36 * service_update * orcl * 0
    09-JAN-2014 17:20:27 * service_update * orcl * 0
    09-JAN-2014 17:20:36 * service_update * orcl * 0
    09-JAN-2014 17:21:27 * service_update * orcl * 0
    09-JAN-2014 17:22:15 * service_update * orcl * 0
    09-JAN-2014 17:23:03 * service_update * orcl * 0
    09-JAN-2014 17:23:51 * service_update * orcl * 0
    09-JAN-2014 17:24:39 * service_update * orcl * 0
    09-JAN-2014 17:25:03 * service_update * orcl * 0
    09-JAN-2014 17:25:36 * service_update * orcl * 0
    Thu Jan 09 17:26:31 2014
    09-JAN-2014 17:26:24 * service_update * orcl * 0
    09-JAN-2014 17:27:12 * service_update * orcl * 0
    09-JAN-2014 17:27:18 * service_update * orcl * 0
    09-JAN-2014 17:27:21 * service_update * orcl * 0
    09-JAN-2014 17:28:09 * service_update * orcl * 0
    09-JAN-2014 17:29:00 * service_update * orcl * 0
    09-JAN-2014 17:29:51 * service_update * orcl * 0
    09-JAN-2014 17:30:33 * service_update * orcl * 0
    09-JAN-2014 17:30:36 * service_update * orcl * 0
    09-JAN-2014 17:30:48 * service_update * orcl * 0
    09-JAN-2014 17:31:36 * service_update * orcl * 0
    09-JAN-2014 17:32:27 * service_update * orcl * 0
    09-JAN-2014 17:33:15 * service_update * orcl * 0
    09-JAN-2014 17:33:21 * service_update * orcl * 0
    09-JAN-2014 17:33:24 * service_update * orcl * 0
    09-JAN-2014 17:34:12 * service_update * orcl * 0
    09-JAN-2014 17:34:39 * service_update * orcl * 0
    09-JAN-2014 17:35:30 * service_update * orcl * 0
    09-JAN-2014 17:35:33 * service_update * orcl * 0
    09-JAN-2014 17:36:21 * service_update * orcl * 0
    09-JAN-2014 17:37:12 * service_update * orcl * 0
    09-JAN-2014 17:37:57 * service_update * orcl * 0
    09-JAN-2014 17:38:45 * service_update * orcl * 0
    09-JAN-2014 17:39:33 * service_update * orcl * 0
    09-JAN-2014 17:40:24 * service_update * orcl * 0
    09-JAN-2014 17:40:33 * service_update * orcl * 0
    09-JAN-2014 17:41:24 * service_update * orcl * 0
    09-JAN-2014 17:41:42 * service_update * orcl * 0
    09-JAN-2014 17:41:45 * service_update * orcl * 0
    09-JAN-2014 17:41:48 * service_update * orcl * 0
    09-JAN-2014 17:42:36 * service_update * orcl * 0
    Thu Jan 09 17:43:24 2014
    09-JAN-2014 17:43:24 * service_update * orcl * 0
    09-JAN-2014 17:44:18 * service_update * orcl * 0
    09-JAN-2014 17:44:39 * service_update * orcl * 0
    09-JAN-2014 17:45:30 * service_update * orcl * 0
    09-JAN-2014 17:45:33 * service_update * orcl * 0
    09-JAN-2014 17:46:21 * service_update * orcl * 0
    09-JAN-2014 17:46:24 * service_update * orcl * 0
    09-JAN-2014 17:46:27 * service_update * orcl * 0
    09-JAN-2014 17:47:15 * service_update * orcl * 0
    09-JAN-2014 17:48:03 * service_update * orcl * 0
    09-JAN-2014 17:48:54 * service_update * orcl * 0
    09-JAN-2014 17:49:45 * service_update * orcl * 0
    09-JAN-2014 17:50:36 * service_update * orcl * 0
    09-JAN-2014 17:51:24 * service_update * orcl * 0
    09-JAN-2014 17:52:15 * service_update * orcl * 0
    09-JAN-2014 17:53:00 * service_update * orcl * 0
    09-JAN-2014 17:53:48 * service_update * orcl * 0
    09-JAN-2014 17:54:39 * service_update * orcl * 0
    09-JAN-2014 17:55:30 * service_update * orcl * 0
    09-JAN-2014 17:55:33 * service_update * orcl * 0
    09-JAN-2014 17:56:24 * service_update * orcl * 0
    09-JAN-2014 17:57:15 * service_update * orcl * 0
    09-JAN-2014 17:58:03 * service_update * orcl * 0
    09-JAN-2014 17:58:57 * service_update * orcl * 0
    09-JAN-2014 17:59:45 * service_update * orcl * 0
    Thu Jan 09 18:00:18 2014
    09-JAN-2014 18:00:18 * service_update * orcl * 0
    09-JAN-2014 18:00:33 * service_update * orcl * 0
    09-JAN-2014 18:01:09 * service_update * orcl * 0
    09-JAN-2014 18:02:00 * service_update * orcl * 0
    09-JAN-2014 18:02:45 * service_update * orcl * 0
    09-JAN-2014 18:03:33 * service_update * orcl * 0
    09-JAN-2014 18:04:24 * service_update * orcl * 0
    09-JAN-2014 18:04:39 * service_update * orcl * 0
    09-JAN-2014 18:04:45 * service_update * orcl * 0
    09-JAN-2014 18:04:48 * service_update * orcl * 0
    09-JAN-2014 18:05:33 * service_update * orcl * 0
    09-JAN-2014 18:06:24 * service_update * orcl * 0
    09-JAN-2014 18:07:15 * service_update * orcl * 0
    09-JAN-2014 18:08:06 * service_update * orcl * 0
    09-JAN-2014 18:08:57 * service_update * orcl * 0
    09-JAN-2014 18:09:48 * service_update * orcl * 0
    09-JAN-2014 18:09:51 * service_update * orcl * 0
    09-JAN-2014 18:09:54 * service_update * orcl * 0
    09-JAN-2014 18:10:39 * service_update * orcl * 0
    09-JAN-2014 18:11:30 * service_update * orcl * 0
    09-JAN-2014 18:12:18 * service_update * orcl * 0
    09-JAN-2014 18:12:24 * service_update * orcl * 0
    09-JAN-2014 18:12:27 * service_update * orcl * 0
    09-JAN-2014 18:13:09 * service_update * orcl * 0
    09-JAN-2014 18:14:00 * service_update * orcl * 0
    09-JAN-2014 18:14:39 * service_update * orcl * 0
    09-JAN-2014 18:15:21 * service_update * orcl * 0
    09-JAN-2014 18:15:36 * service_update * orcl * 0
    09-JAN-2014 18:16:27 * service_update * orcl * 0
    Thu Jan 09 18:17:15 2014
    09-JAN-2014 18:17:15 * service_update * orcl * 0
    09-JAN-2014 18:17:51 * service_update * orcl * 0
    09-JAN-2014 18:18:42 * service_update * orcl * 0
    09-JAN-2014 18:19:18 * service_update * orcl * 0
    09-JAN-2014 18:20:06 * service_update * orcl * 0
    09-JAN-2014 18:20:36 * service_update * orcl * 0
    09-JAN-2014 18:21:21 * service_update * orcl * 0
    09-JAN-2014 18:22:12 * service_update * orcl * 0
    09-JAN-2014 18:22:57 * service_update * orcl * 0
    09-JAN-2014 18:23:48 * service_update * orcl * 0
    09-JAN-2014 18:24:39 * service_update * orcl * 0
    09-JAN-2014 18:25:27 * service_update * orcl * 0
    09-JAN-2014 18:25:33 * service_update * orcl * 0
    09-JAN-2014 18:26:24 * service_update * orcl * 0
    09-JAN-2014 18:26:54 * service_update * orcl * 0
    09-JAN-2014 18:27:39 * service_update * orcl * 0
    09-JAN-2014 18:27:42 * service_update * orcl * 0
    09-JAN-2014 18:27:45 * service_update * orcl * 0
    09-JAN-2014 18:27:48 * service_update * orcl * 0
    09-JAN-2014 18:28:36 * service_update * orcl * 0
    09-JAN-2014 18:29:27 * service_update * orcl * 0
    09-JAN-2014 18:30:12 * service_update * orcl * 0
    09-JAN-2014 18:30:36 * service_update * orcl * 0
    09-JAN-2014 18:30:45 * service_update * orcl * 0
    09-JAN-2014 18:31:33 * service_update * orcl * 0
    09-JAN-2014 18:32:21 * service_update * orcl * 0
    09-JAN-2014 18:33:12 * service_update * orcl * 0
    Thu Jan 09 18:34:03 2014
    09-JAN-2014 18:34:03 * service_update * orcl * 0
    09-JAN-2014 18:34:39 * service_update * orcl * 0
    09-JAN-2014 18:35:27 * service_update * orcl * 0
    09-JAN-2014 18:35:33 * service_update * orcl * 0
    09-JAN-2014 18:36:24 * service_update * orcl * 0
    09-JAN-2014 18:37:12 * service_update * orcl * 0
    09-JAN-2014 18:38:00 * service_update * orcl * 0
    09-JAN-2014 18:38:03 * service_update * orcl * 0
    09-JAN-2014 18:38:06 * service_update * orcl * 0
    09-JAN-2014 18:38:54 * service_update * orcl * 0
    09-JAN-2014 18:39:45 * service_update * orcl * 0
    09-JAN-2014 18:40:36 * service_update * orcl * 0
    09-JAN-2014 18:41:27 * service_update * orcl * 0
    09-JAN-2014 18:42:15 * service_update * orcl * 0
    09-JAN-2014 18:43:00 * service_update * orcl * 0
    09-JAN-2014 18:43:54 * service_update * orcl * 0
    09-JAN-2014 18:44:39 * service_update * orcl * 0
    09-JAN-2014 18:45:33 * service_update * orcl * 0
    09-JAN-2014 18:46:24 * service_update * orcl * 0
    09-JAN-2014 18:47:15 * service_update * orcl * 0
    09-JAN-2014 18:48:03 * service_update * orcl * 0
    09-JAN-2014 18:48:54 * service_update * orcl * 0
    09-JAN-2014 18:49:45 * service_update * orcl * 0
    09-JAN-2014 18:50:33 * service_update * orcl * 0
    Thu Jan 09 18:50:45 2014
    09-JAN-2014 18:50:45 * service_update * orcl * 0
    09-JAN-2014 18:50:48 * service_update * orcl * 0
    09-JAN-2014 18:51:36 * service_update * orcl * 0
    09-JAN-2014 18:52:24 * service_update * orcl * 0
    09-JAN-2014 18:53:09 * service_update * orcl * 0
    09-JAN-2014 18:54:00 * service_update * orcl * 0
    09-JAN-2014 18:54:39 * service_update * orcl * 0
    09-JAN-2014 18:55:21 * service_update * orcl * 0
    09-JAN-2014 18:55:36 * service_update * orcl * 0
    09-JAN-2014 18:56:27 * service_update * orcl * 0
    09-JAN-2014 18:57:18 * service_update * orcl * 0
    09-JAN-2014 18:58:09 * service_update * orcl * 0
    09-JAN-2014 18:59:00 * service_update * orcl * 0
    09-JAN-2014 18:59:51 * service_update * orcl * 0
    09-JAN-2014 19:00:30 * service_update * orcl * 0
    09-JAN-2014 19:00:33 * service_update * orcl * 0
    09-JAN-2014 19:01:09 * service_update * orcl * 0
    09-JAN-2014 19:02:00 * service_update * orcl * 0
    09-JAN-2014 19:02:45 * service_update * orcl * 0
    09-JAN-2014 19:03:36 * service_update * orcl * 0
    09-JAN-2014 19:04:27 * service_update * orcl * 0
    09-JAN-2014 19:04:39 * service_update * orcl * 0
    09-JAN-2014 19:05:27 * service_update * orcl * 0
    09-JAN-2014 19:05:36 * service_update * orcl * 0
    09-JAN-2014 19:06:27 * service_update * orcl * 0
    09-JAN-2014 19:07:18 * service_update * orcl * 0
    Thu Jan 09 19:08:04 2014
    09-JAN-2014 19:08:04 * service_update * orcl * 0
    09-JAN-2014 19:08:55 * service_update * orcl * 0
    09-JAN-2014 19:09:46 * service_update * orcl * 0
    09-JAN-2014 19:10:31 * service_update * orcl * 0
    09-JAN-2014 19:11:04 * service_update * orcl * 0
    09-JAN-2014 19:11:52 * service_update * orcl * 0
    09-JAN-2014 19:12:43 * service_update * orcl * 0
    09-JAN-2014 19:13:28 * service_update * orcl * 0
    09-JAN-2014 19:13:49 * service_update * orcl * 0
    09-JAN-2014 19:13:52 * service_update * orcl * 0
    09-JAN-2014 19:14:40 * service_update * orcl * 0
    09-JAN-2014 19:15:25 * service_update * orcl * 0
    09-JAN-2014 19:15:34 * service_update * orcl * 0
    09-JAN-2014 19:15:37 * service_update * orcl * 0
    09-JAN-2014 19:15:40 * service_update * orcl * 0
    09-JAN-2014 19:16:28 * service_update * orcl * 0
    09-JAN-2014 19:17:13 * service_update * orcl * 0
    09-JAN-2014 19:17:52 * service_update * orcl * 0
    09-JAN-2014 19:18:43 * service_update * orcl * 0
    09-JAN-2014 19:19:04 * service_update * orcl * 0
    09-JAN-2014 19:19:49 * service_update * orcl * 0
    09-JAN-2014 19:20:34 * service_update * orcl * 0
    09-JAN-2014 19:21:28 * service_update * orcl * 0
    09-JAN-2014 19:22:19 * service_update * orcl * 0
    09-JAN-2014 19:23:01 * service_update * orcl * 0
    09-JAN-2014 19:23:52 * service_update * orcl * 0
    09-JAN-2014 19:24:40 * service_update * orcl * 0
    Thu Jan 09 19:25:28 2014
    09-JAN-2014 19:25:28 * service_update * orcl * 0
    09-JAN-2014 19:25:34 * service_update * orcl * 0
    09-JAN-2014 19:26:25 * service_update * orcl * 0
    09-JAN-2014 19:27:16 * service_update * orcl * 0
    09-JAN-2014 19:28:04 * service_update * orcl * 0
    09-JAN-2014 19:28:10 * service_update * orcl * 0
    09-JAN-2014 19:28:13 * service_update * orcl * 0
    09-JAN-2014 19:29:01 * service_update * orcl * 0
    09-JAN-2014 19:29:34 * service_update * orcl * 0
    09-JAN-2014 19:30:16 * service_update * orcl * 0
    09-JAN-2014 19:30:34 * service_update * orcl * 0
    09-JAN-2014 19:30:46 * service_update * orcl * 0
    09-JAN-2014 19:31:37 * service_update * orcl * 0
    09-JAN-2014 19:32:25 * service_update * orcl * 0
    09-JAN-2014 19:33:10 * service_update * orcl * 0
    09-JAN-2014 19:34:01 * service_update * orcl * 0
    09-JAN-2014 19:34:40 * service_update * orcl * 0
    09-JAN-2014 19:35:31 * service_update * orcl * 0
    09-JAN-2014 19:35:34 * service_update * orcl * 0
    09-JAN-2014 19:35:37 * service_update * orcl * 0
    09-JAN-2014 19:36:28 * service_update * orcl * 0
    09-JAN-2014 19:36:52 * service_update * orcl * 0
    09-JAN-2014 19:36:55 * service_update * orcl * 0
    09-JAN-2014 19:36:58 * service_update * orcl * 0
    09-JAN-2014 19:37:49 * service_update * orcl * 0
    09-JAN-2014 19:38:34 * service_update * orcl * 0
    09-JAN-2014 19:39:22 * service_update * orcl * 0
    09-JAN-2014 19:40:13 * service_update * orcl * 0
    09-JAN-2014 19:40:34 * service_update * orcl * 0
    09-JAN-2014 19:40:37 * service_update * orcl * 0
    09-JAN-2014 19:40:40 * service_update * orcl * 0
    09-JAN-2014 19:41:28 * service_update * orcl * 0
    Thu Jan 09 19:42:19 2014
    09-JAN-2014 19:42:19 * service_update * orcl * 0
    09-JAN-2014 19:43:04 * service_update * orcl * 0
    09-JAN-2014 19:43:55 * service_update * orcl * 0
    09-JAN-2014 19:44:37 * service_update * orcl * 0
    09-JAN-2014 19:44:40 * service_update * orcl * 0
    09-JAN-2014 19:45:22 * service_update * orcl * 0
    09-JAN-2014 19:45:34 * service_update * orcl * 0
    09-JAN-2014 19:46:22 * service_update * orcl * 0
    09-JAN-2014 19:47:13 * service_update * orcl * 0
    09-JAN-2014 19:48:04 * service_update * orcl * 0
    09-JAN-2014 19:48:52 * service_update * orcl * 0
    09-JAN-2014 19:48:58 * service_update * orcl * 0
    09-JAN-2014 19:49:01 * service_update * orcl * 0
    09-JAN-2014 19:49:49 * service_update * orcl * 0
    09-JAN-2014 19:50:34 * service_update * orcl * 0
    09-JAN-2014 19:51:25 * service_update * orcl * 0
    09-JAN-2014 19:52:16 * service_update * orcl * 0
    09-JAN-2014 19:53:01 * service_update * orcl * 0
    09-JAN-2014 19:53:52 * service_update * orcl * 0
    09-JAN-2014 19:54:37 * service_update * orcl * 0
    09-JAN-2014 19:54:40 * service_update * orcl * 0
    09-JAN-2014 19:55:28 * service_update * orcl * 0
    09-JAN-2014 19:55:31 * service_update * orcl * 0
    09-JAN-2014 19:56:22 * service_update * orcl * 0
    09-JAN-2014 19:57:13 * service_update * orcl * 0
    09-JAN-2014 19:57:43 * service_update * orcl * 0
    09-JAN-2014 19:58:28 * service_update * orcl * 0
    Thu Jan 09 19:59:16 2014
    09-JAN-2014 19:59:16 * service_update * orcl * 0
    09-JAN-2014 19:59:52 * service_update * orcl * 0
    09-JAN-2014 19:59:58 * service_update * orcl * 0
    09-JAN-2014 20:00:31 * service_update * orcl * 0
    09-JAN-2014 20:01:07 * service_update * orcl * 0
    09-JAN-2014 20:01:10 * service_update * orcl * 0
    09-JAN-2014 20:01:58 * service_update * orcl * 0
    09-JAN-2014 20:02:49 * service_update * orcl * 0
    09-JAN-2014 20:03:34 * service_update * orcl * 0
    09-JAN-2014 20:04:25 * service_update * orcl * 0
    09-JAN-2014 20:04:40 * service_update * orcl * 0
    09-JAN-2014 20:05:28 * service_update * orcl * 0
    09-JAN-2014 20:05:34 * service_update * orcl * 0
    09-JAN-2014 20:06:25 * service_update * orcl * 0
    09-JAN-2014 20:07:13 * service_update * orcl * 0
    09-JAN-2014 20:08:01 * service_update * orcl * 0
    09-JAN-2014 20:08:49 * service_update * orcl * 0
    09-JAN-2014 20:09:40 * service_update * orcl * 0
    09-JAN-2014 20:10:31 * service_update * orcl * 0
    09-JAN-2014 20:10:34 * service_update * orcl * 0
    09-JAN-2014 20:11:25 * service_update * orcl * 0
    09-JAN-2014 20:12:16 * service_update * orcl * 0
    09-JAN-2014 20:13:01 * service_update * orcl * 0
    09-JAN-2014 20:13:52 * service_update * orcl * 0
    09-JAN-2014 20:14:40 * service_update * orcl * 0
    09-JAN-2014 20:15:22 * service_update * orcl * 0
    09-JAN-2014 20:15:31 * service_update * orcl * 0
    Thu Jan 09 20:16:22 2014
    09-JAN-2014 20:16:22 * service_update * orcl * 0
    09-JAN-2014 20:17:04 * service_update * orcl * 0
    09-JAN-2014 20:17:52 * service_update * orcl * 0
    09-JAN-2014 20:18:43 * service_update * orcl * 0
    09-JAN-2014 20:19:34 * service_update * orcl * 0
    09-JAN-2014 20:20:22 * service_update * orcl * 0
    09-JAN-2014 20:20:31 * service_update * orcl * 0
    09-JAN-2014 20:20:34 * service_update * orcl * 0
    09-JAN-2014 20:21:22 * service_update * orcl * 0
    09-JAN-2014 20:22:13 * service_update * orcl * 0
    09-JAN-2014 20:22:52 * service_update * orcl * 0
    09-JAN-2014 20:22:55 * service_update * orcl * 0
    09-JAN-2014 20:22:58 * service_update * orcl * 0
    09-JAN-2014 20:23:49 * service_update * orcl * 0
    09-JAN-2014 20:24:37 * service_update * orcl * 0
    09-JAN-2014 20:24:40 * service_update * orcl * 0
    09-JAN-2014 20:25:28 * service_update * orcl * 0
    09-JAN-2014 20:25:31 * service_update * orcl * 0
    09-JAN-2014 20:26:19 * service_update * orcl * 0
    09-JAN-2014 20:27:07 * service_update * orcl * 0
    09-JAN-2014 20:27:52 * service_update * orcl * 0
    09-JAN-2014 20:28:01 * service_update * orcl * 0
    09-JAN-2014 20:28:49 * service_update * orcl * 0
    09-JAN-2014 20:29:37 * service_update * orcl * 0
    09-JAN-2014 20:30:19 * service_update * orcl * 0
    09-JAN-2014 20:30:31 * service_update * orcl * 0
    09-JAN-2014 20:30:46 * service_update * orcl * 0
    09-JAN-2014 20:31:34 * service_update * orcl * 0
    09-JAN-2014 20:32:22 * service_update * orcl * 0
    Thu Jan 09 20:33:13 2014
    09-JAN-2014 20:33:13 * service_update * orcl * 0
    09-JAN-2014 20:34:04 * service_update * orcl * 0
    09-JAN-2014 20:34:40 * service_update * orcl * 0
    09-JAN-2014 20:35:28 * service_update * orcl * 0
    09-JAN-2014 20:35:31 * service_update * orcl * 0
    09-JAN-2014 20:36:19 * service_update * orcl * 0
    09-JAN-2014 20:37:10 * service_update * orcl * 0
    09-JAN-2014 20:37:55 * service_update * orcl * 0
    09-JAN-2014 20:38:43 * service_update * orcl * 0
    09-JAN-2014 20:39:31 * service_update * orcl * 0
    09-JAN-2014 20:40:22 * service_update * orcl * 0
    09-JAN-2014 20:40:31 * service_update * orcl * 0
    09-JAN-2014 20:41:19 * service_update * orcl * 0
    09-JAN-2014 20:42:07 * service_update * orcl * 0
    09-JAN-2014 20:42:55 * service_update * orcl * 0
    09-JAN-2014 20:43:43 * service_update * orcl * 0
    09-JAN-2014 20:44:34 * service_update * orcl * 0
    09-JAN-2014 20:44:40 * service_update * orcl * 0
    09-JAN-2014 20:44:58 * service_update * orcl * 0
    09-JAN-2014 20:45:43 * service_update * orcl * 0
    09-JAN-2014 20:45:55 * service_update * orcl * 0
    09-JAN-2014 20:45:58 * service_update * orcl * 0
    09-JAN-2014 20:46:49 * service_update * orcl * 0
    09-JAN-2014 20:47:40 * service_update * orcl * 0
    09-JAN-2014 20:48:25 * service_update * orcl * 0
    09-JAN-2014 20:49:16 * service_update * orcl * 0
    Thu Jan 09 20:50:07 2014
    09-JAN-2014 20:50:07 * service_update * orcl * 0
    09-JAN-2014 20:50:31 * service_update * orcl * 0
    09-JAN-2014 20:51:22 * service_update * orcl * 0
    09-JAN-2014 20:52:13 * service_update * orcl * 0
    09-JAN-2014 20:52:58 * service_update * orcl * 0
    09-JAN-2014 20:53:49 * service_update * orcl * 0
    09-JAN-2014 20:54:34 * service_update * orcl * 0
    09-JAN-2014 20:54:40 * service_update * orcl * 0
    09-JAN-2014 20:55:31 * service_update * orcl * 0
    09-JAN-2014 20:55:34 * service_update * orcl * 0
    09-JAN-2014 20:56:25 * service_update * orcl * 0
    09-JAN-2014 20:57:16 * service_update * orcl * 0
    09-JAN-2014 20:58:01 * service_update * orcl * 0
    09-JAN-2014 20:58:52 * service_update * orcl * 0
    09-JAN-2014 20:59:37 * service_update * orcl * 0
    09-JAN-2014 21:00:22 * service_update * orcl * 0
    09-JAN-2014 21:00:31 * service_update * orcl * 0
    09-JAN-2014 21:01:07 * service_update * orcl * 0
    09-JAN-2014 21:01:58 * service_update * orcl * 0
    09-JAN-2014 21:02:49 * service_update * orcl * 0
    09-JAN-2014 21:03:37 * service_update * orcl * 0
    09-JAN-2014 21:04:25 * service_update * orcl * 0
    09-JAN-2014 21:04:40 * service_update * orcl * 0
    09-JAN-2014 21:05:31 * service_update * orcl * 0
    09-JAN-2014 21:05:34 * service_update * orcl * 0
    09-JAN-2014 21:06:25 * service_update * orcl * 0
    Thu Jan 09 21:07:16 2014
    09-JAN-2014 21:07:16 * service_update * orcl * 0
    09-JAN-2014 21:08:01 * service_update * orcl * 0
    09-JAN-2014 21:08:46 * service_update * orcl * 0
    09-JAN-2014 21:08:55 * service_update * orcl * 0
    09-JAN-2014 21:09:01 * service_update * orcl * 0
    09-JAN-2014 21:09:52 * service_update * orcl * 0
    09-JAN-2014 21:10:37 * service_update * orcl * 0
    09-JAN-2014 21:11:28 * service_update * orcl * 0
    09-JAN-2014 21:12:19 * service_update * orcl * 0
    09-JAN-2014 21:13:04 * service_update * orcl * 0
    09-JAN-2014 21:13:55 * service_update * orcl * 0
    09-JAN-2014 21:14:40 * service_update * orcl * 0
    09-JAN-2014 21:15:25 * service_update * orcl * 0
    09-JAN-2014 21:15:34 * service_update * orcl * 0
    09-JAN-2014 21:16:25 * service_update * orcl * 0
    09-JAN-2014 21:16:58 * service_update * orcl * 0
    09-JAN-2014 21:17:40 * service_update * orcl * 0
    09-JAN-2014 21:17:55 * service_update * orcl * 0
    09-JAN-2014 21:18:40 * service_update * orcl * 0
    09-JAN-2014 21:19:31 * service_update * orcl * 0
    09-JAN-2014 21:20:25 * service_update * orcl * 0
    09-JAN-2014 21:20:37 * service_update * orcl * 0
    09-JAN-2014 21:20:40 * service_update * orcl * 0
    09-JAN-2014 21:21:31 * service_update * orcl * 0
    09-JAN-2014 21:22:22 * service_update * orcl * 0
    09-JAN-2014 21:23:07 * service_update * orcl * 0
    Thu Jan 09 21:23:58 2014
    09-JAN-2014 21:23:58 * service_update * orcl * 0
    09-JAN-2014 21:24:40 * service_update * orcl * 0
    09-JAN-2014 21:25:31 * service_update * orcl * 0
    09-JAN-2014 21:25:34 * service_update * orcl * 0
    09-JAN-2014 21:26:25 * service_update * orcl * 0
    09-JAN-2014 21:27:16 * service_update * orcl * 0
    09-JAN-2014 21:28:01 * service_update * orcl * 0
    09-JAN-2014 21:28:52 * service_update * orcl * 0
    09-JAN-2014 21:29:40 * service_update * orcl * 0
    09-JAN-2014 21:30:22 * service_update * orcl * 0
    09-JAN-2014 21:30:31 * service_update * orcl * 0
    09-JAN-2014 21:30:46 * service_update * orcl * 0
    09-JAN-2014 21:31:40 * service_update * orcl * 0
    09-JAN-2014 21:31:43 * service_update * orcl * 0
    09-JAN-2014 21:31:46 * service_update * orcl * 0
    09-JAN-2014 21:31:58 * service_update * orcl * 0
    09-JAN-2014 21:32:04 * service_update * orcl * 0
    09-JAN-2014 21:32:55 * service_update * orcl * 0
    09-JAN-2014 21:33:40 * service_update * orcl * 0
    09-JAN-2014 21:34:32 * service_update * orcl * 0
    09-JAN-2014 21:34:41 * service_update * orcl * 0
    09-JAN-2014 21:35:32 * service_update * orcl * 0
    09-JAN-2014 21:36:23 * service_update * orcl * 0
    09-JAN-2014 21:37:11 * service_update * orcl * 0
    09-JAN-2014 21:38:02 * service_update * orcl * 0
    09-JAN-2014 21:38:47 * service_update * orcl * 0
    09-JAN-2014 21:39:38 * service_update * orcl * 0
    09-JAN-2014 21:40:32 * service_update * orcl * 0
    09-JAN-2014 21:40:35 * service_update * orcl * 0
    Thu Jan 09 21:41:26 2014
    09-JAN-2014 21:41:26 * service_update * orcl * 0
    09-JAN-2014 21:42:14 * service_update * orcl * 0
    09-JAN-2014 21:43:02 * service_update * orcl * 0
    09-JAN-2014 21:43:05 * service_update * orcl * 0
    09-JAN-2014 21:43:08 * service_update * orcl * 0
    09-JAN-2014 21:43:56 * service_update * orcl * 0
    09-JAN-2014 21:44:41 * service_update * orcl * 0
    09-JAN-2014 21:45:29 * service_update * orcl * 0
    09-JAN-2014 21:45:32 * service_update * orcl * 0
    09-JAN-2014 21:46:20 * service_update * orcl * 0
    09-JAN-2014 21:47:11 * service_update * orcl * 0
    09-JAN-2014 21:48:02 * service_update * orcl * 0
    09-JAN-2014 21:48:53 * service_update * orcl * 0
    09-JAN-2014 21:49:41 * service_update * orcl * 0
    09-JAN-2014 21:50:32 * service_update * orcl * 0
    09-JAN-2014 21:51:23 * service_update * orcl * 0
    09-JAN-2014 21:51:56 * service_update * orcl * 0
    09-JAN-2014 21:52:47 * service_update * orcl * 0
    09-JAN-2014 21:53:32 * service_update * orcl * 0
    09-JAN-2014 21:53:35 * service_update * orcl * 0
    09-JAN-2014 21:54:17 * service_update * orcl * 0
    09-JAN-2014 21:54:41 * service_update * orcl * 0
    09-JAN-2014 21:55:02 * service_update * orcl * 0
    09-JAN-2014 21:55:05 * service_update * orcl * 0
    09-JAN-2014 21:55:08 * service_update * orcl * 0
    Thu Jan 09 23:01:25 2014
    09-JAN-2014 23:01:25 * service_update * orcl * 0
    09-JAN-2014 23:01:49 * service_update * orcl * 0
    09-JAN-2014 23:01:52 * service_update * orcl * 0
    09-JAN-2014 23:01:55 * service_update * orcl * 0
    09-JAN-2014 23:02:07 * service_update * orcl * 0
    09-JAN-2014 23:02:10 * service_update * orcl * 0
    09-JAN-2014 23:02:22 * service_update * orcl * 0
    09-JAN-2014 23:02:43 * service_update * orcl * 0
    09-JAN-2014 23:02:46 * service_update * orcl * 0
    09-JAN-2014 23:02:49 * service_update * orcl * 0
    09-JAN-2014 23:02:58 * service_update * orcl * 0
    09-JAN-2014 23:03:13 * service_update * orcl * 0
    09-JAN-2014 23:03:16 * service_update * orcl * 0
    09-JAN-2014 23:04:04 * service_update * orcl * 0
    09-JAN-2014 23:04:16 * service_update * orcl * 0
    09-JAN-2014 23:05:07 * service_update * orcl * 0
    09-JAN-2014 23:05:34 * service_update * orcl * 0
    09-JAN-2014 23:05:37 * service_update * orcl * 0
    09-JAN-2014 23:06:22 * service_update * orcl * 0
    09-JAN-2014 23:06:58 * service_update * orcl * 0
    09-JAN-2014 23:07:49 * service_update * orcl * 0
    09-JAN-2014 23:08:07 * service_update * orcl * 0
    09-JAN-2014 23:08:55 * service_update * orcl * 0
    09-JAN-2014 23:09:46 * service_update * orcl * 0
    09-JAN-2014 23:10:34 * service_update * orcl * 0
    09-JAN-2014 23:11:22 * service_update * orcl * 0
    09-JAN-2014 23:11:25 * service_update * orcl * 0
    09-JAN-2014 23:12:10 * service_update * orcl * 0
    09-JAN-2014 23:12:58 * service_update * orcl * 0
    09-JAN-2014 23:13:52 * service_update * orcl * 0
    09-JAN-2014 23:14:40 * service_update * orcl * 0
    09-JAN-2014 23:15:28 * service_update * orcl * 0
    09-JAN-2014 23:15:34 * service_update * orcl * 0
    09-JAN-2014 23:16:22 * service_update * orcl * 0
    09-JAN-2014 23:17:07 * service_update * orcl * 0
    09-JAN-2014 23:17:52 * service_update * orcl * 0
    Thu Jan 09 23:18:43 2014
    09-JAN-2014 23:18:43 * service_update * orcl * 0
    09-JAN-2014 23:19:34 * service_update * orcl * 0
    09-JAN-2014 23:20:25 * service_update * orcl * 0
    09-JAN-2014 23:20:34 * service_update * orcl * 0
    09-JAN-2014 23:21:25 * service_update * orcl * 0
    09-JAN-2014 23:22:10 * service_update * orcl * 0
    09-JAN-2014 23:23:01 * service_update * orcl * 0
    09-JAN-2014 23:23:52 * service_update * orcl * 0
    09-JAN-2014 23:23:55 * service_update * orcl * 0
    09-JAN-2014 23:23:58 * service_update * orcl * 0
    09-JAN-2014 23:24:28 * service_update * orcl * 0
    09-JAN-2014 23:24:31 * service_update * orcl * 0
    09-JAN-2014 23:24:52 * service_update * orcl * 0
    09-JAN-2014 23:25:40 * service_update * orcl * 0
    09-JAN-2014 23:25:43 * service_update * orcl * 0
    09-JAN-2014 23:25:46 * service_update * orcl * 0
    09-JAN-2014 23:26:31 * service_update * orcl * 0
    09-JAN-2014 23:27:19 * service_update * orcl * 0
    09-JAN-2014 23:28:10 * service_update * orcl * 0
    09-JAN-2014 23:29:01 * service_update * orcl * 0
    09-JAN-2014 23:29:52 * service_update * orcl * 0
    09-JAN-2014 23:30:31 * service_update * orcl * 0
    09-JAN-2014 23:30:46 * service_update * orcl * 0
    09-JAN-2014 23:31:25 * service_update * orcl * 0
    09-JAN-2014 23:32:04 * service_update * orcl * 0
    09-JAN-2014 23:32:52 * service_update * orcl * 0
    09-JAN-2014 23:33:43 * service_update * orcl * 0
    09-JAN-2014 23:34:34 * service_update * orcl * 0
    09-JAN-2014 23:35:22 * service_update * orcl * 0
    Thu Jan 09 23:35:34 2014
    09-JAN-2014 23:35:34 * service_update * orcl * 0
    09-JAN-2014 23:36:22 * service_update * orcl * 0
    09-JAN-2014 23:37:10 * service_update * orcl * 0
    09-JAN-2014 23:37:58 * service_update * orcl * 0
    09-JAN-2014 23:38:49 * service_update * orcl * 0
    09-JAN-2014 23:39:40 * service_update * orcl * 0
    09-JAN-2014 23:40:34 * service_update * orcl * 0
    09-JAN-2014 23:40:37 * service_update * orcl * 0
    09-JAN-2014 23:41:25 * service_update * orcl * 0
    09-JAN-2014 23:42:07 * service_update * orcl * 0
    09-JAN-2014 23:42:58 * service_update * orcl * 0
    09-JAN-2014 23:43:49 * service_update * orcl * 0
    09-JAN-2014 23:43:55 * service_update * orcl * 0
    09-JAN-2014 23:43:58 * service_update * orcl * 0
    09-JAN-2014 23:44:49 * service_update * orcl * 0
    09-JAN-2014 23:45:34 * service_update * orcl * 0
    09-JAN-2014 23:46:25 * service_update * orcl * 0
    09-JAN-2014 23:47:10 * service_update * orcl * 0
    09-JAN-2014 23:47:31 * service_update * orcl * 0
    09-JAN-2014 23:47:52 * service_update * orcl * 0
    09-JAN-2014 23:47:55 * service_update * orcl * 0
    09-JAN-2014 23:48:46 * service_update * orcl * 0
    09-JAN-2014 23:49:37 * service_update * orcl * 0
    09-JAN-2014 23:50:25 * service_update * orcl * 0
    09-JAN-2014 23:50:34 * service_update * orcl * 0
    09-JAN-2014 23:50:37 * service_update * orcl * 0
    09-JAN-2014 23:51:25 * service_update * orcl * 0
    09-JAN-2014 23:52:10 * service_update * orcl * 0
    Thu Jan 09 23:53:01 2014
    09-JAN-2014 23:53:01 * service_update * orcl * 0
    09-JAN-2014 23:53:52 * service_update * orcl * 0
    09-JAN-2014 23:54:43 * service_update * orcl * 0
    09-JAN-2014 23:54:46 * service_update * orcl * 0
    09-JAN-2014 23:54:49 * service_update * orcl * 0
    09-JAN-2014 23:54:52 * service_update * orcl * 0
    09-JAN-2014 23:54:55 * service_update * orcl * 0
    09-JAN-2014 23:55:40 * service_update * orcl * 0
    09-JAN-2014 23:56:28 * service_update * orcl * 0
    09-JAN-2014 23:57:13 * service_update * orcl * 0
    09-JAN-2014 23:58:04 * service_update * orcl * 0
    09-JAN-2014 23:58:58 * service_update * orcl * 0
    09-JAN-2014 23:59:46 * service_update * orcl * 0
    09-JAN-2014 23:59:52 * service_update * orcl * 0
    09-JAN-2014 23:59:55 * service_update * orcl * 0
    10-JAN-2014 00:00:34 * service_update * orcl * 0
    10-JAN-2014 00:01:07 * service_update * orcl * 0
    10-JAN-2014 00:01:13 * service_update * orcl * 0
    10-JAN-2014 00:01:25 * service_update * orcl * 0
    10-JAN-2014 00:02:01 * service_update * orcl * 0
    10-JAN-2014 00:02:52 * service_update * orcl * 0
    10-JAN-2014 00:02:58 * service_update * orcl * 0
    10-JAN-2014 00:03:01 * service_update * orcl * 0
    10-JAN-2014 00:03:49 * service_update * orcl * 0
    10-JAN-2014 00:04:40 * service_update * orcl * 0
    10-JAN-2014 00:05:28 * service_update * orcl * 0
    10-JAN-2014 00:05:34 * service_update * orcl * 0
    10-JAN-2014 00:05:37 * service_update * orcl * 0
    10-JAN-2014 00:05:40 * service_update * orcl * 0
    10-JAN-2014 00:06:28 * service_update * orcl * 0
    10-JAN-2014 00:07:13 * service_update * orcl * 0
    10-JAN-2014 00:08:04 * service_update * orcl * 0
    10-JAN-2014 00:08:55 * service_update * orcl * 0
    Fri Jan 10 00:09:46 2014
    10-JAN-2014 00:09:46 * service_update * orcl * 0
    10-JAN-2014 00:10:31 * service_update * orcl * 0
    10-JAN-2014 00:10:34 * service_update * orcl * 0
    10-JAN-2014 00:10:55 * service_update * orcl * 0
    10-JAN-2014 00:10:58 * service_update * orcl * 0
    10-JAN-2014 00:11:25 * service_update * orcl * 0
    10-JAN-2014 00:11:37 * service_update * orcl * 0
    10-JAN-2014 00:12:19 * service_update * orcl * 0
    10-JAN-2014 00:13:10 * service_update * orcl * 0
    10-JAN-2014 00:14:01 * service_update * orcl * 0
    10-JAN-2014 00:14:52 * service_update * orcl * 0
    10-JAN-2014 00:14:55 * service_update * orcl * 0
    10-JAN-2014 00:14:58 * service_update * orcl * 0
    10-JAN-2014 00:15:43 * service_update * orcl * 0
    10-JAN-2014 00:16:34 * service_update * orcl * 0
    10-JAN-2014 00:16:37 * service_update * orcl * 0
    10-JAN-2014 00:17:25 * service_update * orcl * 0
    10-JAN-2014 00:17:52 * service_update * orcl * 0
    10-JAN-2014 00:18:40 * service_update * orcl * 0
    10-JAN-2014 00:19:31 * service_update * orcl * 0
    10-JAN-2014 00:20:19 * service_update * orcl * 0
    10-JAN-2014 00:20:34 * service_update * orcl * 0
    10-JAN-2014 00:21:25 * service_update * orcl * 0
    10-JAN-2014 00:22:13 * service_update * orcl * 0
    10-JAN-2014 00:23:01 * service_update * orcl * 0
    10-JAN-2014 00:23:52 * service_update * orcl * 0
    10-JAN-2014 00:24:43 * service_update * orcl * 0
    10-JAN-2014 00:25:37 * service_update * orcl * 0
    Fri Jan 10 00:26:28 2014
    10-JAN-2014 00:26:28 * service_update * orcl * 0
    10-JAN-2014 00:27:13 * service_update * orcl * 0
    10-JAN-2014 00:28:04 * service_update * orcl * 0
    10-JAN-2014 00:28:55 * service_update * orcl * 0
    10-JAN-2014 00:29:43 * service_update * orcl * 0
    10-JAN-2014 00:30:28 * service_update * orcl * 0
    10-JAN-2014 00:30:34 * service_update * orcl * 0
    10-JAN-2014 00:30:49 * service_update * orcl * 0
    10-JAN-2014 00:31:25 * service_update * orcl * 0
    10-JAN-2014 00:32:10 * service_update * orcl * 0
    10-JAN-2014 00:32:19 * service_update * orcl * 0
    10-JAN-2014 00:33:10 * service_update * orcl * 0
    10-JAN-2014 00:33:34 * service_update * orcl * 0
    10-JAN-2014 00:33:55 * service_update * orcl * 0
    10-JAN-2014 00:33:58 * service_update * orcl * 0
    10-JAN-2014 00:34:47 * service_update * orcl * 0
    10-JAN-2014 00:34:59 * service_update * orcl * 0
    10-JAN-2014 00:35:41 * service_update * orcl * 0
    10-JAN-2014 00:35:59 * service_update * orcl * 0
    10-JAN-2014 00:36:02 * service_update * orcl * 0
    10-JAN-2014 00:36:05 * service_update * orcl * 0
    10-JAN-2014 00:36:53 * service_update * orcl * 0
    10-JAN-2014 00:37:38 * service_update * orcl * 0
    10-JAN-2014 00:37:42 * (CONNECT_DATA=(SERVICE_NAME=PDBORCL)(CID=(PROGRAM=C:\app\hasnaa\product\12.1.0\dbhome_1\BIN\sqlplus.exe)(HOST=HASNAA)(USER=hasnaa))) * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=50252)) * establish * PDBORCL * 0
    10-JAN-2014 00:37:44 * service_update * orcl * 0
    10-JAN-2014 00:38:20 * service_update * orcl * 0
    10-JAN-2014 00:39:11 * service_update * orcl * 0
    10-JAN-2014 00:39:17 * (CONNECT_DATA=(CID=(PROGRAM=SQL Developer)(HOST=__jdbc__)(USER=hasnaa))(SERVICE_NAME=PDBORCL)) * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=50305)) * establish * PDBORCL * 0
    10-JAN-2014 00:39:20 * service_update * orcl * 0
    10-JAN-2014 00:40:11 * service_update * orcl * 0
    10-JAN-2014 00:40:29 * service_update * orcl * 0
    10-JAN-2014 00:40:35 * service_update * orcl * 0
    10-JAN-2014 00:40:38 * service_update * orcl * 0
    10-JAN-2014 00:41:26 * service_update * orcl * 0
    10-JAN-2014 00:41:32 * service_update * orcl * 0
    10-JAN-2014 00:42:20 * service_update * orcl * 0
    10-JAN-2014 00:43:08 * service_update * orcl * 0
    Fri Jan 10 00:43:59 2014
    10-JAN-2014 00:43:59 * service_update * orcl * 0
    10-JAN-2014 00:44:50 * service_update * orcl * 0
    10-JAN-2014 00:45:35 * service_update * orcl * 0
    10-JAN-2014 00:46:26 * service_update * orcl * 0
    10-JAN-2014 00:47:11 * service_update * orcl * 0
    10-JAN-2014 00:48:02 * service_update * orcl * 0
    10-JAN-2014 00:48:53 * service_update * orcl * 0
    10-JAN-2014 00:49:44 * service_update * orcl * 0
    10-JAN-2014 00:50:35 * service_update * orcl * 0
    10-JAN-2014 00:51:20 * service_update * orcl * 0
    10-JAN-2014 00:51:26 * service_update * orcl * 0
    10-JAN-2014 00:52:11 * service_update * orcl * 0
    10-JAN-2014 00:52:59 * service_update * orcl * 0
    10-JAN-2014 00:53:50 * service_update * orcl * 0
    10-JAN-2014 00:54:41 * service_update * orcl * 0
    10-JAN-2014 00:55:32 * service_update * orcl * 0
    10-JAN-2014 00:56:23 * service_update * orcl * 0
    10-JAN-2014 00:56:38 * service_update * orcl * 0
    10-JAN-2014 00:56:56 * service_update * orcl * 0
    10-JAN-2014 00:57:02 * service_update * orcl * 0
    10-JAN-2014 00:57:53 * service_update * orcl * 0
    10-JAN-2014 00:58:41 * service_update * orcl * 0
    10-JAN-2014 00:59:32 * service_update * orcl * 0
    10-JAN-2014 01:00:17 * service_update * orcl * 0
    10-JAN-2014 01:00:32 * service_update * orcl * 0
    Fri Jan 10 01:01:08 2014
    10-JAN-2014 01:01:08 * service_update * orcl * 0
    10-JAN-2014 01:01:26 * service_update * orcl * 0
    10-JAN-2014 01:02:08 * service_update * orcl * 0
    10-JAN-2014 01:02:59 * service_update * orcl * 0
    10-JAN-2014 01:03:50 * service_update * orcl * 0
    10-JAN-2014 01:04:41 * service_update * orcl * 0
    10-JAN-2014 01:05:29 * service_update * orcl * 0
    10-JAN-2014 01:05:35 * service_update * orcl * 0
    10-JAN-2014 01:06:26 * service_update * orcl * 0
    10-JAN-2014 01:07:14 * service_update * orcl * 0
    10-JAN-2014 01:07:35 * service_update * orcl * 0
    10-JAN-2014 01:08:26 * service_update * orcl * 0
    10-JAN-2014 01:09:17 * service_update * orcl * 0
    10-JAN-2014 01:10:05 * service_update * orcl * 0
    10-JAN-2014 01:10:35 * service_update * orcl * 0
    10-JAN-2014 01:11:26 * service_update * orcl * 0
    10-JAN-2014 01:12:17 * service_update * orcl * 0
    10-JAN-2014 01:12:53 * service_update * orcl * 0
    10-JAN-2014 01:13:38 * service_update * orcl * 0
    10-JAN-2014 01:14:29 * service_update * orcl * 0
    10-JAN-2014 01:15:14 * service_update * orcl * 0
    10-JAN-2014 01:15:32 * service_update * orcl * 0
    10-JAN-2014 01:16:20 * service_update * orcl * 0
    10-JAN-2014 01:17:05 * service_update * orcl * 0
    Fri Jan 10 01:17:50 2014
    10-JAN-2014 01:17:50 * service_update * orcl * 0
    10-JAN-2014 01:17:53 * service_update * orcl * 0
    10-JAN-2014 01:18:44 * service_update * orcl * 0
    10-JAN-2014 01:19:35 * service_update * orcl * 0
    10-JAN-2014 01:19:50 * service_update * orcl * 0
    10-JAN-2014 01:19:59 * service_update * orcl * 0
    10-JAN-2014 01:20:05 * service_update * orcl * 0
    10-JAN-2014 01:20:35 * service_update * orcl * 0
    10-JAN-2014 01:20:38 * service_update * orcl * 0
    10-JAN-2014 01:21:26 * service_update * orcl * 0
    10-JAN-2014 01:22:14 * service_update * orcl * 0
    10-JAN-2014 01:23:05 * service_update * orcl * 0
    10-JAN-2014 01:23:56 * service_update * orcl * 0
    10-JAN-2014 01:24:47 * service_update * orcl * 0
    10-JAN-2014 01:25:35 * service_update * orcl * 0
    10-JAN-2014 01:26:26 * service_update * orcl * 0
    10-JAN-2014 01:27:17 * service_update * orcl * 0
    10-JAN-2014 01:28:08 * service_update * orcl * 0
    10-JAN-2014 01:28:59 * service_update * orcl * 0
    10-JAN-2014 01:29:50 * service_update * orcl * 0
    10-JAN-2014 01:30:32 * service_update * orcl * 0
    10-JAN-2014 01:30:47 * service_update * orcl * 0
    10-JAN-2014 01:31:26 * service_update * orcl * 0
    10-JAN-2014 01:32:11 * service_update * orcl * 0
    10-JAN-2014 01:32:59 * service_update * orcl * 0
    Fri Jan 10 05:33:54 2014
    10-JAN-2014 05:33:54 * service_update * orcl * 0
    10-JAN-2014 05:34:06 * service_update * orcl * 0
    10-JAN-2014 05:34:18 * service_update * orcl * 0
    10-JAN-2014 05:34:21 * service_update * orcl * 0
    10-JAN-2014 05:34:27 * service_update * orcl * 0
    10-JAN-2014 05:34:39 * service_update * orcl * 0
    10-JAN-2014 05:34:45 * service_update * orcl * 0
    10-JAN-2014 05:35:06 * service_update * orcl * 0
    10-JAN-2014 05:35:09 * service_update * orcl * 0
    10-JAN-2014 05:35:15 * service_update * orcl * 0
    10-JAN-2014 05:35:39 * service_update * orcl * 0
    10-JAN-2014 05:35:42 * service_update * orcl * 0
    10-JAN-2014 05:35:45 * service_update * orcl * 0
    10-JAN-2014 05:36:33 * service_update * orcl * 0
    10-JAN-2014 05:37:24 * service_update * orcl * 0
    10-JAN-2014 05:38:15 * service_update * orcl * 0
    10-JAN-2014 05:39:03 * service_update * orcl * 0
    10-JAN-2014 05:39:48 * service_update * orcl * 0
    10-JAN-2014 05:40:33 * service_update * orcl * 0
    10-JAN-2014 05:41:24 * service_update * orcl * 0
    10-JAN-2014 05:42:15 * service_update * orcl * 0
    10-JAN-2014 05:43:06 * service_update * orcl * 0
    10-JAN-2014 05:43:54 * service_update * orcl * 0
    10-JAN-2014 05:44:36 * service_update * orcl * 0
    10-JAN-2014 05:45:27 * service_update * orcl * 0
    10-JAN-2014 05:45:36 * service_update * orcl * 0
    10-JAN-2014 05:46:27 * service_update * orcl * 0
    10-JAN-2014 05:47:15 * service_update * orcl * 0
    10-JAN-2014 05:48:09 * service_update * orcl * 0
    10-JAN-2014 05:48:57 * service_update * orcl * 0
    10-JAN-2014 05:49:42 * service_update * orcl * 0
    10-JAN-2014 05:50:33 * service_update * orcl * 0
    Fri Jan 10 05:51:24 2014
    10-JAN-2014 05:51:24 * service_update * orcl * 0
    10-JAN-2014 05:52:15 * service_update * orcl * 0
    10-JAN-2014 05:52:48 * service_update * orcl * 0
    10-JAN-2014 05:53:39 * service_update * orcl * 0
    10-JAN-2014 05:53:54 * service_update * orcl * 0
    10-JAN-2014 05:54:39 * service_update * orcl * 0
    10-JAN-2014 05:55:30 * service_update * orcl * 0
    10-JAN-2014 05:55:33 * service_update * orcl * 0
    10-JAN-2014 05:56:24 * service_update * orcl * 0
    10-JAN-2014 05:57:15 * service_update * orcl * 0
    10-JAN-2014 05:57:33 * service_update * orcl * 0
    10-JAN-2014 05:58:06 * service_update * orcl * 0
    10-JAN-2014 05:58:09 * service_update * orcl * 0
    10-JAN-2014 05:59:00 * service_update * orcl * 0
    10-JAN-2014 05:59:45 * service_update * orcl * 0
    10-JAN-2014 06:00:30 * service_update * orcl * 0
    10-JAN-2014 06:00:33 * service_update * orcl * 0
    10-JAN-2014 06:00:36 * service_update * orcl * 0
    10-JAN-2014 06:01:09 * service_update * orcl * 0
    10-JAN-2014 06:02:00 * service_update * orcl * 0
    10-JAN-2014 06:02:51 * service_update * orcl * 0
    10-JAN-2014 06:03:15 * service_update * orcl * 0
    10-JAN-2014 06:03:54 * service_update * orcl * 0
    10-JAN-2014 06:04:39 * service_update * orcl * 0
    10-JAN-2014 06:05:30 * service_update * orcl * 0
    10-JAN-2014 06:05:33 * service_update * orcl * 0
    10-JAN-2014 06:06:21 * service_update * orcl * 0
    10-JAN-2014 06:07:09 * service_update * orcl * 0
    10-JAN-2014 06:08:00 * service_update * orcl * 0
    Fri Jan 10 06:08:51 2014
    10-JAN-2014 06:08:51 * service_update * orcl * 0
    10-JAN-2014 06:09:39 * service_update * orcl * 0
    10-JAN-2014 06:10:30 * service_update * orcl * 0
    10-JAN-2014 06:10:33 * service_update * orcl * 0
    10-JAN-2014 06:11:21 * service_update * orcl * 0
    10-JAN-2014 06:12:09 * service_update * orcl * 0
    10-JAN-2014 06:12:57 * service_update * orcl * 0
    10-JAN-2014 06:13:45 * service_update * orcl * 0
    10-JAN-2014 06:13:54 * service_update * orcl * 0
    10-JAN-2014 06:14:42 * service_update * orcl * 0
    10-JAN-2014 06:15:27 * service_update * orcl * 0
    10-JAN-2014 06:15:33 * service_update * orcl * 0
    10-JAN-2014 06:16:21 * service_update * orcl * 0
    10-JAN-2014 06:17:12 * service_update * orcl * 0
    10-JAN-2014 06:17:51 * service_update * orcl * 0
    10-JAN-2014 06:18:42 * service_update * orcl * 0
    10-JAN-2014 06:19:27 * service_update * orcl * 0
    10-JAN-2014 06:20:12 * service_update * orcl * 0
    10-JAN-2014 06:20:33 * service_update * orcl * 0
    10-JAN-2014 06:20:36 * service_update * orcl * 0
    10-JAN-2014 06:21:06 * service_update * orcl * 0
    10-JAN-2014 06:21:12 * service_update * orcl * 0
    10-JAN-2014 06:22:03 * service_update * orcl * 0
    10-JAN-2014 06:22:51 * service_update * orcl * 0
    10-JAN-2014 06:23:42 * service_update * orcl * 0
    10-JAN-2014 06:23:54 * service_update * orcl * 0
    10-JAN-2014 06:24:36 * service_update * orcl * 0
    10-JAN-2014 06:25:27 * service_update * orcl * 0
    Fri Jan 10 06:25:36 2014
    10-JAN-2014 06:25:36 * service_update * orcl * 0
    10-JAN-2014 06:26:24 * service_update * orcl * 0
    10-JAN-2014 06:27:12 * service_update * orcl * 0
    10-JAN-2014 06:28:03 * service_update * orcl * 0
    10-JAN-2014 06:28:54 * service_update * orcl * 0
    10-JAN-2014 06:29:42 * service_update * orcl * 0
    10-JAN-2014 06:30:24 * service_update * orcl * 0
    10-JAN-2014 06:30:48 * service_update * orcl * 0
    10-JAN-2014 06:31:39 * service_update * orcl * 0
    10-JAN-2014 06:32:27 * service_update * orcl * 0
    10-JAN-2014 06:33:18 * service_update * orcl * 0
    10-JAN-2014 06:33:54 * service_update * orcl * 0
    10-JAN-2014 06:34:33 * service_update * orcl * 0
    10-JAN-2014 06:35:24 * service_update * orcl * 0
    10-JAN-2014 06:35:33 * service_update * orcl * 0
    10-JAN-2014 06:36:24 * service_update * orcl * 0
    10-JAN-2014 06:37:15 * service_update * orcl * 0
    10-JAN-2014 06:38:03 * service_update * orcl * 0
    10-JAN-2014 06:38:54 * service_update * orcl * 0
    10-JAN-2014 06:39:39 * service_update * orcl * 0
    10-JAN-2014 06:40:30 * service_update * orcl * 0
    10-JAN-2014 06:40:33 * service_update * orcl * 0
    10-JAN-2014 06:41:24 * service_update * orcl * 0
    10-JAN-2014 06:42:15 * service_update * orcl * 0
    Fri Jan 10 06:43:06 2014
    10-JAN-2014 06:43:06 * service_update * orcl * 0
    10-JAN-2014 06:43:27 * service_update * orcl * 0
    10-JAN-2014 06:43:54 * service_update * orcl * 0
    10-JAN-2014 06:44:12 * service_update * orcl * 0
    10-JAN-2014 06:44:57 * service_update * orcl * 0
    10-JAN-2014 06:45:39 * service_update * orcl * 0
    10-JAN-2014 06:46:27 * service_update * orcl * 0
    10-JAN-2014 06:47:06 * service_update * orcl * 0
    10-JAN-2014 06:47:54 * service_update * orcl * 0
    10-JAN-2014 06:48:39 * service_update * orcl * 0
    10-JAN-2014 06:49:24 * service_update * orcl * 0
    10-JAN-2014 06:49:30 * service_update * orcl * 0
    10-JAN-2014 06:49:33 * service_update * orcl * 0
    10-JAN-2014 06:50:21 * service_update * orcl * 0
    10-JAN-2014 06:50:36 * service_update * orcl * 0
    10-JAN-2014 06:51:27 * service_update * orcl * 0
    10-JAN-2014 06:52:15 * service_update * orcl * 0
    10-JAN-2014 06:53:06 * service_update * orcl * 0
    10-JAN-2014 06:53:39 * service_update * orcl * 0
    10-JAN-2014 06:53:54 * service_update * orcl * 0
    10-JAN-2014 06:54:42 * service_update * orcl * 0
    10-JAN-2014 06:55:33 * service_update * orcl * 0
    10-JAN-2014 06:56:24 * service_update * orcl * 0
    10-JAN-2014 06:57:12 * service_update * orcl * 0
    10-JAN-2014 06:58:00 * service_update * orcl * 0
    10-JAN-2014 06:58:48 * service_update * orcl * 0
    10-JAN-2014 06:59:36 * service_update * orcl * 0
    Fri Jan 10 07:00:21 2014
    10-JAN-2014 07:00:21 * service_update * orcl * 0
    10-JAN-2014 07:00:27 * service_update * orcl * 0
    10-JAN-2014 07:00:33 * service_update * orcl * 0
    10-JAN-2014 07:00:36 * service_update * orcl * 0
    10-JAN-2014 07:01:06 * service_update * orcl * 0
    10-JAN-2014 07:01:09 * service_update * orcl * 0
    10-JAN-2014 07:01:15 * service_update * orcl * 0
    10-JAN-2014 07:02:06 * service_update * orcl * 0
    10-JAN-2014 07:02:57 * service_update * orcl * 0
    10-JAN-2014 07:03:48 * service_update * orcl * 0
    10-JAN-2014 07:03:54 * service_update * orcl * 0
    10-JAN-2014 07:04:33 * service_update * orcl * 0
    10-JAN-2014 07:05:21 * service_update * orcl * 0
    10-JAN-2014 07:05:33 * service_update * orcl * 0
    10-JAN-2014 07:06:21 * service_update * orcl * 0
    10-JAN-2014 07:06:24 * service_update * orcl * 0
    10-JAN-2014 07:07:06 * service_update * orcl * 0
    10-JAN-2014 07:07:12 * service_update * orcl * 0
    10-JAN-2014 07:07:27 * service_update * orcl * 0
    10-JAN-2014 07:08:18 * service_update * orcl * 0
    10-JAN-2014 07:09:09 * service_update * orcl * 0
    10-JAN-2014 07:09:54 * service_update * orcl * 0
    10-JAN-2014 07:10:39 * service_update * orcl * 0
    10-JAN-2014 07:11:30 * service_update * orcl * 0
    10-JAN-2014 07:12:18 * service_update * orcl * 0
    10-JAN-2014 07:13:09 * service_update * orcl * 0
    10-JAN-2014 07:13:54 * service_update * orcl * 0
    10-JAN-2014 07:14:39 * service_update * orcl * 0
    10-JAN-2014 07:14:54 * service_update * orcl * 0
    10-JAN-2014 07:15:33 * service_update * orcl * 0
    10-JAN-2014 07:16:24 * service_update * orcl * 0
    Fri Jan 10 07:17:15 2014
    10-JAN-2014 07:17:15 * service_update * orcl * 0
    10-JAN-2014 07:17:54 * service_update * orcl * 0
    10-JAN-2014 07:18:45 * service_update * orcl * 0
    10-JAN-2014 07:19:30 * service_update * orcl * 0
    10-JAN-2014 07:20:21 * service_update * orcl * 0
    10-JAN-2014 07:20:33 * service_update * orcl * 0
    10-JAN-2014 07:21:21 * service_update * orcl * 0
    10-JAN-2014 07:22:09 * service_update * orcl * 0
    10-JAN-2014 07:23:00 * service_update * orcl * 0
    10-JAN-2014 07:23:51 * service_update * orcl * 0
    10-JAN-2014 07:23:54 * service_update * orcl * 0
    10-JAN-2014 07:24:36 * service_update * orcl * 0
    10-JAN-2014 07:25:27 * service_update * orcl * 0
    10-JAN-2014 07:25:36 * service_update * orcl * 0
    10-JAN-2014 07:25:39 * service_update * orcl * 0
    10-JAN-2014 07:26:27 * service_update * orcl * 0
    10-JAN-2014 07:27:18 * service_update * orcl * 0
    10-JAN-2014 07:28:09 * service_update * orcl * 0
    10-JAN-2014 07:29:00 * service_update * orcl * 0
    10-JAN-2014 07:29:24 * service_update * orcl * 0
    10-JAN-2014 07:30:09 * service_update * orcl * 0
    10-JAN-2014 07:30:12 * service_update * orcl * 0
    10-JAN-2014 07:30:33 * service_update * orcl * 0
    10-JAN-2014 07:30:48 * service_update * orcl * 0
    10-JAN-2014 07:31:39 * service_update * orcl * 0
    10-JAN-2014 07:32:30 * service_update * orcl * 0
    10-JAN-2014 07:33:18 * service_update * orcl * 0
    10-JAN-2014 07:33:54 * service_update * orcl * 0
    Fri Jan 10 07:34:39 2014
    10-JAN-2014 07:34:39 * service_update * orcl * 0
    10-JAN-2014 07:35:30 * service_update * orcl * 0
    10-JAN-2014 07:36:18 * service_update * orcl * 0
    10-JAN-2014 07:37:09 * service_update * orcl * 0
    10-JAN-2014 07:37:30 * service_update * orcl * 0
    10-JAN-2014 07:38:18 * service_update * orcl * 0
    10-JAN-2014 07:39:06 * service_update * orcl * 0
    10-JAN-2014 07:39:54 * service_update * orcl * 0
    10-JAN-2014 07:40:39 * service_update * orcl * 0
    10-JAN-2014 07:41:30 * service_update * orcl * 0
    10-JAN-2014 07:42:21 * service_update * orcl * 0
    10-JAN-2014 07:43:09 * service_update * orcl * 0
    10-JAN-2014 07:43:45 * service_update * orcl * 0
    10-JAN-2014 07:43:54 * service_update * orcl * 0
    10-JAN-2014 07:44:39 * service_update * orcl * 0
    10-JAN-2014 07:45:27 * service_update * orcl * 0
    10-JAN-2014 07:45:33 * service_update * orcl * 0
    10-JAN-2014 07:46:21 * service_update * orcl * 0
    10-JAN-2014 07:47:09 * service_update * orcl * 0
    10-JAN-2014 07:48:00 * service_update * orcl * 0
    10-JAN-2014 07:48:51 * service_update * orcl * 0
    System parameter file is C:\app\hasnaa\product\12.1.0\dbhome_1\network\admin\listener.ora
    Log messages written to C:\app\hasnaa\diag\tnslsnr\hasnaa\listener\alert\log.xml
    Trace information written to C:\app\hasnaa\diag\tnslsnr\hasnaa\listener\trace\ora_3068_2196.trc
    Trace level is currently 0
    Started with pid=3068
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=hasnaa)(PORT=1521)))
    Listener completed notification to CRS on start
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    Error listening on: (ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))
    10-JAN-2014 12:43:12 * service_register * orcl * 12542
    TNS-12542: TNS:address already in use
    TNS-12560: TNS:protocol adapter error
      TNS-00512: Address already in use
       64-bit Windows Error: 48: Unknown error
    10-JAN-2014 12:43:15 * service_update * orcl * 0
    10-JAN-2014 12:43:18 * service_update * orcl * 0
    10-JAN-2014 12:43:21 * service_update * orcl * 0
    10-JAN-2014 12:43:45 * service_update * orcl * 0
    10-JAN-2014 12:43:48 * service_update * orcl * 0
    10-JAN-2014 12:43:57 * service_update * orcl * 0
    10-JAN-2014 12:44:24 * service_update * orcl * 0
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=hasnaa)(PORT=5500))(Security=(my_wallet_directory=C:\APP\HASNAA\admin\orcl\xdb_wallet))(Presentation=HTTP)(Session=RAW))
    10-JAN-2014 12:44:31 * service_update * orcl * 0
    10-JAN-2014 12:44:34 * service_update * orcl * 0
    10-JAN-2014 12:44:52 * service_update * orcl * 0
    10-JAN-2014 12:44:55 * service_update * orcl * 0
    10-JAN-2014 12:45:19 * service_update * orcl * 0
    10-JAN-2014 12:45:25 * service_update * orcl * 0
    10-JAN-2014 12:45:28 * service_update * orcl * 0
    10-JAN-2014 12:45:31 * service_update * orcl * 0
    10-JAN-2014 12:45:34 * service_update * orcl * 0
    10-JAN-2014 12:45:37 * service_update * orcl * 0
    10-JAN-2014 12:46:22 * service_update * orcl * 0
    10-JAN-2014 12:47:13 * service_update * orcl * 0
    10-JAN-2014 12:48:04 * service_update * orcl * 0
    10-JAN-2014 12:48:07 * service_update * orcl * 0
    10-JAN-2014 12:48:10 * service_update * orcl * 0
    10-JAN-2014 12:48:58 * service_update * orcl * 0
    10-JAN-2014 12:49:49 * service_update * orcl * 0
    10-JAN-2014 12:50:37 * service_update * orcl * 0
    10-JAN-2014 12:51:22 * service_update * orcl * 0
    10-JAN-2014 12:52:13 * service_update * orcl * 0
    10-JAN-2014 12:53:04 * service_update * orcl * 0
    10-JAN-2014 12:53:52 * service_update * orcl * 0
    10-JAN-2014 12:53:58 * service_update * orcl * 0
    10-JAN-2014 12:54:40 * service_update * orcl * 0
    10-JAN-2014 12:55:31 * service_update * orcl * 0
    10-JAN-2014 12:55:34 * service_update * orcl * 0
    10-JAN-2014 12:56:25 * service_update * orcl * 0
    10-JAN-2014 12:57:16 * service_update * orcl * 0
    Fri Jan 10 12:58:07 2014
    10-JAN-2014 12:58:07 * service_update * orcl * 0
    10-JAN-2014 12:58:58 * service_update * orcl * 0
    10-JAN-2014 12:59:49 * service_update * orcl * 0
    10-JAN-2014 13:00:34 * service_update * orcl * 0
    10-JAN-2014 13:01:07 * service_update * orcl * 0
    10-JAN-2014 13:01:49 * service_update * orcl * 0
    10-JAN-2014 13:02:28 * service_update * orcl * 0
    10-JAN-2014 13:03:19 * service_update * orcl * 0
    10-JAN-2014 13:03:58 * service_update * orcl * 0
    10-JAN-2014 13:04:46 * service_update * orcl * 0
    10-JAN-2014 13:05:34 * service_update * orcl * 0
    10-JAN-2014 13:06:22 * service_update * orcl * 0
    10-JAN-2014 13:07:13 * service_update * orcl * 0
    10-JAN-2014 13:07:40 * service_update * orcl * 0
    10-JAN-2014 13:07:55 * service_update * orcl * 0
    10-JAN-2014 13:08:43 * service_update * orcl * 0
    10-JAN-2014 13:09:28 * service_update * orcl * 0
    10-JAN-2014 13:10:16 * service_update * orcl * 0
    10-JAN-2014 13:10:37 * service_update * orcl * 0
    10-JAN-2014 13:11:22 * service_update * orcl * 0
    10-JAN-2014 13:11:31 * service_update * orcl * 0
    10-JAN-2014 13:12:22 * service_update * orcl * 0
    Fri Jan 10 13:45:11 2014
    10-JAN-2014 13:45:11 * service_update * orcl * 0
    10-JAN-2014 13:45:17 * service_update * orcl * 0
    10-JAN-2014 13:45:23 * service_update * orcl * 0
    Sat Jan 11 00:34:19 2014
    11-JAN-2014 00:34:19 * service_update * orcl * 0
    11-JAN-2014 00:34:22 * service_update * orcl * 0
    11-JAN-2014 00:34:28 * service_update * orcl * 0
    11-JAN-2014 00:34:31 * service_update * orcl * 0
    11-JAN-2014 00:34:37 * service_update * orcl * 0
    11-JAN-2014 00:35:01 * service_update * orcl * 0
    11-JAN-2014 00:35:07 * service_update * orcl * 0
    11-JAN-2014 00:35:13 * service_update * orcl * 0
    11-JAN-2014 00:35:34 * service_update * orcl * 0
    11-JAN-2014 00:36:10 * service_update * orcl * 0
    11-JAN-2014 00:36:19 * service_update * orcl * 0
    11-JAN-2014 00:37:10 * service_update * orcl * 0
    11-JAN-2014 00:37:58 * service_update * orcl * 0
    11-JAN-2014 00:38:52 * service_update * orcl * 0
    11-JAN-2014 00:39:37 * service_update * orcl * 0
    11-JAN-2014 00:39:58 * service_update * orcl * 0
    11-JAN-2014 00:40:43 * service_update * orcl * 0
    11-JAN-2014 00:41:28 * service_update * orcl * 0
    11-JAN-2014 00:42:19 * service_update * orcl * 0
    11-JAN-2014 00:43:07 * service_update * orcl * 0
    11-JAN-2014 00:43:58 * service_update * orcl * 0
    11-JAN-2014 00:44:19 * service_update * orcl * 0
    11-JAN-2014 00:45:07 * service_update * orcl * 0
    11-JAN-2014 00:45:34 * service_update * orcl * 0
    11-JAN-2014 00:46:25 * service_update * orcl * 0
    11-JAN-2014 00:47:13 * service_update * orcl * 0
    11-JAN-2014 00:48:04 * service_update * orcl * 0
    11-JAN-2014 00:48:55 * service_update * orcl * 0
    11-JAN-2014 00:49:40 * service_update * orcl * 0
    11-JAN-2014 00:49:52 * service_update * orcl * 0
    11-JAN-2014 00:50:34 * service_update * orcl * 0
    Sat Jan 11 00:51:25 2014
    11-JAN-2014 00:51:25 * service_update * orcl * 0
    11-JAN-2014 00:52:13 * service_update * orcl * 0
    11-JAN-2014 00:53:04 * service_update * orcl * 0
    11-JAN-2014 00:53:55 * service_update * orcl * 0
    11-JAN-2014 00:54:19 * service_update * orcl * 0
    11-JAN-2014 00:55:04 * service_update * orcl * 0
    11-JAN-2014 00:55:34 * service_update * orcl * 0
    11-JAN-2014 00:56:25 * service_update * orcl * 0
    11-JAN-2014 00:57:16 * service_update * orcl * 0
    11-JAN-2014 00:57:28 * service_update * orcl * 0
    11-JAN-2014 00:57:34 * service_update * orcl * 0
    11-JAN-2014 00:58:25 * service_update * orcl * 0
    11-JAN-2014 00:58:31 * service_update * orcl * 0
    11-JAN-2014 00:59:19 * service_update * orcl * 0
    11-JAN-2014 01:00:04 * service_u

  • ORA-12154 when connects. Instant client installed.

    Hi. I am installed instant client 10.2 and cannot connect to database : give error ORA-12154: TNS:could not resolve the connect identifier specified. I am using Linux. I am set TNS_ADMIN and put into this directory file tnsnames.ora with all necessary instances, but have not no one result.

    Add the following line to sqlnet.ora in the directory to which TNS_ADMIN points:
    TRACLE_LEVEL_CLIENT = SUPPORT
    Then try again and examine the *.trc file created. This should tell you what's wrong.
    Yours,
    Laurenz Albe

  • Tns Entry issues with Oracle 11gr 2 client

    Hi All,
    We have a tnsentry (mentioned below) which works on Oracle 11gR1 client however the same does not work on an Oracle 11 gr2 client.
    KYC_uat=(DESCRIPTION=
    (ADDRESS_LIST=(FAILOVER=on)(ADDRESS=(PROTOCOL=TCP)(HOST=tss2l051-scan.svr.us.jpmchase.net)(PORT=4699))(LOAD_BALANCE=yes))
    (CONNECT_DATA=(SERVICE_NAME=SKYC.uat.svr.us.jpmchase.net)(FAILOVER_MODE=(TYPE=select)(METHOD=basic))))
    The error that we get in 11gr2 client is
    ERROR:
    ORA-28547: connection to server failed, probable Oracle Net admin error
    Can any one please share some light on this.
    Best Regards,
    Kapil Uppal

    bcm@bcm-laptop:~$ oerr ora 28547
    28547, 0000, "connection to server failed, probable Oracle Net admin error"
    // *Cause:   A failure occurred during initialization of a network connection
    //           from a client process to the Oracle server.  The connection
    //           was completed but a disconnect occurred while trying to
    //           perform protocol-specific initialization, usually due to
    //           use of different network protocols by opposite sides
    //           of the connection.  This usually is caused by incorrect
    //           Oracle Net administrative setup for database links or external
    //           procedure calls.   The most frequent specific causes are:
    //           --  The connection uses a connect string which refers
    //               to a Heterogeneous Services agent instead of
    //               an Oracle server.
    //           --  The connection uses a connect string which includes
    //               an (HS=) specification.
    //           --  Hitting Ctrl+C before connection initialization is
    //               complete.
    //           --  Using DRCP on Windows with SQLNET.AUTHENTICATION_SERVICES
    //               set to NTS.
    //           --  Connection timeout due to SQLNET.INBOUND_CONNECT_TIMEOUT
    //               parameter when all shared servers are busy in
    //               shared server configuration.
    // *Action:  Check Oracle Net administration in the following ways:
    //           --  When using TNSNAMES.ORA or an Oracle Names server, make sure
    //               that the client connection to the Oracle server uses
    //               the correct service name or SID.
    //           --  Check LISTENER.ORA on the connection end point's host machine
    //               to assure that this service name or SID refers
    //               to the correct server.
    //           --  Confirm in TNSNAMES.ORA or the equivalent service definition
    //               that the connect string does not contain (HS=).
    //           --  Set SQLNET.AUTHENTICATION_SERVICES to NONE when using DRCP
    //               on Windows.
    bcm@bcm-laptop:~$

  • "exp" with Oracle 11.1 client and 10.2 instance gives "MAXSIZE" error

    My company has a lot of customers running lots of versions (and combinations of versions) of Oracle, so I like to come up with commands that will usually work for all of them. I recently installed Oracle 11.1.0.6 client on my PC, and this happened when connecting to a 10.2.0.3 database on an AIX machine:
    C:\temp>exp mfour/mfour@testdb tables=(bill_period_loc) file=bpl.exp
    Export: Release 11.1.0.6.0 - Production on Thu Jun 5 08:25:14 2008
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition
          Release 10.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    Export done in WE8MSWIN1252 character set and
          AL16UTF16 NCHAR character set
    server uses WE8ISO8859P1 character set (possible charset conversion)
    About to export specified tables via Conventional Path ...
    . . exporting table                BILL_PERIOD_LOC
    EXP-00008: ORACLE error 904 encountered
    ORA-00904: "MAXSIZE": invalid identifier
    EXP-00008: ORACLE error 942 encountered
    ORA-00942: table or view does not exist
    EXP-00024: Export views not installed, please notify your DBA
    EXP-00000: Export terminated unsuccessfully
    C:\temp>In the past I've had good results when using newer clients to exp/imp on older instances. Is there a switch or something to get this to work?

    Although it may work (sometimes), using newer export versions against older database versions is neither recommended nor supported. So use the same export version as the target database.
    Werner

  • ORA-01013 with Oracle ODBC Driver 8.1.6.3

    I have a very strange problem occuring with the latest Oracle 8.1.6 Driver. I am able to set up the ODBC connection and it tests correctly. I'll open an Access 97 database and attempt to link to a table in an Oracle 8.1.6 through ODBC. I can connect to the database fine and it brings back a list of the available tables. However, when I select a table and attempt to link to it, I get the following error:
    ORA-01013: user requested cancel of current operation.
    This behavior also occurs if I try this operation through VB 6.0 code.
    Has anyone seen this before or better yet, have an answer as to why it is occurring?
    P.S., I'm using MDAC 2.51

    As an update, when I turn tracing on, here is the section of the log file that contains the error.
    MSACCESS d5-cb ENTER SQLStatisticsW
    HSTMT 01861988
    WCHAR * 0x00000000 [ -3] <empty string>
    SWORD -3
    WCHAR * 0x01862528 [ 5] "HQ"
    SWORD 5
    WCHAR * 0x01862548 [ -3] "AS"
    SWORD -3
    UWORD 1 <SQL_INDEX_ALL>
    UWORD 0 <SQL_QUICK>
    MSACCESS d5-cb EXIT SQLStatisticsW with return code -1 (SQL_ERROR)
    HSTMT 01861988
    WCHAR * 0x00000000 [ -3] <empty string>
    SWORD -3
    WCHAR * 0x01862528 [ 5] "HQ"
    SWORD 5
    WCHAR * 0x01862548 [ -3] "AS"
    SWORD -3
    UWORD 1 <SQL_INDEX_ALL>
    UWORD 0 <SQL_QUICK>
    DIAG [S1T00] [Oracle][ODBC][Ora]ORA-01013: user requested cancel of current operation
    (1013)

  • Loosing connections with ORA-12154

    Our scenario goes like this. We run transaction(1000's) fine for a while
    (hours!), then we get the following errors in sequence for short period of
    time(~2-5 minutes):
    <JDBC Pool> Sleeping in createResource()
    <JDBC Pool> Sleeping in createResource()
    <JDBC Pool> Connection for pool "bankframePool" created.
    <JDBC Pool> Connection for pool "bankframePool" created.
    <JDBC Pool> Sleeping in createResource()
    <JDBC Pool> Sleeping in createResource()
    Our application, during that time, stops with ORA-12154 from Oracle. Then
    everything seems to recover fine and we process transaction again fine for
    hours. Why would we loose the connections like this while we are running
    transaction non stop through the system?
    Regards,
    Andre Dionne

    We are running on solaris 8. This morning we tried to start the application
    servers with the minimum connection equal to the maximum(150) and we got
    ORA-12154 after creating 122 connections. Could it be related to the Oracle
    OCI8 driver we are using?
    "Joseph Weinstein" <[email protected]> wrote in message
    news:[email protected]..
    >
    >
    Andre Dionne wrote:
    Our scenario goes like this. We run transaction(1000's) fine for a while
    (hours!), then we get the following errors in sequence for short period
    of
    time(~2-5 minutes):
    <JDBC Pool> Sleeping in createResource()
    <JDBC Pool> Sleeping in createResource()
    <JDBC Pool> Connection for pool "bankframePool" created.
    <JDBC Pool> Connection for pool "bankframePool" created.
    <JDBC Pool> Sleeping in createResource()
    <JDBC Pool> Sleeping in createResource()
    Our application, during that time, stops with ORA-12154 from Oracle.Then
    everything seems to recover fine and we process transaction again finefor
    hours. Why would we loose the connections like this while we are running
    transaction non stop through the system?
    Regards,
    Andre DionneHi. For stability and performance, I recommend defining your connectionpool
    to make all it's connections at startup (init = max). Oracle is sometimesweak
    when being asked for lots of connections at any one time. Sometimes itgets overrun,
    and fails some connection attempts. Also, tell me if you're running onSolaris.
    Joe

  • DNS Set Up system throw as ORA-12154; TNS :could not resolve the connect id

    Hi,
    While i'm creating DNS set up system throws below message
    unable to connect
    SQLState=08004
    DNS Set Up for instantclient(win32-10.2.0.4) system throw as ORA-12154; TNS :could not resolve the connect identified specified.
    operationg system:xp
    dir path:C:\Oracle\instantclient10_2
    TNSNAMES.ORA(C:\Oracle\instantclient10_2\NetWork\ADMIN) Contants
    YourTNSName =sankar
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST =localhost)(PORT =1521))
    (CONNECT_DATA =
    (SID =sankar)
    (SERVER = DEDICATED)
    dir contains:
    sqresus.dll,
    sqresja.dll
    sqoras32.dll
    sqora32.dll
    oraociei10.dll
    oraocci10.dll
    orannzsbb10.dll
    ojdbc14.jar
    ocijdbc10.dll
    ociw32.dll
    oci.dll
    classes12.jar

    user7197586 wrote:
    Hi
    I have been created one DBLink it's created but when i am trying to access the data through the link it's raise error as
    "ORA-12154: TNS:could not resolve the connect identifier specified"
    CREATE
    PUBLIC DATABASE LINK
    Vrd_tcplink
    CONNECT TO
    "SAPVRD"
    IDENTIFIED BY
    "manager123"
    USING
    'VRD_TCP.WORLD'
    created this above dblink
    Kindly Suggest to wau out.
    Regards,
    Sachin
    When using a dblink, the database with the link is acting as a client to the remote database ... exactly like sqlplus running on the db server.
    read: http://edstevensdba.wordpress.com/2011/02/26/ora-12154tns-03505/ ora-12154tns-03505

  • ORA-12535 TNS:Operation time Out and ORA-12154:TNS Could not resolve servic

    Greetings!!!
    I have installed my Oracle Database 10g & Developer Suite 10g in Windows XP Pro Machine. Oracle Application Server 10g is also installed in Windows 2003 Server machine.Both machine have different domain.When using Form Developer Suite OC4J to run my form program, i can connect to the database properly run the form perfectly.
    Problem encountered.
    When I tried to run the form using Application Server 10g(installed in Windows 2003 Server), I got an error ORA-12154:TNS Could not resolve service name when connecting to the database and I got an error ORA-12535 TNS:Operation time Out when using TNSPing. I checked both the configuration of TNSNAMES.ORA(database & Application SErver) using the same port & service name but still got the same error.
    Hope somebody can help me out there...
    Many thanks in advance.
    Regards,
    BTF

    I have seen this before with my setup, I found that I had to go into the net configuration assistant, and change my host name to the fully qualified name, example: my compuer name is computer1, I had to enter in computer1.OIT.Docfinity.com for it to take. That has always gotten me past that TNS error, just my 2 cents, hope it helps.
    keep on keeping on.

  • Oracle Admin Tool Client

    Hi ,
    I'm facing a lot of problems with Oracle BI admin client Tool that I installed in my Windows 7 to use my cubes ( my Oracle BI server is in a Unix machine ).
    The error that I face is *[nQSError : 6001] Connection failed for Remoote Service-JavaHost-AWImportService11G with message [nQSError : 77029] Java Host is not available inside the function AWImportService11G of SAW RPC modules ...*
    I'm sure my NSQConfig file is okey, with the server address and port 9810 in Javahost config. And I made sure Javahost sevice is running .
    I heard that Oracle BI admin tool Client is a light version of the whole Oracle BI, so there are some missing components ... I thought about unstalling the whole Oracle BI in my windows 7 machine to use my cubes that are in the unix machine.
    Do you think it's a good idea ? is there anyone facing the same problem ?
    Thax all !
    Edited by: 969348 on 23 nov. 2012 05:47

    Oh, I mean uninsall Oracle BI Admin Tool Client , and install the whole Oracle Business Intelligence in my Windows 7 32 bits.
    Well, the whole story is that :
    -I have a Oracle BI system in a remoot unix server.
    -I used AWM in my Win7 32 , to create cubes : Now, I need to administrate my cubes to make reports.
    -So, I installed Oracle BI Admin tool Client in my Win7 machine : But when I try to create a New repository to get my cubes , I get the nQSError 60001 and 77029 Errors, even If I made the right changes.
    -Now, As I'm stuck, I'm thinking about an alternative... I don't know if installing the whole Oracle BI in my Win7 machine is a good alternative ... And if I do so, what type of Installation I need to follow ...
    Thanks for your reply

  • License for Oracle Virtual Desktop Client

    I am trying to find a statement by Oracle as to wither Oracle Virtual Desktop Client is considered freeware or not. At one time I thought I saw a statement to the effect that OVDC was provided with a current support agreement but I can't seem to find that statement now. Does anyone know where there is verbage to this effect?

    I am afraid it is a bit more complicated than that. You can buy licenses per device or per named user. If you license per "named user" then you can install and use OVDC an as many devices as you wish. But if your use "per device" licenses, you'll need a license for each Sun Ray DTU and also all devices with the OVDC installed.
    I found this on iTunes concerning OVDC for iPad:License: Use of Oracle Virtual Desktop Client requires a valid Sun Ray Software or Oracle Virtual Desktop Infrastructure license.Bjoern

  • ClassNotFound Error with Oracle 10g...please help!

    Hello everyone!
    I am currently using jdk 1.4.2_10 with Oracle 10g. I tried to connect to the database, like this:
    try{
    String driverName = "oracle.jdbc.driver.OracleDriver";
    String serverName = "***.***.*.*";
    String portNumber = "****";
    String sid = "****";
    String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber + ":" + sid;
    String usr = "*****";
    String pwd = "*****";
    //Load the JDBC driver
    Class.forName(driverName);
    //Connect to the base
    connect = DriverManager.getConnection(url,usr,pwd);
    catch(ClassNotFoundException e){
    System.out.println("Error---No database driver");
    catch(SQLException s){
    System.out.println("Error---No connection to the database");
    Here is what's in my classpath, (i added the ojdbc14.jar) :
    c:\oracle\product\10.2.0\client_2\jdbc\lib\ojdbc14.jar;
    C:\Program Files\QuickTime\QTSystem\QTJava.zip
    Can anyone please help me?
    It's really a problem, i've been searching for 2 days now.....
    thank you

    Most likely it is about
    oracle.jdbc.driver.OracleDriver
    You need to include Oracle JDBC lib.
    If you are using JDeveloper then:
    In Project properties click on Libraries
    Click AddLibrary
    In the list that appears choose Oracle JDBC

  • ORA-12154 Oracle Client Error with VirtualBox

    This is rather lengthy and I am not sure this is the right forum for this question but it does involve the Oracle Client.
    My development environment consists of a single workstation that is not connected to a network. The OS for the database is Linux CentOS (Red Hat Enterprise Linux 3 or 4). The database seems to run fine from the Linux OS - OEM and SQLPlus run as well as all the other utilities (lsnrctl, etc.).
    The database front-end has to be Access 2003. This is requiring that I run Windows from VirtualBox so I can do the FE database development.
    In addition to this when I try to create a system (or any other) DSN, I get the following behaviors.
    - Start up the "Microsoft ODBC Administrator"
    - Select the "System DSN" tab
    - Click "Add..."
    - Select driver: "Oracle in OraClieht11g_home1"
    - Enter the following data in the following fields
    Data Source Name: "orcl_hr"
    TNS Service Name: "orcl"
    - Click the "Test Connection" button
    This initiates a wait of about 1 minute
    - In the "Oracle ODBC Driver Connect" dialog, enter the following data in the fields
    Service Name: "orcl"
    User Name: "hr"
    Password: <the hr password>
    This initiates another wait of about 1 minute after which I get an error dialog with the following message:
    Unable to connect
    SQLState=08004
    [oracle][ODBC][Ora]ORA-12154: TNS:could not resolve the connect identifier specified
    On the Windows side the ORACLE_SID is defined as "orcl"
    On the Linux (db server) side, the following files have the listed contents:
    Listener.ora
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = local.net)(PROT = 1521))
      )sqlnet.ora
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)tnsnames.ora
    ORCL =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = local.net)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = orcl)
      )Another data point: I notice that the client software has a SqlPlus application. When I try to log on to the database through this app I get the error: ORA-12560: TNS:protocol adapter error.
    Is there a VirtualBox problem? Can it be fixed?
    Edited by: DBelt on Jun 29, 2009 10:19 AM

    The OracleClient install does not create either of the sqlnet.ora or tnsnames.ora files. These are created in the ORACLE_HOME/network/admin direcory of the host machine, however -- as well as the listener.ora file.
    One question I have before we procede much further is what is the "Instant Client" anyway? As I said earlier, I am not even sure this is the proper forum for my question since it involves the OracleClient software -- I know what the OracleClient is but not the "Instant Client".
    That said, I am able to telnet port 1521 from the host if I uset the literal IP address only (using <local.net> does not work). I am completely unable to ping the host at all from VirtualBox (I am operating in NAT mode and this seems to be a documented "feature" of VBox).
    The "sqlplus user/pwd@(DESCRIPTION=...)" comment does not work. I have tried several iterations: 1) as provided above with the double-quotes resulting in a display of the proper syntax for invoking sqlplus, 2) without the quotes, and 3) replacing the double-quotes with parentheses. The outcome of experiments 2) and 3) is a syntax error occurring at "(" for the former or at user/pwd for the latter. (I am substituting proper values for the user, pwd, and local.net placeholders.)
    I am starting to wonder if my problem may lie in trying to run the client from VirtualBox in NAT mode.
    Another question has to do with the ODBC Administrator -- Where does it get its list of "TNS Service Names"?

Maybe you are looking for

  • Trouble in extracting Via ODBC to Oracle or Access - Numbers Change

    I am running a report that I only want the group records printed. One of the group fields  shows a sum of a function from the detail records. The following function sj_rec is on the detail record WhilePrintingRecords; Numbervar clm_sj_amt; if {SJE_RE

  • Poor performance after moving from hp to linux, oracle 11.2.0.1 to 11.2.0.3, filesystems to ASM

    We moved a database from HP/UX to linux, upgraded oracle from 11.2.0.1 to 11.2.0.3, and from filesystems to ASM.  The new server has 32 cores and 500gb of memory. the old server has less than half of that.  Queries take twice as long to run on the ne

  • Computer wont recognize iphone

    i unplugged my iphone4s on accident while it was doing a backup restore in itunes when i plugged it back in a notification popped up saying the device in the usb port is unrecognised because the device has malfunctioned.... how do i fix this

  • Randomly dropped from facebook, google search, itunes store

    I posted this in the Airport Express forum but thought there may be someone with the same issues here. So we have my Imac, a macbook pro, and 2 other macbooks in our place. We run our ADSL off of an Airport Express base station. Everything was workin

  • Sound not working on laptop hp pavilion dv6

    My sound is not working on my HP Pavilion dv6 Laptop.  I can not get any music to play through itunes and it will not even start playing when the play button is pressed.  I have not tried any movies.  When computer restarts it does not play windows o