Error using Oracle Suggested Backup

Hi, I am a first time DBA. A new 10g database has just been installed and I have just set up Oracle Suggested Backup in Enterprise Manager for the first time. The first run failed and this is the output log:
Any help or suggestion is sincerely appreciated.
Thanks.
Output Log
SQL*Plus: Release 10.2.0.1.0 - Production on Fri Jan 5 02:00:19 2007
Copyright (c) 1982, 2005, Oracle. All rights reserved.
SQL> SQL> Connected.
SQL> SQL> SQL> Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> SQL> Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
SQL*Plus: Release 10.2.0.1.0 - Production on Fri Jan 5 02:00:37 2007
Copyright (c) 1982, 2005, Oracle. All rights reserved.
SQL> SQL> Connected to an idle instance.
SQL> SQL> ORACLE instance started.
Total System Global Area 293601280 bytes
Fixed Size          1248600 bytes
Variable Size          100663976 bytes
Database Buffers     184549376 bytes
Redo Buffers          7139328 bytes
Database mounted.
SQL> Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
Recovery Manager: Release 10.2.0.1.0 - Production on Fri Jan 5 02:00:42 2007
Copyright (c) 1982, 2005, Oracle. All rights reserved.
RMAN>
connected to target database: ATCFGENP (DBID=36478235, not open)
using target database control file instead of recovery catalog
RMAN>
echo set on
RMAN> run {
2> allocate channel oem_disk_backup device type disk;
3> recover copy of database with tag 'ORA$OEM_LEVEL_0';
4> backup incremental level 1 cumulative copies=1 for recover of copy with tag 'ORA$OEM_LEVEL_0' database;
5> }
allocated channel: oem_disk_backup
channel oem_disk_backup: sid=156 devtype=DISK
Starting recover at 05-JAN-07
no copy of datafile 1 found to recover
no copy of datafile 2 found to recover
no copy of datafile 3 found to recover
no copy of datafile 4 found to recover
no copy of datafile 5 found to recover
no copy of datafile 6 found to recover
no copy of datafile 7 found to recover
no copy of datafile 8 found to recover
no copy of datafile 9 found to recover
R_DAT1.DBF
output filename=D:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\ATCFGENP\DATAFILE\O1_MF_WAIVER_D_2SVY0K24_.DBF tag=ORA$OEM_LEVEL_0 recid=8 stamp=611028161
channel oem_disk_backup: datafile copy complete, elapsed time: 00:00:01
channel oem_disk_backup: starting incremental level 1 datafile backupset
channel oem_disk_backup: specifying datafile(s) in backupset
including current control file in backupset
including current SPFILE in backupset
channel oem_disk_backup: starting piece 1 at 05-JAN-07
released channel: oem_disk_backup
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ==============
RMAN-00571: ===========================================================
RMAN-03009: failure of backup command on oem_disk_backup channel at 01/05/2007 02:02:46
ORA-19809: limit exceeded for recovery files
ORA-19804: cannot reclaim 7127040 bytes disk space from 2147483648 limit
RMAN> exit;
Recovery Manager complete.
SQL*Plus: Release 10.2.0.1.0 - Production on Fri Jan 5 02:02:47 2007
Copyright (c) 1982, 2005, Oracle. All rights reserved.
SQL> SQL> Connected.
SQL> SQL>
Database altered.
SQL> Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options

Your Flashback Recovery Area is not sized properly, follow the suggestions as given by the error message:
Error:     ORA-19804 (ORA-19804)
Text:     cannot reclaim %s bytes disk space from %s limit
Cause:     Oracle cannot reclaim disk space of specified bytes from the
     DB_RECOVERY_FILE_DEST_SIZE limit.
Action:     There are five possible solutions: 1) Take frequent backup of
     recovery area using RMAN. 2) Consider changing RMAN retention
     policy. 3) Consider changing RMAN archivelog deletion policy. 4)
     Add disk space and increase DB_RECOVERY_FILE_DEST_SIZE. 5) Delete
     files from recovery area using RMAN.
Werner

