How can i get no of database registered to RMAN catalog database.

I want to know that how can I know that no of database are registered to particular RMAN repository database.
And also i want to upgrade my reposiotry catalog as we are upgrading our database to 11g
Kindly help me .

Hi,
Just connect to the catalog database as "rman" user and query the rc_database view.
sqlplus <rman_user>/<rman_user_passwrd>@<catalog_db>
SQL>select * from rc_database;
user11958935
Handle: user11958935
Status Level: Newbie
Registered: Nov 20, 2009
Total Posts: 72
Total Questions: 29 (22 unresolved) Please consider closing the unanswered questions and keeping the forum clean.

Similar Messages

  • How can i get the info off of an old appleworks database. to my mountain lion. OS X?

    how can i get the info off of an old appleworks database. to my new mountain lion. OS X? My old data base is on AppleWorks 6

    1.  Read Roger Wilmut's excellent series of articles Abandoning Appleworks, especially the one on databases.
    2.  Call the Apple Store and order Snow Leopard Server for $19.99 + sales tax & shipping: 1.800.MYAPPLE (1.800.692.7753) - Apple Part Number: MC588Z/A (telephone orders only).
    3.  Install Snow Leopard Server into Parallels 8, now available for a short time (4 more days) in the March 2013 MacUpdate 10 App Bundle for $49.99:
    4. Install Appleworks 6.2.9 into Snow Leopard Server and it will now run concurrently with Mt. Lion:
                                  [click on image to enlarge]

  • How can I get a detail block to requery after a database change?

    Hi, I have a master/detail form. When the status of the master record changes, I need to update a date in one of the detail records. If I use SQL to update the detail row in the database in the ON-CHANGE trigger of the master block, how can I get the detail block to requery to show the change? When I try doing a go_block from any of the ...UPDATE triggers, it says it is restricted.

    wjpenfold,
    Do you have a "Relationship" defined between your Master and Detail blocks? If so, you simply need to requery your master block and the detail block will automatically be requeried. If you can't use a relationship, then you can use can create a timer in the trigger that updates the database and then in the When-Timer-Expired (WTE) trigger you can go to the detail block and execute a query. For example:
    /* Sample On-Change trigger */
    DECLARE
       timer_id  TIMER;
    BEGIN
    ....your code here that performs the update....
       /* Now create an instance of a timer */
       timer_id := Create_Timer ('upd_detail',1,NO_REPEAT);
    END;
    /* Sample Form Level When-Timer-Expired trigger */
    DECLARE
       timer_id   TIMER;
    BEGIN
       -- Find the timer first
       timer_id := FIND_TIMER('upd_detail');
       IF NOT ID_NULL(timer_id) THEN
          GO_BLOCK('DETAIL_BLOCK');
          Execute_Query;
       END IF;
    END;Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • How can i get the SQL of a tablespace from the database

    Hello All,
    I am using Oracle 11g R2. I want to get the SQL of some tablespaces on my database. in the same way i get the DDL of the table using the GET_DDL function.
    How can i get that ?
    Regards,

    try this please
    select dbms_metadata.get_ddl('TABLESPACE',tb.tablespace_name) from dba_tablespaces tb;or
    select 'create tablespace ' || df.tablespace_name || chr(10)
    || ' datafile ''' || df.file_name || ''' size ' || df.bytes
    || decode(autoextensible,'N',null, chr(10) || ' autoextend on maxsize '
    || maxbytes)
    || chr(10)
    || 'default storage ( initial ' || initial_extent
    || decode (next_extent, null, null, ' next ' || next_extent )
    || ' minextents ' || min_extents
    || ' maxextents ' ||  decode(max_extents,'2147483645','unlimited',max_extents)
    || ') ;'
    from dba_data_files df, dba_tablespaces t
    where df.tablespace_name=t.tablespace_name Edited by: Mahir M. Quluzade on Mar 14, 2011 4:51 PM

  • How can I get the image width and height stored in database?

    Hi!I write s servlet to display images store in database.but how can I get the image width and height?

    Have you tryed using PJA or a similar library?
    I presume you get java.lang.NoClassDefFoundError on the line :
    Toolkit.getDefaultToolkit();?

  • How can I get my new laptop registered for warrenty service? Is there an on-line option?

    How can I register my new pc on-line?  There is nothing about it in the warrenty book.

    HI
    Try this link Hope this helps!
    https://register.hp.com/americas/flowPage/default/defaultExperience/en_US/faq.do#1
    **Clicking on the Kudos! white star is a nice way to say thank you on any post that helped you or resolved the problem.**
    **Selecting "Accept as Solution" for a reply that solves your issue helps others who are searching the web for an answer**
    **Clicking on the Kudos! white star is a nice way to say thank you on any post that helped you or resolved the problem.**
    **Selecting "Accept as Solution" for a reply that solves your issue helps others who are searching the web for an answer**

  • How can I get oracle 9.2.0.7 Enterprise edition Database for Solaris?

    Hi, everybody,
    Reccently got involved in a project that require to setup Oracle 9.2.0.7 Enterprise edition Database for Solaris. However from oracle's download page, the only sun platform version for 9i is 9.2.0.1. so to get to 9.2.0.7, do i need to download upgrade patch somewhere? Did anyone go through similar setup before and could you share with me your advice?
    thanks in advance!
    -liang

    Oracle produces media distribution for major releases only, not for patched versions (there has been only a few exceptions). A major release can be determined out from the first three digits, 9.2.0.
    Available versions at otn and edelivery are just major versions, the requiered version 9.2.0.X.X is avalable only through patchsets.
    By the way only a patchset changes the last two digits, if you require a specific individual patch it doesn't change these last two digits and a specific installation procedure is provided.
    Last available patchset for 9iRel2 is 9.2.0.8.0
    ~ Madrid.

  • How can I get iWork'09 to register with MAS?

    I just bough iWork'09 serial online and it will no register on mac app store. I'm using Lion

    Post in the iWork forums.

  • How can i add servername to my report for all cataloged database

    1) Im using following sql statement to find the backup type,status and their timings and i would also like to see the databasename with it's corresonding servername.
    select
    DB_NAME,DB_KEY,
    input_type "Backup Object",
    output_device_type "Target Device",
    status "Status",
    output_bytes_display "Backup Size",
    time_taken_display "Time Taken",
    start_time "Backup Begin",
    end_time "Backup End"
    from rman.rc_rman_backup_job_details
    where start_time > sysdate - 1
    and input_type in ('DB INCR','DB FULL','ARCHIVELOG','BACKUPSET')
    order by DB_NAME,DB_KEY
    /

    The only information that will be available will be from one of the RC_* views. For a list of the views see the index in the Database Backup and Recovery Reference
    http://docs.oracle.com/cd/B28359_01/backup.111/b28273/index.htm#R
    The database name is available as the NAME column of the RC_DATABASE view. You will need to join this view to others at least on DB_KEY.
    http://docs.oracle.com/cd/B28359_01/backup.111/b28273/rcviews027.htm#sthref2607
    I'm not aware of any view that would have the server name. You will need to map the database name or id to your own table of server locations.

  • How can i get the meta data from database?

    Hi, all java and db experts,
    I need to write a tool to generate java file which will be used to hold the resultset of a stored procedure of Oracle. Is there any API call or tools to connect to db and then get the meta data of the return cursor instead of reading stored procedure definition on my own?
    Please help, thanks a lot.
    Hanna

    if i execute a Oracle stored procedure, the resultset of a cursor is returned. It's easy to know the meta data at the runtime.
    However, could i get the meta data about the resultset of a cursor before runtime? Such as by connecting to the database and ask it about meta data of a specified stored procedure?
    Is it feasible?
    DatabaseMetaData dbmd = conn.getMetaData();
    ResultSet rs = dbmd.getProcedureColumns("", "%", "SP_NAME", "%");
    while (rs.next()) {
    String colName = rs.getString(4);
    int colType = rs.getInt(5);
    int colDataType = rs.getInt(6);
    int colPrecision = rs.getInt(8);
    int colLen = rs.getInt(9);
    int colScale = rs.getInt(10);
    long defaultValue = rs.getLong(11);
    But what i get is a list of stored procedure parameters. In oracle, cursor is IN OUT parameter . How can i get the meta data about the resultset of cursor?

  • Why do I get movies on itune in German? How can I get them in English? I am registered as living in Zurich, but I don't speak German :-( Thanks in advance

    Why do I get movies on itune in German? How can I get them in English? I am registered as living in Zurich, but I don't speak German :-( Thanks in advance

    If you must. You can open a new iTunes Store account in the country you are from. In iTunes scroll down and change the country flag icon to your country and registry. If you don't have a credit card from your home country you can use gift cards instead.

  • How can I get a list of database names from environment

    Hi,
    How can I get a list of database names from environment.
    I had found a method in JE API Docs named Environment.getDatabaseNames(), and i couldn't found the same method in Berkeley DB.
    I use java interface, is it supported?
    Thanks.

    Hello,
    I don't know if it would work for you, but have you checked the db_archive utility at:
    http://download.oracle.com/docs/cd/E17076_01/html/api_reference/C/db_archive.html
    Check the -s option.
    Thanks,
    Sandra

  • How can i get data from another database SQL Server use database link from

    I have a database link from Oracle connect to SQL Server database with user cdit connect default database NorthWind.How can I get data from another database(this database in this SQL Server use this database link)?

    hi,
    u should see following documentation:
    Oracle9i Heterogeneous Connectivity Administrator's Guide
    Release 1 (9.0.1)
    Part Number A88789_01
    in it u just go to chapter no. 4 (using the gateway),,u'll find ur answer there.
    regards
    umar

  • I have an old Ipod 5th gen that I have been using for downloading music from my library.  Upon purchasing an Ipod touch and registering it in Itunes, I can no longer sync tunes to my old ipod.  How can I get that option back on my old ipod?

    I have an old Ipod 5th gen that I have been using for downloading music from my library.  Upon purchasing an Ipod touch and registering it in Itunes, I can no longer sync tunes to my old ipod.  How can I get that option back on my old ipod?

    - iTunes purchases by maybe
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    - For other music you need a third-party program like one of those discussed here:
    newer copy
    BTW, this is the iPod touch forum.

  • How can i get a print of all my registered apple products?

    How can I get a list of all my registered Apple products so I can print and keep on hand?

    http://support.apple.com/kb/HT2526 - If you registered a device you can use My Support Profile to find a list of serial numbers that have been purchased or registered with your Apple ID.
    My Support Profile - https://supportprofile.apple.com/MySupportProfile.do

Maybe you are looking for