Using OSB 64bit to backup Oracle 32bit is possible?

Hi all,
I'm trying to backup database to tape using OSB.
Oracle Database Version: Oracle10gR2 10.2.0.3.0 Standard Edition 32bit
Oracle Secure Backup Version: 10.4.2.0 64bit
S.O.: Windows 2008 R2 Standard 64bit
But I'm getting the following error:
RMAN> run
2> {
3> allocate channel c1 type sbt;
4> backup database;
5> }
using target database control file instead of recovery catalog
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03009: failure of allocate command on c1 channel at 05/15/2013 15:35:36
ORA-19554: error allocating device, device type: SBT_TAPE, device name:
ORA-27211: Failed to load Media Management Library
Could anybody help with this issue?
I think this happens because OSB architecture is 64bit while RDBMS architecture is 32bit. Can you confirm for me?
Thanks in advance.

Adding trace information:
RMAN> 2> 3> 4> 5>
using target database control file instead of recovery catalog
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03009: failure of allocate command on c1 channel at 05/15/2013 15:48:14
RMAN-10035: exception raised in RPC:
ORA-19624: operation failed, retry possible
ORA-19554: error allocating device, device type: SBT_TAPE, device name:
ORA-27211: Failed to load Media Management Library
ORA-06512: at "SYS.DBMS_BACKUP_RESTORE", line 170
RMAN-10031: RPC Error: ORA-19624 occurred during call to DBMS_BACKUP_RESTORE.DEVICEALLOCATE