Similar Messages

  • RMAN Backup to tape using Oracle Secure Backup

    I am trying to take 11g R2 (11.2.0.3) database backup using RMAN. I am using Oracle Secure Backup for configuring virtual tape library and virtual tape drive.
    Whenever, I am running the RMAN backup script it simply hangs. While checking the backup job status from Oracle Secure Backup web interface, the job status are displaying 'pending resource availability'.
    On, furthur investigating the job, the following error message are displayed,
    " Dispatching job to run on oradb. Drive or volume on which mount attempted is unusable".
    Library and Tape Creation:
    mkdev -t library -o -S 4 -a oradb:/vlib -v vlib
    mkdev -t tape -o -a ora11:/vt -v -l vlib -d 1 vt
    Not able to fix this error. Need help
    Message was edited by: 799814

    There is a VTL: http://mhvtl-linux-virtual-tape-library-community-forums.966029.n3.nabble.com/
      really work well with OSB 10.3.0.3 64bit, the version of it, fully tested by me , is 1.2
    The installation guide of it here:
    mh virtual tape & library system.
    Instructions assume reader is familiar with the kernel build process.
    There are two sections of code to build.
    - The kernel module
    - The user-space daemons.
    Kernel module mhvtl:
    ==================
    1) Make sure the kernel-devel package to match your running kernel is installed.
    e.g.
    RedHat AS 4 & 5:
    # rpm -qa|grep kernel
    kernel-2.6.9-34.0.1.EL
    kernel-devel-2.6.9-34.0.1.EL
    kernel-2.6.9-5.EL
    kernel-devel-2.6.9-5.EL
    kernel-utils-2.4-13.1.80
    SLES 9 & 10:
    # rpm -qa|grep kernel
    2) Extract the mhvtl source code.
    # tar xvfz mhvtl-2012-04-04.tgz
    3) Change directory into the kernel driver source.
    # cd mhvtl-1.2/kernel/
    # make
    # make install
    User space daemons:
    ===================
    Pre-req for a running mhvtl
    - sg3_utils (http://sg.danny.cz/sg/sg3_utils.html)
    Pre-req to build/compile userspace:
    - zlib-devel
    * To build an RPM
      ===============
    cp mhvtl-YYYY-MM-DD.tar.gz /usr/src/packages/SOURCE/
    cd /usr/src/packages/SOURCE
    rpmbuild -tb mhvtl-YYYY-MM-DD.tar.gz
    <wait for rpm build to complete>
    rpm -Uvh /usr/src/packages/RPMS/<cpu type>/mhvtl-1.2-z.<cpu type>.rpm
    (The rpm install will create system group & accounts vtl)
    - Note: For RedHat, replace 'packages' with 'redhat'
    * To build from tar archive (Debian / Ubuntu):
      ============================================
    apt-get install lsscsi
    apt-get install sg3_utils
    To limit damage that may occur by wayward daemons, I highly recommend creating
    a group and user called 'vtl'
    # /usr/sbin/groupadd --system vtl
    # /usr/sbin/useradd --system -c "Vitrual Tape Library" -d /opt/vtl -g vtl -m vtl
    Now build user space daemons:
    From the parent directory where you extracted the source.
    # cd mhvtl-1.2
    Build the binaries
    # make
    Install the rc script into /etc/init.d/ and binaries to /usr/local/bin/
    # make install
    Start daemons:
    /etc/init.d/mhvtl start
    Test:
    Note: Make sure the 'mtx' & 'lsscsi' utilities are installed
    The virtual devices are attached to HBA #5 in this example.
    e.g.
    # lsscsi -g
    [0:0:0:0]    disk    ATA      WDC WD1200BEVS-0 02.0  /dev/sda  /dev/sg0
    [3:0:0:0]    cd/dvd  Optiarc  DVD RW AD-7910A  1.D1  /dev/sr0  /dev/sg1
    [5:0:0:0]    mediumx SPECTRA  PYTHON           5500  /dev/sch0  /dev/sg6
    [5:0:1:0]    tape    QUANTUM  SDLT600          5500  /dev/st0  /dev/sg2
    [5:0:2:0]    tape    QUANTUM  SDLT600          5500  /dev/st1  /dev/sg3
    [5:0:3:0]    tape    IBM      ULT3580-TD4      5500  /dev/st2  /dev/sg4
    [5:0:4:0]    tape    IBM      ULT3580-TD4      5500  /dev/st3  /dev/sg5
    # mtx -f /dev/sg6 status
      Storage Changer /dev/sg6:4 Drives, 37 Slots ( 4 Import/Export )
    Data Transfer Element 0:Empty
    Data Transfer Element 1:Empty
    Data Transfer Element 2:Empty
    Data Transfer Element 3:Empty
          Storage Element 1:Full :VolumeTag=SDLT01S3                           
          Storage Element 2:Full :VolumeTag=SDLT02S3                           
          Storage Element 3:Full :VolumeTag=SDLT03S3                           
          Storage Element 4:Full :VolumeTag=SDLT04S3                           
          Storage Element 5:Full :VolumeTag=SDLT05S3                           
          Storage Element 6:Full :VolumeTag=SDLT06S3                           
          Storage Element 7:Full :VolumeTag=SDLT07S3                           
          Storage Element 8:Full :VolumeTag=SDLT08S3                           
          Storage Element 9:Full :VolumeTag=SDLT09S3                           
          Storage Element 10:Empty
          Storage Element 11:Full :VolumeTag=ULT001L1                           
          Storage Element 12:Full :VolumeTag=ULT002L2                           
          Storage Element 13:Full :VolumeTag=ULT003L3                           
          Storage Element 14:Full :VolumeTag=ULT004L4                           
          Storage Element 15:Full :VolumeTag=ULT005L1                           
          Storage Element 16:Full :VolumeTag=ULT006L2                           
          Storage Element 17:Full :VolumeTag=ULT007L3                           
          Storage Element 18:Full :VolumeTag=ULT008L4                           
          Storage Element 19:Full :VolumeTag=ULT009L1                           
          Storage Element 20:Empty
          Storage Element 21:Full :VolumeTag=8MM001X4                           
          Storage Element 22:Full :VolumeTag=8MM002X4                           
          Storage Element 23:Full :VolumeTag=8MM003X4                           
          Storage Element 24:Full :VolumeTag=8MM004X4                           
          Storage Element 25:Empty
          Storage Element 26:Empty
          Storage Element 27:Empty
          Storage Element 28:Empty
          Storage Element 29:Empty
          Storage Element 30:Empty
          Storage Element 31:Full :VolumeTag=CLN001L1                           
          Storage Element 32:Full :VolumeTag=CLN002L1                           
          Storage Element 33:Full :VolumeTag=CLN003L1                           
          Storage Element 34 IMPORT/EXPORT:Empty
          Storage Element 35 IMPORT/EXPORT:Empty
          Storage Element 36 IMPORT/EXPORT:Empty
          Storage Element 37 IMPORT/EXPORT:Empty
    Enjoy.
    Please feel free in letting me know if this works for you.
    Bug fixes and suggestions always welcome.
    [email protected]
    [email protected]

  • Error using Window Server Backup on 2012R2 Hyper-V to network share

    Hi
    I have a Windows 2012 R2 Hyper-V server. It runs a Windows 2012 R2 VM (called
    server-1).
    I want to backup the VM to a network location (\\network-1\server-1_backup$). To do this, I installed Windows Server Backup from the command line and configured a backup to look like this:
    C:\Users\admin>wbadmin enable backup
    wbadmin 1.0 - Backup command-line tool
    (C) Copyright 2013 Microsoft Corporation. All rights reserved.
    The scheduled backup settings:
    Bare metal recovery : Not Included
    System state backup: Not Included
    Volumes in backup: (null)
    Components in backup: HyperV\server-1
    Files excluded: (null)
    Advanced settings: VSS Backup Option (FULL)
    Location to store backup: \\network-1\server-1_backup$\
    Times of day to run backup: 04:00
    But when I run this backup manually, I get the following error:
    C:\Users\admin>wbadmin start backup
    wbadmin 1.0 - Backup command-line tool
    (C) Copyright 2013 Microsoft Corporation. All rights reserved.
    Do you want to create a backup using the same configuration that you use for
    scheduled backups?
    [Y] Yes [N] No y
    The backup operation to Scheduled backup target is starting.
    Creating a shadow copy of the volumes specified for backup...
    Summary of the backup operation:
    The backup operation stopped before completing.
    The backup operation stopped before completing.
    Detailed error: A component critical volume failed to snapshot.
    Log of files successfully backed up:
    C:\Windows\Logs\WindowsServerBackup\Backup-23-02-2015_08-49-55.log
    Log of files for which backup failed:
    C:\Windows\Logs\WindowsServerBackup\Backup_Error-23-02-2015_08-49-55.log
    ERROR - The shared restore point operation failed with error (0x8100010c)
    No valid component or volume to snapshot.
    A component critical volume failed to snapshot.
    The log file then looks like this:
    Writer Failures
    Writer Id: {66841CD4-6DED-4F4B-8F17-FD23F8DDC3DE}
    Instance Id: {3976D373-854E-4527-B85D-7B61924C8597}
    Writer Name: Microsoft Hyper-V VSS Writer
    Writer State: 0
    Failure Result: 81000112
    Application Result: 0
    Application Message: (null)
       Component: 1DAF1C56-0635-4043-A933-E97A62EBC139
       Logical Path:
       Component Result: 8100010D
       Component Message: Component reports path on network share which cannot be snapshotted. (0x8100010D)
       Component: 30144C93-56A2-4259-B276-86D59AC767E9
    Application backup
    Writer Id: {66841CD4-6DED-4F4B-8F17-FD23F8DDC3DE}
       Component: 1DAF1C56-0635-4043-A933-E97A62EBC139
       Caption     : Offline\server-1
       Logical Path:
       Error           : 8078001D
       Error Message   : The operation ended before completion.
    The odd thing is that if I set this up from a Windows 2012 Server using the GUI to exactly the same network destination, the backup works no problem. It just doesn't work when using Server 2012 R2 Hyper-V configured through a command line.
    Any help appreciated,
    Andrew

    Hi Andrew,
    I tested this in my lab server 2012R2  , but there's no error .
    I would suggest you to create a new share folder on other server then check if the issue persists .
    Writer Name: Microsoft Hyper-V VSS Writer
    Writer State: 0
    Failure Result: 81000112
    Application Result: 0
    Application Message: (null)
       Component: 1DAF1C56-0635-4043-A933-E97A62EBC139
       Logical Path:
       Component Result: 8100010D
       Component Message: Component reports path on network share which cannot be snapshotted. (0x8100010D)"
    According to this error , please check if the VM's resource (such as VHD file) was restored on network share .
    I also searched the error "ERROR - The shared restore point operation failed with error (0x8100010c)" , but I can not find it within following article :
    http://blogs.technet.com/b/filecab/archive/2009/09/16/diagnosing-failures-in-windows-server-backup-part-1-vss-spp-errors.aspx
    Any further information please feel free to let us know .
    Best Regards,
    Elton Ji
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] .

  • Oracle Suggested Backup, to tape only - Tivoli Storage Manager

    I´ve been asked to cancel future backups to disk and to setup oracle´s suggested backup to the tape device only (which underwater is the tdpo from Tivoli´s storage manager).
    This way the expensive disks can be freed from recovery data.
    I´ve had my share of problems with the tdpo, but besides the problem of this gateway driver between RMAN and TSM I would like to know if this is best for the whole suggested backup strategy.
    Somehow I´m not convinced in backing up to "tape" devices only; for it is slower than local disks, and because we had problems before with the driver, but there may be a lot more reasosn why I should or should not accept this desired goal to be best for our company.
    I hope some of you can help me straighten my vision on this.
    Robin

    The biggest problems I think we might face are the
    big question "who is responsible for what", and the
    administration of non Oracle systems/methods to
    perform backupsi have no problems with such a setup. i provide the rman skript which will be called by TSM.
    the TSM admins notify me if the backup failed. retention on TSM side is disabled, only RMAN deletes obsolete/expired backups.
    All I want to care about is performing a backup to
    Disk, or Disk and Tape, or just Tape from within
    Oracle/RMAN and read the ouput from here.
    Now where these external tape labraries like TSM come
    in there will be more administration for the total
    handling of a backup job. It´s not only RMAN, but a
    tdpo and a TSM server which need to be monitored
    closely. of course TSM has to be monitored but if you already have invested an infrastructure you should use it for every type of backups.
    Sadly Oracle has yet to come up with it´s secure
    backup for TSM systems, but I think it would be best
    if I could let Oracle solely in charge of its own
    backups.if TSM retention is disabled, RMAN has absolute control.
    Then again, I don´t know if anyone has good
    experiences with TSM as the only backup provider for
    Oracle backups. (so no disk backups)it works very good. use staged pools on TSM. primary pool should be diskpool, secondary a tapepool. you can configure TSM to move the data from disk to tape based on fill level or age.
    regards,
    -ap

  • Encoding error using Oracle SAX Parser, please help

    Hi, All,
    I have problem while I am trying to parse an XML file using Oracle SAX Parser.
    The following is from the trace file:
    java.io.UTFDataFormatException: Invalid UTF8 encoding.
    java.io.UTFDataFormatException: Invalid UTF8 encoding.
    at java.lang.Throwable.&lt;init&gt;(Compiled Code)
    at java.lang.Exception.&lt;init&gt;(Compiled Code)
    at java.io.IOException.&lt;init&gt;(Compiled Code)
    at java.io.UTFDataFormatException.&lt;init&gt;(Compiled Code)
    at oracle.xml.parser.v2.XMLUTF8Reader.checkUTF8Byte(Compiled Code)
    at oracle.xml.parser.v2.XMLUTF8Reader.readUTF8Char(Compiled Code)
    at oracle.xml.parser.v2.XMLUTF8Reader.fillBuffer(Compiled Code)
    at oracle.xml.parser.v2.XMLByteReader.saveBuffer(Compiled Code)
    at oracle.xml.parser.v2.XMLReader.fillBuffer(Compiled Code)
    at oracle.xml.parser.v2.XMLReader.tryRead(Compiled Code)
    at oracle.xml.parser.v2.XMLReader.scanXMLDecl(Compiled Code)
    at oracle.xml.parser.v2.XMLReader.pushXMLReader(Compiled Code)
    at oracle.xml.parser.v2.XMLReader.pushXMLReader(Compiled Code)
    at oracle.xml.parser.v2.XMLParser.parse(Compiled Code)
    at data_loader.main(Compiled Code)
    The XML file is a pure ascii text file, with encoding set to UTF-8.
    I can parse the file correctly on NT, but I got problem when I ran the code on a SUN solaris 2.6 machine.
    The parser version is 9.0.2.
    Thanks in advance.
    Peter

    You are right, I modified the codes and got it to work on Oracle
    But when I did your suggestion:
    <cftransaction>
      <cfstoredproc ...>
      <cfquery>
        SELECT ...
      </cfquery>
    </cftransaction>
    I got the same error as before which is:
    Error Executing Database Query.
    [Macromedia][Oracle JDBC Driver]Unhandled sql type
    But this time it points to the CF callling the str proc using cfprocparam
    Here is how I call the str. proc:
         <CFTRANSACTION>   
              <cfstoredproc procedure="MyReport" datasource="#Trim(application.dsn)#" returncode="True">  
                  <cfprocparam type="In" cfsqltype="CF_SQL_VARCHAR" variable="ins_name" value="#Trim(session.instname)#">
                  <cfprocparam type="In" cfsqltype="CF_SQL_VARCHAR" variable="aca_year" value="#Trim(ayr)#"> <------- POINT TO THIS LINE
              </cfstoredproc>
         </CFTRANSACTION>

  • ODBC error using ORACLE MERANT DRIVER

    Hi,
    OS-windows 7 64bit
    Oracle Database 11g-64 bit
    Oracle Merant Driver 32 is installed(SysWOW64) when install DAC. so can't connect using Oracle merant driver 32 with Oracle Database 64bit. it's showing the below error.
    How can connect Oracle Merant Driver 32 bit with Oracle database 64 bit. kindly check how to resolve this.
    Error:
    Specified driver could not be loaded due to system error 193:
    \DataDirectODBC\seor820.dll)

    You may also try Oracle's odbc drivers available free from OTN
    see also http://support.microsoft.com/support/kb/articles/Q159/6/57.asp
    Oracle procedure is:
    CREATE OR REPLACE PROCEDURE test(
    a OUT integer,
    b out integer)
    AS
    BEGIN
    a:=100;
    b:=200;
    END;
    I have verified output values with oracle odbc 8.1.6 and OLEDB 8.1.6
    Turloch

  • Unknown Database Connector Error using Oracle stored procedures

    We are using an Oracle database for the first time with our Crystal Reports, and I am attempting to modify a report to use a new stored procedure.  When I attempt to add either the new procedure, or to add a new copy of the existing procedure, I get an error message:
    Unknown Database Connector Error
    If I remove the existing procedure first (leaving no database objects at all), and then attempt to add back exactly the same stored procedure that I just removed, I get a different error message:
    Database Connector Error: '42000:[Oracle][ODBC]Syntax error or access violation'
    Neither of these errors is particularly helpful.  The stored procedure in question works as is.  I can run it in SQL Developer, and it also executes within the existing report if I run it.  Unfortunately, it needs to be modified and given a new name, so I need to be able to add the new stored procedure to the report.
    The operating system is Windows XP Professional version 2002 SP3.  The Oracle version is 11g (11.2.0.2.0).  Crystal reports version is Crystal Reports 2008 (12.3.0.601).  The stored procedure returns a refcursor.  The ODBC connection is created using the "Oracle in OraClient11g_home1" driver.  When I test the connection, it tells me it was successful.
    If it matters, the report is a Saba report.
    Can anyone shed any light on what the problem is and how to fix it.  If the solution is to upgrade the Windows version, that is under the control of our tech support and there is no information available as to when it will happen.

    Yes - I had used the Set Datasource Location to point to the correct ODBC connection.  I get the same results with an existing report as I do with a new blank report.
    I have no idea where the service market place is.  Honestly, I find the entire SAP site confusing.  I found one reference to the PAM guide, but when I clicked on it, it insisted on a userid/password, and apparently the userid/password I have for this discussion group doesn't pass.  I did find, eventually, a document called "Crystal Reports 2008 Service Pack 3 for Windows - Supported Platforms".  When I read it, it tells me that it's compatible with Oracle 11g, generic ODBC, and Windows XP SP3, which is what we are using.  I'm hoping that this document has equivalent information to the PAM guide.

  • Error using Oracle Database Gateway for DRDA

    Hello All,
    We're encountering issues while trying to query a table using a db link to DB2 database.
    We are running oracle 11g R1 on windows and we have DB2 installed on the box. We've installed database gateway for DRDA also on the same box. The gateway is running on a different home location within the same machine. But we get the following error while trying to query across the db link. Would be great if you can take a look and suggest appropriate changes.
    ORA-28545: error diagnosed by Net8 when connecting to an agent
    Unable to retrieve text of NETWORK/NCR message 65535
    ORA-02063: preceding 2 lines from UDB
    Here's how we configured the gateway:
    Listener:
    SID_LIST_LISTENER=
    (SID_LIST=
    (SID_DESC=
    (SID_NAME=DB2)
    (ORACLE_HOME=E:\app\Oracle\product\11.1.0\db_1)
    (PROGRAM=g4drsrv)
    (SID_DESC=
    (SID_NAME=PLSExtProc)
    (ORACLE_HOME=E:\app\Oracle\product\11.1.0\db_1)
    (PROGRAM=extproc)
    Tns:
    dg4drda.idc.oracle.com =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = xpone.idc.oracle.com)
    (PORT = 1521))
    (CONNECT_DATA =
    (SID= DB2))
    (HS=OK)
    initDB2.ora
    HS_COMMIT_POINT_STRENGTH=255
    HS_NLS_DATE_FORMAT=YYYY-MM-DD
    HS_LANGUAGE=AMERICAN_AMERICA.WE8ISO8859P1
    HS_RPC_FETCH_REBLOCKING=off
    HS_RPC_FETCH_SIZE=32767
    HS_FDS_FETCH_ROWS=20
    FDS_CLASS=DG4DRDA_DB2UDB
    DRDA_CONNECT_PARM=xpone.idc.oracle.com:50000
    DRDA_REMOTE_DB_NAME=SAMPLE
    DRDA_PACKAGE_COLLID=ORA11
    DRDA_PACKAGE_NAME=G2DRSQL
    DRDA_PACKAGE_CONSTOKEN=A929B170D366FB00
    DRDA_RECOVERY_USERID=ORADRDA
    DRDA_RECOVERY_PASSWORD=ORADRDA
    DRDA_ISOLATION_LEVEL=CS
    DRDA_DISABLE_CALL=TRUE
    DRDA_CODEPAGE_MAP=codepage.map
    heres how we created the db link:
    CREATE DATABASE LINK udb CONNECT TO ORACLE IDENTIFIED BY "welcome1" USING 'dg4drda.idc.oracle.com';
    and this was the sql executed
    select * from employee@udb;
    Really appreciate your assistance.
    Regards
    Krishna

    Hello Mike,
    Here's the entire listener entry (I've changed the SID to DB2. Consequently I have also changed the SID in tns and gateway init under folder "11.1.0\tg_1\dg4drda\admin"
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = XPONE)(PORT = 1521))
    SID_LIST_LISTENER=
         (SID_LIST=
              (SID_DESC=
                   (SID_NAME=DB2)
                   (ORACLE_HOME=E:\app\Oracle\product\11.1.0\db_1)
                   (PROGRAM=g4drsrv)
              (SID_DESC=
                   (SID_NAME=PLSExtProc)
                   (ORACLE_HOME=E:\app\Oracle\product\11.1.0\db_1)
                   (PROGRAM=extproc)
    I've also added the necessary IP entry to my host file.
    Here's the listener log. I've grabbed it for 2 consecutive attempts to bind the package.
    <msg time='2010-02-11T11:11:25.562-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>Trace information written to e:\app\oracle\diag\tnslsnr\xpone\listener\trace\ora_752_2136.trc
    </txt>
    </msg>
    <msg time='2010-02-11T11:11:25.562-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>Trace level is currently 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:11:25.578-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>
    </txt>
    </msg>
    <msg time='2010-02-11T11:11:25.578-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>Started with pid=752
    </txt>
    </msg>
    <msg time='2010-02-11T11:11:25.593-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
    </txt>
    </msg>
    <msg time='2010-02-11T11:11:25.609-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=xpone)(PORT=1521)))
    </txt>
    </msg>
    <msg time='2010-02-11T11:11:28.031-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>Listener completed notification to CRS on start
    </txt>
    </msg>
    <msg time='2010-02-11T11:11:28.062-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    </txt>
    </msg>
    <msg time='2010-02-11T11:11:29.546-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=xpone)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    </txt>
    </msg>
    <msg time='2010-02-11T11:11:29.578-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:11:29 * service_register * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:11:45.015-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:11:44 * (CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=orcl)(CID=(PROGRAM=E:\app\Oracle\product\11.1.0\db_1\bin\sqlplus.exe)(HOST=XPONE)(USER=Oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.0.100)(PORT=1076)) * establish * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:11:47.500-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:11:47 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:11:49.890-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:11:49 * (CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=orcl)(CID=(PROGRAM=E:\app\Oracle\product\11.1.0\db_1\bin\sqlplus.exe)(HOST=XPONE)(USER=Oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.0.100)(PORT=1077)) * establish * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:11:53.500-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:11:53 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:11:54.343-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:11:54 * (CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=orcl)(CID=(PROGRAM=E:\app\Oracle\product\11.1.0\db_1\bin\sqlplus.exe)(HOST=XPONE)(USER=Oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.0.100)(PORT=1078)) * establish * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:11:56.515-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:11:56 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:12:02.531-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:12:02 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:12:11.546-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:12:11 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:12:13.140-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:12:13 * (CONNECT_DATA=(SID=DB2)(CID=(PROGRAM=)(HOST=MSHOME\XPONE)(USER=XPONE\Oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.0.100)(PORT=1080)) * establish * DB2 * 12518
    </txt>
    </msg>
    <msg time='2010-02-11T11:12:13.156-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    32-bit Windows Error: 2: No such file or directory
    </txt>
    </msg>
    <msg time='2010-02-11T11:12:13.390-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:12:13 * (CONNECT_DATA=(SID=DB2)(CID=(PROGRAM=)(HOST=MSHOME\XPONE)(USER=XPONE\Oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.0.100)(PORT=1081)) * establish * DB2 * 12518
    </txt>
    </msg>
    <msg time='2010-02-11T11:12:13.437-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    32-bit Windows Error: 2: No such file or directory
    </txt>
    </msg>
    <msg time='2010-02-11T11:12:35.578-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:12:35 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:13:41.718-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:13:41 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:14:11.765-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:14:11 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:14:14.781-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:14:14 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:14:23.796-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:14:23 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:15:53.843-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:15:53 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:16:11.875-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:16:11 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:16:26.890-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:16:26 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:17:35.921-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:17:35 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:17:37.546-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:17:37 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:17:42.203-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>No longer listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=xpone)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    </txt>
    </msg>
    <msg time='2010-02-11T11:17:42.218-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:17:42 * service_died * orcl * 12537
    </txt>
    </msg>
    <msg time='2010-02-11T11:17:54.265-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>System parameter file is E:\app\Oracle\product\11.1.0\db_1\network\admin\listener.ora
    </txt>
    </msg>
    <msg time='2010-02-11T11:17:54.281-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>Log messages written to e:\app\oracle\diag\tnslsnr\xpone\listener\alert\log.xml
    </txt>
    </msg>
    <msg time='2010-02-11T11:17:54.281-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>Trace information written to e:\app\oracle\diag\tnslsnr\xpone\listener\trace\ora_3060_3104.trc
    </txt>
    </msg>
    <msg time='2010-02-11T11:17:54.281-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>Trace level is currently 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:17:54.296-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>
    </txt>
    </msg>
    <msg time='2010-02-11T11:17:54.296-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>Started with pid=3060
    </txt>
    </msg>
    <msg time='2010-02-11T11:17:54.296-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
    </txt>
    </msg>
    <msg time='2010-02-11T11:17:54.328-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=xpone)(PORT=1521)))
    </txt>
    </msg>
    <msg time='2010-02-11T11:17:56.578-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>Listener completed notification to CRS on start
    </txt>
    </msg>
    <msg time='2010-02-11T11:17:56.609-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    </txt>
    </msg>
    <msg time='2010-02-11T11:18:06.562-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:18:06 * service_register * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:18:09.578-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:18:09 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:18:12.609-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:18:12 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:18:18.625-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:18:18 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:18:39.625-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=xpone)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    </txt>
    </msg>
    <msg time='2010-02-11T11:18:39.625-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:18:39 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:18:42.609-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:18:42 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:18:48.609-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:18:48 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:19:00.687-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:19:00 * (CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=orcl)(CID=(PROGRAM=E:\app\Oracle\product\11.1.0\db_1\bin\sqlplus.exe)(HOST=XPONE)(USER=Oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.0.100)(PORT=1095)) * establish * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:19:03.625-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:19:03 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:19:17.140-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:19:17 * (CONNECT_DATA=(SID=DB2)(CID=(PROGRAM=)(HOST=MSHOME\XPONE)(USER=XPONE\Oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.0.100)(PORT=1096)) * establish * DB2 * 12518
    </txt>
    </msg>
    <msg time='2010-02-11T11:19:17.171-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    32-bit Windows Error: 2: No such file or directory
    </txt>
    </msg>
    <msg time='2010-02-11T11:19:17.265-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:19:17 * (CONNECT_DATA=(SID=DB2)(CID=(PROGRAM=)(HOST=MSHOME\XPONE)(USER=XPONE\Oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.0.100)(PORT=1097)) * establish * DB2 * 12518
    </txt>
    </msg>
    <msg time='2010-02-11T11:19:17.296-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    32-bit Windows Error: 2: No such file or directory
    </txt>
    </msg>
    <msg time='2010-02-11T11:19:20.578-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:19:20 * (CONNECT_DATA=(SID=DB2)(CID=(PROGRAM=)(HOST=MSHOME\XPONE)(USER=XPONE\Oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.0.100)(PORT=1098)) * establish * DB2 * 12518
    </txt>
    </msg>
    <msg time='2010-02-11T11:19:20.609-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    32-bit Windows Error: 2: No such file or directory
    </txt>
    </msg>
    <msg time='2010-02-11T11:19:20.671-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:19:20 * (CONNECT_DATA=(SID=DB2)(CID=(PROGRAM=)(HOST=MSHOME\XPONE)(USER=XPONE\Oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.0.100)(PORT=1099)) * establish * DB2 * 12518
    </txt>
    </msg>
    <msg time='2010-02-11T11:19:20.703-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    32-bit Windows Error: 2: No such file or directory
    </txt>
    </msg>
    <msg time='2010-02-11T11:19:21.640-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:19:21 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2010-02-11T11:19:23.015-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:19:22 * (CONNECT_DATA=(SID=DB2)(CID=(PROGRAM=)(HOST=MSHOME\XPONE)(USER=XPONE\Oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.0.100)(PORT=1100)) * establish * DB2 * 12518
    </txt>
    </msg>
    <msg time='2010-02-11T11:19:23.046-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    32-bit Windows Error: 2: No such file or directory
    </txt>
    </msg>
    <msg time='2010-02-11T11:19:23.156-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>11-FEB-2010 11:19:23 * (CONNECT_DATA=(SID=DB2)(CID=(PROGRAM=)(HOST=MSHOME\XPONE)(USER=XPONE\Oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.0.100)(PORT=1101)) * establish * DB2 * 12518
    </txt>
    </msg>
    <msg time='2010-02-11T11:19:23.187-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='XPONE'
    host_addr='192.168.0.100'>
    <txt>TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    32-bit Windows Error: 2: No such file or directory
    </txt>
    </msg>
    And finally, the listener is starting from Oracle Home and I do not have any other Oracle products installed.
    Thanks a billion for all your suggestions.
    Regards
    Krishna

  • Error in Oracle Database Backup and Recovery User's Guide 12c Release 1 (12.1) E17630-13

    on page 88 of the "Backup and Recovery User's Guide 12c Release 1 (12.1) E17630-13", the example 5-1 SHOW ALL Command is the same of the "Backup and Recovery User's Guide 11g Release 2 (11.2) E10642-06" on page 82 and that output is related to a Oracle Database 11g version (the 10g doesn't print the first line "RMAN configuration parameters for database with db_unique_name PROD1 are:").

    My test cases here:
    Database administrator workshop: Differences in default RMAN configuration settings between 12c and 11g
    {code}[oracle@vsi08devpom ~]$ export ORACLE_SID=CDB001
    [oracle@vsi08devpom admin]$ sqlplus system/oracle@CDB001
    SQL*Plus: Release 12.1.0.1.0 Production on Thu Sep 26 09:10:50 2013
    Copyright (c) 1982, 2013, Oracle.  All rights reserved.
    Last Successful login time: Tue Jul 16 2013 13:43:48 +02:00
    Connected to:
    Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
    SQL> show con_name
    CON_NAME
    CDB$ROOT
    [oracle@vsi08devpom ~]$ rman target /
    Recovery Manager: Release 12.1.0.1.0 - Production on Thu Sep 26 09:12:42 2013
    Copyright (c) 1982, 2013, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: CDB001 (DBID=4134963396)
    RMAN> show all;
    using target database control file instead of recovery catalog
    RMAN configuration parameters for database with db_unique_name CDB001 are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP ON; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default
    CONFIGURE RMAN OUTPUT TO KEEP FOR 7 DAYS; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/opt/app/oracle/product/12.1.0/db_1/dbs/snapcf_CDB001.f'; # default{code}
    {code}
    [oracle@localhost orcl]$ rman target /
    Recovery Manager: Release 11.2.0.2.0 - Production on Wed Sep 25 08:12:17 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: ORCL (DBID=1229390655)
    RMAN> show all;
    using target database control file instead of recovery catalog
    RMAN configuration parameters for database with db_unique_name ORCL are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE SBT_TAPE TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/home/oracle/app/oracle/product/11.2.0/dbhome_2/dbs/snapcf_orcl.f'; # default
    {code}

  • Facing Problem  In Using Oracle Database Cloud Backup Service

    Hi Everyone,
    I m trying to use Oracle Database Backup Service, for this i have done the following as mentioned in the documentation.
    http://www.oracle.com/technetwork/database/features/availability/twp-oracledatabasebackupservice-2183633.pdf
    1.Downloaded the opc_installer from otn and unzipped.
    2. Executed the following statement from command prompt
    java -jar opc_install.jar -serviceName myService -identityDomain myDomain
    -opcId [email protected] -opcPass myPassword -configFile "C:\Oracle\OPC\conf"
    -walletDir  "C:\Oracle\OPC\wallet"  -libDir "C:\Oracle\OPC\lib"
    Using my credentials, servicename , identitydomain in the above statement.
    Download Complete message appears.
    3. Connects to RMAN and configure channel for sbt by passing this.
    configure channel device type sbt parms
    'SBT_LIBRARY=C:\Oracle\OPC\lib\oraopc12.dll
    ENV=(OPC_PFILE=C:\Oracle\OPC\conf\conf.txt)';
    4.To test the installation i executed the given statement "backup device type sbt current controlfile;"
    Starting backup at 31-MAY-14
    RMAN-00571:
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS
    RMAN-00571:
    RMAN-03002: failure of backup command at 05/31/2014 04:41:44
    ORA-19554: error allocating device, device type: SBT_TAPE, device name:
    ORA-27000: skgfqsbi: failed to initialize storage subsystem (SBT) layer
    OSD-01400: Message 1400 not found;  product=RDBMS; facility=SOSD
    (OS 7110)
    ORA-19511: Error received from media manager layer, error text:
       SBT error = 7110, errno = 1400, sbtinit: internal error - invalid argument(s)
    Getting the following error.
    My database version is 11g 11.2.0.3 and is installed in windows server 2008.
    Please help to resolve the error.
    Looking for your help.
    Regards

    Hi,
    Could you try the following command ? Seems like some dependent Windows DLL is not being loaded..
    sbttest foo -libname <abs-path-of-directory>\oraopc12.dll
    This will output the reason why oraopc12.dll can't be loaded.
    Thanks

  • Oracle secure  backup "lsbackup " not showing in obtool

    hi!
    i am using oracle secure backup with virtual tape drive....
    lsdev -lvlib:
    Device type: library (virtual)
    Model: [none]
    Serial number: 82206a7c
    In service: yes
    Debug mode: no
    Barcode reader: default (hardware-selected)
    Barcodes required: no
    Auto clean: no
    Clean interval: (not set)
    Clean using emptiest: no
    Ejection type: auto
    Min writable volumes: 0
    UUID: d9916f34-cdec-102c-a9cf-000c2912137c
    Attachment 1:
    Host: osb
    Raw device: /vlib
    vt:
    Device type: tape (virtual)
    Model: [none]
    Serial number: 96627110
    In service: yes
    Library: vlib
    DTE: 1
    Automount: yes
    Error rate: 8
    Query frequency: [undetermined]
    Debug mode: no
    Blocking factor: (default)
    Max blocking factor: (default)
    Current tape: [unknown]
    Use list: all
    Drive usage: 1 minute, 9 seconds
    Cleaning required: no
    UUID: f2efc426-cdec-102c-a9cf-000c2912137c
    Attachment 1:
    Host: osb
    Raw device: /vt
    its working fine i use rman and took two backups....but i dont know where are they....on os i have two directory vlib(library) and one more was created 'vt'(tape drive).i know backups are in vlib but how to check them..through obtool ...it shows nothing..
    please help.......
    BACKUP 1:
    RMAN> run
    2> {
    3> allocate channel ch1 device type sbt;
    4> backup datafile 4;
    5> release channel ch1;
    6> }
    using target database control file instead of recovery catalog
    allocated channel: ch1
    channel ch1: sid=130 devtype=SBT_TAPE
    channel ch1: Oracle Secure Backup
    Starting backup at 22-DEC-09
    channel ch1: starting full datafile backupset
    channel ch1: specifying datafile(s) in backupset
    input datafile fno=00004 name=/u01/app/oracle/product/10.2.0/oradata/orcl/users01.dbf
    channel ch1: starting piece 1 at 22-DEC-09
    channel ch1: finished piece 1 at 22-DEC-09
    piece handle=0nl1h7ao_1_1 tag=TAG20091222T061656 comment=API Version 2.0,MMS Version 10.3.0.1
    channel ch1: backup set complete, elapsed time: 00:00:25
    Finished backup at 22-DEC-09
    released channel: ch1
    BACKUP 2 .......
    RMAN> run
    2> {
    3> allocate channel ch1 device type 'SBT_TAPE';
    4> backup datafile 3;
    5> backup datafile 2;
    6> release channel ch1;
    7> }
    allocated channel: ch1
    channel ch1: sid=130 devtype=SBT_TAPE
    channel ch1: Oracle Secure Backup
    Starting backup at 22-DEC-09
    channel ch1: starting full datafile backupset
    channel ch1: specifying datafile(s) in backupset
    input datafile fno=00003 name=/u01/app/oracle/product/10.2.0/oradata/orcl/sysaux01.dbf
    channel ch1: starting piece 1 at 22-DEC-09
    channel ch1: finished piece 1 at 22-DEC-09
    piece handle=0ol1h7nq_1_1 tag=TAG20091222T062354 comment=API Version 2.0,MMS Version 10.3.0.1
    channel ch1: backup set complete, elapsed time: 00:00:45
    Finished backup at 22-DEC-09
    Starting backup at 22-DEC-09
    channel ch1: starting full datafile backupset
    channel ch1: specifying datafile(s) in backupset
    input datafile fno=00002 name=/u01/app/oracle/product/10.2.0/oradata/orcl/undotbs01.dbf
    channel ch1: starting piece 1 at 22-DEC-09
    channel ch1: finished piece 1 at 22-DEC-09
    piece handle=0pl1h7p7_1_1 tag=TAG20091222T062439 comment=API Version 2.0,MMS Version 10.3.0.1
    channel ch1: backup set complete, elapsed time: 00:00:25
    Finished backup at 22-DEC-09
    released channel: ch1
    Edited by: Muhammad.Usman on Dec 22, 2009 8:51 PM

    The configuration you have described is not supported. If you want to use a VTL you will need to purchase one from a supported VTL supplier.
    OSB does not provide its own VTL.
    Rich

  • Oracle Secure Backup datasets Rman backup

    Hi all,
    I want use the scheduler on OSB, to  launch a shell script to backup a database by rman.
    I made a test, and the backup executed well. I created a dataset, like that:
    include host hostn01
    include path /u01/app/oracle/dummy
    after backup "/u01/app/oracle/admin/scripts/rman/full_db.sh"
    Script full_db.sh as:
    su - oracle -c "/u01/app/oracle/admin/scripts/rman/level0_db_tape.sh"
    The script above invoke the rman backup full, and finish without any errors.
    My question. It is possible to have a dataset without the include path for a dummy dir? like that or similar?
    include host hostn01
    "/u01/app/oracle/admin/scripts/rman/full_db.sh"
    The OSB version is 10.4.3
    Cumps,

    Hi
    You can use RMAN for Backup and Restore using Oracle Secure Backup. But the following has to met before the implementation.
    1. RMAN must connect through pre-authorised user
    2. pre-authorised OSB user's OSB class must have database backup and restore rights
    3. OSB user permissions must match those of Oracle Instance.
    Please check all the above....
    Thanks
    LaserSoft

  • Licensing for Oracle Secure Backup Cloud Module

    My company is looking at moving from our internal tape backup to Oracle (Cloud) Database Backup.  We have questions about costs for licensing the Oracle Secure Backup Cloud Module.  We have been using Oracle Secure Backup Express Edition and would like to know if there are additional API/License costs for using Oracle Secure Backup Cloud Module in additional to the $33/TB per month cost listed on the Oracle Cloud Database Backup page at https://cloud.oracle.com/database_backup?tabID=1394421701419.
    We have spoken with 6 different sales and technical reps at Oracle and at Oracle Cloud and none have been able to provide a clear answer for this question.  We have been directed to this forum, by the staff at Oracle Cloud.
    Any feedback would be greatly appreciated.

    I don't know about this tape not appearing to the OS, some other OS related documentation would help you there. This may be due to the fact that this is a removable disk storage device, rather than actual tape.
    However I have checked the OSB tape support matrix and this device is not listed, so this is not supported for use with OSB.
    Thanks
    Rich

  • Getting error when try to backup oracle rac to another location

    Hi there,
    I am attempting to backup database to another location from a Oracle RAC database version 11gr2. Here is my script:
    #!/bin/ksh
    export ORACLE_SID=vvsms1
    ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE
    ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1; export ORACLE_HOME
    BASE_PATH=/usr/sbin:$PATH; export BASE_PATH
    PATH=$ORACLE_HOME/bin:$BASE_PATH; export PATH
    /u01/app/oracle/product/11.2.0/dbhome_1/bin/rman target sys/viviet@vvsms log /home/oracle/log_rman/vvsms.log append <<EOF
    RUN {
    CROSSCHECK BACKUP;
    CROSSCHECK ARCHIVELOG ALL;
    ALLOCATE CHANNEL CHANNEL1 TYPE DISK FORMAT '/home/oracle/backup/vvsms/backup_%U';
    BACKUP INCREMENTAL LEVEL 0 TAG 'incr_vvsms' DATABASE;
    BACKUP ARCHIVELOG ALL;
    DELETE OBSOLETE;
    RELEASE CHANNEL CHANNEL1;
    EXIT;
    EOF
    I write it into a .sh file and set crontab to run it. But when it run i get the error like these:
    Starting backup at 22-OCT-12
    channel CHANNEL1: starting incremental level 0 datafile backup set
    channel CHANNEL1: specifying datafile(s) in backup set
    input datafile file number=00002 name=+DISK2/vvsms/datafile/sysaux.289.794242439
    input datafile file number=00006 name=+DISK2/vvsms/datafile/ts_service.dbf
    input datafile file number=00007 name=+DISK2/vvsms/datafile/ts_viviet.dbf
    input datafile file number=00008 name=+DISK2/vvsms/datafile/viviet.dbf
    input datafile file number=00009 name=+DISK2/vvsms/datafile/ts_vivietct_primary.dbf
    input datafile file number=00003 name=+DISK2/vvsms/datafile/undotbs1.290.794242445
    input datafile file number=00001 name=+DISK2/vvsms/datafile/system.288.794242429
    input datafile file number=00004 name=+DISK2/vvsms/datafile/undotbs2.292.794242453
    input datafile file number=00005 name=+DISK2/vvsms/datafile/users.293.794242455
    channel CHANNEL1: starting piece 1 at 22-OCT-12
    released channel: CHANNEL1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of backup command on CHANNEL1 channel at 10/22/2012 01:50:16
    ORA-19504: failed to create file "/home/oracle/backup/vvsms/backup_2anobqu5_1_1"
    ORA-27040: file create error, unable to create file
    Linux-x86_64 Error: 2: No such file or directory
    I don't know what i'm wrong? The location is correct ("/home/oracle/backup/vvsms/).
    Please suggest me some things about it. What do i need to do?
    Thanks in advance!
    P/s: Sorry for my bad English.

    /u01/app/oracle/product/11.2.0/dbhome_1/bin/rman target sys/viviet@vvsms  log /home/oracle/log_rman/vvsms.log appendThis line can be your problem.
    As this database is a RAC and your are using a service with load balance "vvsms" and "/home/oracle/backup/vvsms" is not a shared location. RMAN is starting a session on Other node where "/home/oracle/backup/vvsms" does not exists.
    Try change it :
    /u01/app/oracle/product/11.2.0/dbhome_1/bin/rman target sys/viviet@vvsms  log /home/oracle/log_rman/vvsms.log appendTo this (using Easy Connect Method):
    /u01/app/oracle/product/11.2.0/dbhome_1/bin/rman target sys/viviet@localhost:1521/VVSMS  log /home/oracle/log_rman/vvsms.log appendWhere:
    localhost: your local node
    VVSMS : is the service of database
    Also check if "/u01/app/oracle/product/11.2.0/dbhome_1/network/admin/sqlnet.ora" have configured the line "NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)"
    P.S : When RMAN start a session it show where is logged, check on logs what instance RMAN was logged.
    HTH,
    Levi Pereira

  • Error while creating physical standby database using Oracle Grid 10.2.0.5

    Hi All,
    I am setting up data guard using oracle grid.
    Primary database version: - 10.2.0.4
    Standby database version: - 10.2.0.4
    Primary OS Red Hat Enterprise Linux AS release 4 (Nahant Update 8)2.6.9
    Standby OS Red Hat Enterprise Linux AS release 4 (Nahant Update 8)2.6.9
    I am creating physical standby database using EM. But it is getting failed with error message in sqlnet.ora file
    Fatal NI connect error 12533, connecting to:
    (DESCRIPTION=(ADDRESS_LIST=)(CONNECT_DATA=(SERVICE_NAME=INPRDSB_XPT)(SERVER=dedicated)(CID=(PROGRAM=oracle)(HOST=indb50.oii.com)(USER=oracle))))
      VERSION INFORMATION:
            TNS for Linux: Version 10.2.0.4.0 - Production
            TCP/IP NT Protocol Adapter for Linux: Version 10.2.0.4.0 - Production
      Time: 17-AUG-2010 02:40:07
      Tracing not turned on.
      Tns error struct:
        ns main err code: 12533
        TNS-12533: TNS:illegal ADDRESS parameters
        ns secondary err code: 0
        nt main err code: 0
        nt secondary err code: 0As we can see, address_list is empty.
    Can anyone suggest what could be the reason behind this?

    Dear user13295317,
    Here is the error explanation;
    Oracle Error :: TNS-12533
    TNS:illegal ADDRESS parameters
    Cause
    An illegal set of protocol adapter parameters was specified.
    In some cases, this error is returned when a connection cannot be made to the protocol transport.
    Action
    Verify that the destination can be reached using the specified protocol.
    Check the parameters within the ADDRESS section of TNSNAMES.ORA.
    Legal ADDRESS parameter formats may be found in the Oracle operating system specific documentation for your platform.
    Protocols that resolve names at the transport layer (such as DECnet object names) are vulnerable to this error if not properly configured or names are misspelled.Hope That Helps.
    Ogan

Maybe you are looking for

  • Won't Boot - Tried Everything I Know

    My B & W iMac with CD slot won't boot up. I get chime and then blinking ? alternating with folder icon and spinning sound. I've tried: holding shift down booting from 8.6 bootable CD holding C down zapping PRAM (after this I got the chime back) unplu

  • Accessing list of DISPLAY objects in a table component.

    Hi there, I am using a class that extends ObjectListDataProvider to populate a JSF table component. I need to access the list of objects that are actually displayed currently in the table. The table uses pagination so there are other table elements n

  • CS5 Installation or download

    If I registered my product and i need to reinstall my program but the disk is not working can I download the same program from Adobe and where do I go if I can?

  • Jco.server.max_startup_delay

    SAP Note 730870 say: Q 25: A RFC sender channel is registered at a SAP Gateway which is shutdown. Does the RFC sender channel automatically reconnect to the SAP Gateway after it is available again? A: The SAP Gateway is shutdown due to e.g. offline b

  • Deployed EJB's not seen in console