Similar Messages

  • Needs suggestion the best way database insertion using OSB

    Hi all, again and again I need your suggestion. Which is the best way for writing data to database using OSB in few tables as fastest as possible (speed consideration)?, should I make lots DB schema for supporting JCA adapter and transform each message and writing to database? OR should I call java callout then using EJB for writing to database?.

    Hi,
    We had the similar scenario in our project and this is my take on this.
    Its better to use a JCA DBAdapter to execute/invoke a stored procedure and then have the PL/SQL script for insertion into the Stored Procedure.
    As the OSB DBAdapter configuration is very tightly coupled to the DB structure any changes to the column types of the table will mean a regeneration of the adapter WSDL.
    In general even for other DB operations like select, delete, update... its is a good idea to use the stored procedure in conjunction with the DBAdapter to decouple the link to DB to some extent.
    Thanks,
    Patrick

  • How to download a file from Oracle UCM using OSB

    Hi,
    How can I download a file from Oracle UCM and save it on a filesystem using OSB 11.1.1.5.
    Thanks

    UCM supplies webservice interfaces which let you retrieve the filecontent by soap calls from UCM (http://ucmhost/_dav/cs/idcplg for example). (maybe you should enable some settings on ucm to have this webservice interface getting published).
    This services for example has 2 operations getFileByID and getFileByName.
    So you can just call these services from within OSB.
    After that you need to do some tests if you eitherway need to create a file-transport business-service and call this one from your proxy service or create a messageType proxyservice (binary)  which calls this file-transport business service to be able to write fo filesystem.
    I think for the OSB book i used a jca file adapter generated in Jdeveloper and used that one to write to filesystem.

  • Help me i cant install itunes on my windows 7 enterprise i try installing 32bit and it says that i need the 64bit but then in need the 32bit to use the 64bit please help!!!!

    help me i cant install itunes on my windows 7 enterprise i try installing 32bit and it says that i need the 64bit but then in need the 32bit to use the 64bit please help

    Hi there,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    Trouble installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    -Griff W.

  • Migrate Oracle 11g database from Windows To Linux using RMAN hot / cold  backup ?

    Hi Friends,
    Is it possible to Migrate Oracle 11g database from Windows To Linux using RMAN hot / cold  backup ? ( as i would like to perform Point In Time recovery)
    (or) The only way is to use RMAN convert as mentioned here  - Transporting Data Across Platforms
    (or) Is there any other method (except exp/imp and data pump)
    Regards,
    DB

    HI
    his post describes the procedure required to migrate a database from Windows to Linux using the RMAN Convert Database command.
    Both Windows and Linux platforms have the same endian format, which makes possible to transfer the whole database, making the migration process very straightforward and simple.
    To migrate between platforms that have a different endian format, Cross Platform Transportable Tablespaces (XTTS) needs to be used instead.
    List of Steps Needed to Complete the Migration
    The migration process is simple, but as it has several steps it is convenient to be familiar with them before running it.
    1. Check platform compatibility between source and target OS
    2. Start the database in read only mode
    3. Check database readiness for transport from Windows to Linux using DBMS_TDB.CHECK_DB
    4. Check if there are any external objects
    5. Execute the Rman Convert database command
    6. Copy converted datafiles, generated Transport Script and Parameter File to Linux
    7. Edit the init.ora for the new database
    8. Edit the Transport Script and Parameter File changing the windows paths to Linux Paths
    9. Execute the Transport Script
    10.Change the Database ID
    11.Check database integrity
    Thank you

  • Backup Oracle 9i

    hi,
    I am trying to use Oracle Secure Backup to backup my 9i server, but in the Admin documents, it seem that database backup can only be start in Oracle EM console. Is there any way to backup 9i server using OSB?
    And what is the procedure to backup data which the Media server and DB server in separate host?
    Thanks for any reply
    Vincent

    hi Vincent,
    as far as I know, it is not possible to use OSB webconsole to start rman backup of a database. If you don't want to use Grid Control or OEM, you'll have to configure rman manually to use OSB. Something like
    run {
    allocate channel tape123 device type sbt parms='SBT_LIBRARY=/usr/local/oracle/backup/lib/libobk.so';
    backup database;
    release channel tape123;
    will do. Of course you can write a script, which includes the rman commands and which you can schedule with any OS scheduler (cron f.i.).
    The libobk.so should be copied during the installation of OSB client on the database server and after having configured this host as OSB client. If the libraries aren't installed, you'll have to copy them manually from the os spezific source files on the admin server.
    Media server and database server can be different nodes.

  • How to determine mime-type of a file using OSB

    I was working on a requirement where in it requires to use FILE/ FTP adapters using OSB or BPEL as solution. The idea is to pick up files from one location to another location for certain legacy platforms. The real issue is, someone can put a JPEG file in the upload/download location(s), merely by changing the extensions. When this happens the systems will not process since the mime-type is incorrect.
    I know of an open-source API (Apache-Tikka) to determine the mime-types, but then if we use open-source why would customer buy from us.
    The intention is to pick-up the file and simply pass-it (and not parse) on to next system using File or FTP adapter, but in the process, cross check the MIME-TYPE before doing so.
    Any solution using Oracle Service Bus or BPEL would help

    HI Birender,
    Kindly go through the metalink doc for processsing jpeg/xml/pdf etc any atachement using bpel :Understanding XPATH functions for processing MIME attachments with BPEL PM in SOA Suite 11gR1 [ID 1272093.1]
    Regrds,
    olety

  • Oracle 10gR2 64bit  odbc  from oracle to sql server  Win 2008 EE 64bits

    Hi, I am having trouble with a 10gR2 64bits creation of odbc from oracle to sql server, I have follow several instruction with no luck at all. My OS is windows 2008 EE 64bits on the oracle and sql server server.
    This is what I have done
    1. in the $oracle_home/hs/admin directory
    inithsodbc.ora
    # HS init parameters
    HS_FDS_CONNECT_INFO = hsodbc
    HS_FDS_TRACE_LEVEL = off
    2. in the $oracle_home/network/admin
    # listener.ora Network Configuration File: C:\oracle\product\10.2.0\db_1\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oracle\product\10.2.0\db_1)
    (PROGRAM = extproc)
    (SID_DESC=
    (SID_NAME=hsodbc)
    (ORACLE_HOME=C:\oracle\product\10.2.0\db_1)
    (PROGRAM=C:\oracle\product\10.2.0\db_1\hs\hsodbc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = xx.xx.xx.xx)(PORT = 1521))
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    And the tnsname.ora
    # tnsnames.ora Network Configuration File: C:\oracle\product\10.2.0\db_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    PRUEBA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = xx.xx.xx.xx)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = prueba)
    hsodbc =
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=xx.xx.xx.xx)(PORT=1521))
    (CONNECT_DATA=(SID=hsodbc))
    (HS=OK)
    I create the odbc connection an test it , the result is TEST PASSED
    4. The i create a database link on my database
    CREATE PUBLIC DATABASE LINK XYZ
    CONNECT TO "sysdba" IDENTIFIED BY "masterkey"
    USING 'hsodbc';
    5 execute a select
    SQL> select * from dual@XYZ;
    select * from dual@XYZ
    ERROR at line 1:
    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 XYZ
    6. When I check the listener log i'm getting this error
    25-MAR-2011 11:48:40 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=Administrator))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169870592)) * status * 0
    25-MAR-2011 11:48:47 * (CONNECT_DATA=(SID=hsodbc)(CID=(PROGRAM=)(HOST=PRO)(USER=PRO\Administrator))) * (ADDRESS=(PROTOCOL=tcp)(HOST=xx.xx.xx.xx)(PORT=49329)) * establish * hsodbc * 12518
    TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    Edited by: user626125 on Mar 26, 2011 11:39 AM
    Edited by: user626125 on Apr 12, 2011 2:49 PM

    Heterogeneous Connectivity

  • Unable to backup oracle 8i database objects

    Hi ,
    i got the following error :
    Connected to: Oracle8i Enterprise Edition Release 8.1.7.2.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.2.0 - Production
    EXP-00056: ORACLE error 942 encountered
    ORA-00942: table or view does not exist
    EXP-00000: Export terminated unsuccessfullyi am using the Oracle 9i Client to backup the object of an Oracle 8i database.
    is this the cause ?
    previously , my client was still on 8i and it could actually backup both the 8i & 9i database objects
    pls advise
    rgds

    First off, the export and import utilities should be considered useful supplements to a proper physical backup but should not be used as the primary backup method for a production database.
    Second, Oracle pretty much requires that you use the version of the export utility that matches the lowest database version you're working with. You could generate the export files on the machine where the database runs, which guarantees that versions will match up, and move them elsewhere. Or you can have multiple versions of the Oracle client in different Oracle Homes on the same machine.
    Justin

  • Using OSB for Public API (REST)

    Hi there,
    Is it a good practice to use Oracle Service Bus to expose a PUBLIC REST API?
    The idea is to have a separeted OSB instance which will be in the WEB so that other partners and applications (Native Mobile, for instance) can access some of our services. The application layer will have many different applications, like SAP, JEE systems, Cobol and others. But the public API will be design in a more RESTful fashion.
    What about security?
    What about performance? (Parsing JMS, XML and others into JSON will probably create extra load into the OSB).
    What are be the advantages of using OSB instead of a more traditional Service Layer?
    P.S.: We are being careful with the design of our API, sometimes the underlying system doesn't help, so some transformation has to happen (more load!) in order to make the API elegant and meaningful.
    Cheers

    Personally, I'd prefer Collections as they are nice to work with. Their only annoying issue is certainly the constant casting as soon as you retrieve Objects from them.
    I do not consider the documentation of what those Collection include too big a problem. Just include a line for each Collection parameter stating "Set of Strings" or the like. I wouldn't even check the type through instanceof, I'd just cast. If a ClassCastException is thrown, I think that's the proper thing to do.
    As you might have noticed, there is a proposal of "Generics" for Java, which would adopt something like those template classes known in C++. There is even a beta implementation available, so you can go ahead and code your Set<String>. Time will tell if this proposal finds its way into the official Java standard, the drawback being a more complex syntax. If you want to know more about it, check out those links:
    http://forum.java.sun.com/forum.jsp?forum=316
    http://www.jcp.org/jsr/detail/14.jsp
    http://developer.java.sun.com/developer/earlyAccess/adding_generics

  • Want to backup Oracle 10g on Linux OS faster

    I am looking for fastest way of taking full backup of database oracle 10 g on Linux.
    To summarize the requirement let me explain what activity we do
    Whenever we have to apply changes in our application where database changes (create or modify table structure and create indexes) are applicable.
    1>     Take full cold backup of the database.
    2>     Apply application changes – application internally generate the sql script and make the changes at database or application configuration level changes. No external script, so not really having control over taking backup of limited objects or changes.
    3>     Validate if application is working as expected.
    4>     If application is not working as expected would like to go back to the previous state i.e. restore the backup taken at step 1.
    Using traditional way of backup in step 1 it takes almost 3 hr to take backup (database size around 250 GB)
    Could you pl suggest me the best ways of taking backup in above scenario so that we can reduce the backup time to few min rather than hours.
    thanks in advance!

    936186 wrote:
    2>     Apply application changes – application internally generate the sql script and make the changes at database or application configuration level changes. No external script, so not really having control over taking Do you have some sort of self-aware application? SkyNet? :) In all seriousness I'd be interested to know a bit more about how this works.
    Could you pl suggest me the best ways of taking backup in above scenario so that we can reduce the backup time to few min rather than hours. Have you thought about taking hot backups (w/ RMAN)? You may be able to do something at the tablespace level instead.
    If you can provide more details we may be able to help you further.

  • Have any GUI tools to backup oracle database(s) ?

    Hi,
    I want to know is any oracle's tool or third party tools to backuping oracle database?
    Thank you!
    Francis SZE

    Devotee wrote:
    Hi,
    I want to know is any oracle's tool or third party tools to backuping oracle database?
    Thank you!
    Francis SZE
    Use RMAN through enterprise manager
    Cheers

  • Any Simplifiede Script to Backup Oracle XE Database

    I need a script to backup XE Database
    i.e that script should put all the resultant backup filse at a specified location
    Similarly Restore script which should restore from those files.

    Devotee wrote:
    Hi,
    I want to know is any oracle's tool or third party tools to backuping oracle database?
    Thank you!
    Francis SZE
    Use RMAN through enterprise manager
    Cheers

  • Backup Oracle Secure Backup

    Dear All,
    Currently I'm using OSB.
    Do we have any method to backup the whole OSB server in order to prevent OSB server crash?
    if have, could you provide step?
    Thank in advance

    Make sure the catalog backup is scheduled to run and keep the email summary. In the event of a complete crash the procedure would be to reinstall the OS, reinstall OSB and then do a raw (direct from tape) restore to put the catalog back. You could then do a catalog restore for anything else you need. Be sure to schedule a backup of the rest of the server if you have anything else on there you needed protected.
    So there isn't an image or bare metal backup/restore, you protect the data so you can rebuild.
    Thanks
    Rich

  • Installing oracle on Linux using the SAP version of oracle software

    Hello All,
    I am trying to install 32bit oracle software on Linux 32 bit os using the SAP version of Oracle Install Software downloaded from marketplace. I have downloaded the required exe and rar files and unpacked them on my PC. The unpacked folder is uploaded in bin mode to the respective server under a common mountpoint. In the folder i have 4 .SAR files with other label files etc.  I want to unarchive these .SAR files to get the runInstaller but running in to issues.
    Here are the steps I tried:
    1. I copied the SAPCAR exe from exe directory and tried to unpack the 4 .SAR files but got permission error. All these 4 .SAR files are owned by ora<sid> user id. I tried to do all these under root user still it fails.
    ora<sid>@xxxyysapdbXX:/sapdata//Oracle32/51031674> SAPCAR -xvf OR110232.SAR
    -bash: ./SAPCAR: cannot execute binary file
    what am i missing?
    Any help is greatly appreciated.

    If you have a 32bit OS then you need to use the 32bit binaries of SAPCAR - yes.
    And:
    Usually those SAR files are unpacked by the installation program sapinst, why do you unpack them manually?
    Markus

Maybe you are looking for

  • S-Video/Composite Adapter?  WHERE??

    I'm more than a little irritated that Apple has removed the TV adapter from the store without posting an "out of stock" or "coming soon" or "discontinued" notice. The Mini's page still sports a picture of the non-existent item, complete with a link t

  • How to include all the child OU groups of a master OU group in LDAP authentication

    Dear All, I am using Apex 4.2 on windows server 2012 on internet explorer with database 11g R2 all 64 bit. we are using Microsoft Active Directory Authentication in our domain. I have created two protals, Staff Portal and Student Portal I have two gr

  • Odd thing happened after reinstalling Office 2013

    Hi I have a WD MyCloud cabled direct to my router which I access from desktop and laptop. Nothing fancy about set up and only me with access rights. I recently had to reinstall Office 2013 following an upgrade to my hard drive to a SSD.  Whenever I g

  • Checking whether checkbox is inactive

    Hello! My report outputs lines from DB to a list. In the list, there are lines with checkboxes. I mark a checkbox -> do an operation on the specified line -> return to the list. I make the checkbox in the line inactive through the following statement

  • Not your average preloader

    had no problems until player 9, so I tryed a new preloader that already works! but doesn't work in this other movie Clip attached ?Strang indeed? mind you I do have the preloader inside a movie clip that loadMovies into a level! I think I made it a b