Re: How to query extract/MEDIA/BANDS with RMAN using controlfile?

Hello

Try to restore the database and logs archived strips, RMAN backups run without using the recovery catalog database controlfile. Need to know the bands / media required for the backup of the restoration. Therefore impossible to use RC_DATABASE, RC_BACKUP_PIECE, RC_BACKUP_SET catalog views.

Ideas/thoughts please?

Thank you!
A
Therefore cannot use RC_DATABASE, RC_BACKUP_PIECE, RC_BACKUP_SET catalog views.

Ideas/thoughts please?

NONSENSE.

The control file will act as a recovery catalog when you are not using a separate in the catalog database.
All views RC_ correspondent V$ give.

--------------
Sybrand Bakker
Senior Oracle DBA

Tags: Database

Similar Questions

  • headers block (block media recovery with rman)

    Hi Im following this tutorial (sound on media with rman block recovery) - im using 11 GR 2 on oel 5.5

    http://kamranagayev.WordPress.com/2010/03/18/RMAN-video-tutorial-series-performing-block-media-recovery-with-RMAN/

    I created 2 spaces and storage within an array, for example I have a table space called "users02", composed of a data file called "users02.dbf", which currently holds a table called "tbl_test01".

    If I query the table to select * from him, he returns the data inside, but when I use the following statement to determine the block header (for the purpose of the tutorial) no row is returned...
    select header_block from dba_segments where segmemt_name='tbl_test01';
    can someone help me on hwo I can find the header of the table,... is block - it possible that segment name is different in the name of the table?

    Any help would be appreciated

    806595 wrote:
    Hi Im following this tutorial (sound on media with rman block recovery) - im using 11 GR 2 on oel 5.5

    http://kamranagayev.WordPress.com/2010/03/18/RMAN-video-tutorial-series-performing-block-media-recovery-with-RMAN/

    I created 2 spaces and storage within an array, for example I have a table space called "users02", composed of a data file called "users02.dbf", which currently holds a table called "tbl_test01".

    If I query the table to select * from him, he returns the data inside, but when I use the following statement to determine the block header (for the purpose of the tutorial) no row is returned...

    select header_block from dba_segments where segmemt_name='tbl_test01';
    

    can someone help me on hwo I can find the header of the table,... is block - it possible that segment name is different in the name of the table?

    Any help would be appreciated

    PLS, try:

    select header_block from dba_segments where segment_name='TBL_TEST01';
    
  • How to open a media file with a .wmv on my iMac extension

    How to open a file on former support with the extension .wmv on my iMac?

    To my knowledge you can't, not without having to buy something like Flip4Mac, that allows you to play .wmv files.  As this is a Windows Media file, you cannot open it on a Mac without help, and help usually costs $$$.

  • How to create a graphic band with difference Y-scales

    There is a plethora of examples for charts and graphics including maps of mixed signals.  Maybe I'm missing the point, but I can't find what I want.  I would like to draw two different wire signals from the time signals are separately autoscaled on axis y.   This is an example of sketeched attached hand.   I need to plot the results of a device under load in Lbs and show the comparison of a sensor of moving in inches.  Is this possible?  I prefer not to use the stacked plots.  I use LV 2009 SP1.

    Thank you

    Dave

    An image is quite difficult to debug. Assign you the Red plot to scale by clicking on the legend of the plot. Your chart has no visible plot legend.

  • Extract xml nested with attributes using plsql

    Hi, I need to extract xml file and insert 2 oracle tables. The xml file is the use of attributes, and I cannot retrieve the element 'code' nested with its attributes in the context of its parent folder "table." Here is a sample of the xml data that I have to extract the date:

    <? XML version = "1.0" encoding = "UTF-8"? >
    < dataset - cv:dataset - cv dateProduced = "2011-09-19 11:50:45 ' xmlns:dataset - cv ="http://www.myurl.com/dataset-cv/1.0.0">"
    < lov >
    < id of the table = "00000000000001000" Name = "Role of the system" isSystem = "true" status = "Enabled" >
    < id code = "00000000000000306" Name = "Helpdesk" code = "1" status = "Enabled" / >
    < id code = "000000000000000307" Name = "Reviewer" code = "2" status = "Enabled" / >
    < id code = "00000000000000308" Name = 'Administrator' code = '3' status = "Enabled" / >
    < /table >
    < id of the table = "00000000000002000" Name = 'Country' sSystem 'false' status = "Enabled" = >
    < id code = "000000000000002004" Name = "AFGHANISTAN" code = "4" status = "Enabled" / >
    < id code = "000000000000002008" Name = 'ALBANIA' code = '8' status = "Enabled" / >
    < id code = "000000000000002010" Name = "ANTARCTICA" code = "10" status = "Enabled" / >
    < /table >
    < / lov >
    < / dataset - cv:dataset - cv >


    I use a query like this that seems to work to get all the attributes of table or all attributes of code element element, but not the code attributes in the context of his record from the table parent.

    SELECT id
    englishname
    status
    FROM XMLTABLE ('for $i //lov//table return $i"
    FROM db_get_xml_from_file (p_file_name, p_directory)
    ID VARCHAR2 COLUMNS (32) PATH '@id '.
    , englishname PATH VARCHAR2 (50) '@englishName '.
    , status VARCHAR2 (10) PATH '@status '.
    )

    Any help will be much appreciated

    Thank you

    Dave

    user12036327 wrote:
    I use a query like this that seems to work to get all the attributes of table or all attributes of code element element, but not the code attributes in the context of his record from the table parent.

    To get the nested data, that you need to implement nested xmltable statements. for example

    SQL> ed
    Wrote file afiedt.buf
    
      1  with t as (select xmltype('
      2  
      3    
      4      
      5        
      6        
      7        
      8      
    9 10 11 12 13
    14
    15
    ') as xml from dual) 16 -- 17 -- end of sample data 18 -- 19 select tbl.id tbl_id 20 ,tbl.englishname as tbl_englishname 21 ,tbl.issystem as tbl_issystem 22 ,tbl.status as tbl_status 23 ,cd.id as cd_id 24 ,cd.englishname as cd_englishname 25 ,cd.code as cd_code 26 ,cd.status as cd_status 27 from t 28 ,xmltable(xmlnamespaces('http://www.myurl.com/dataset-cv/1.0.0' as "dataset-cv"), 29 '/dataset-cv:dataset-cv/lov/table' 30 passing t.xml 31 columns id varchar2(32) path '/table/@id' 32 ,englishname varchar2(20) path '/table/@englishName' 33 ,issystem varchar2(5) path '/table/@isSystem' 34 ,status varchar2(10) path '/table/@status' 35 ,code xmltype path '.' 36 ) tbl 37 ,xmltable(xmlnamespaces('http://www.myurl.com/dataset-cv/1.0.0' as "dataset-cv"), 38 '/table/code' 39 passing tbl.code 40 columns id varchar2(32) path '/code/@id' 41 ,englishname varchar2(20) path '/code/@englishName' 42 ,code number path '/code/@code' 43 ,status varchar2(10) path '/code/@status' 44* ) cd SQL> / TBL_ID TBL_ENGLISHNAME TBL_I TBL_STATUS CD_ID CD_ENGLISHNAME CD_CODE CD_STATUS -------------------------------- -------------------- ----- ---------- -------------------------------- -------------------- ---------- ---------- 00000000000001000 System Role true Enabled 00000000000000306 Helpdesk 1 Enabled 00000000000001000 System Role true Enabled 000000000000000307 Reviewer 2 Enabled 00000000000001000 System Role true Enabled 00000000000000308 Administrator 3 Enabled 00000000000002000 Country false Enabled 000000000000002004 AFGHANISTAN 4 Enabled 00000000000002000 Country false Enabled 000000000000002008 ALBANIA 8 Enabled 00000000000002000 Country false Enabled 000000000000002010 ANTARCTICA 10 Enabled 6 rows selected.
  • How to play a video taken with Blackberry using Windows

    Black berries

    How to play a video on my blackberry on windows

    How to play a video on my blackberry on windows

    ==============================
    Maybe the following link offers a solution:

    Convert video files from my Blackberry to
    Play on Windows Media Player and Movie Maker
    http://forums.PCWorld.com/index.php?/topic/69

    Also... the media players following freeware
    may be able to play the files. :

    Media Player Classic
    http://www.filehippo.com/download_media_player_classic/
    (just unzip and run it... (no installation required)

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    VLC Media Player
    http://www.videolan.org/

    Volunteer - MS - MVP - Digital Media Experience J - Notice_This is not tech support_I'm volunteer - Solutions that work for me may not work for you - * proceed at your own risk *.

  • How to create the new database with rman backup

    Hello
    I took an rman backup with nocatelog. can I make a new database with the rman backup.
    If so, how? I m using oracle 9i.


    thxs

    If it is useful, see the following:

    http://www.shutdownabort.com/QuickGuides/clone_rman.php

  • How can I update form field with data using "on Blur.


    Perhaps also very easy for all the experts out there that you but I'm trying to update a form field with data in another field in the form when they come out the first form field.

    Basically creating a "billing" and a form "shipping" I want to be updated automatically.

    Any help would be extremely Grateful.

    Thank you

    Steve

    He does!

    shipFirstNameText.value = this.value

    It worked

  • How can I use Media Encoder with After Effects?

    Hello

    I will just get to the point, how can I Sync Media Encoder with After Effects? because I really want to send my projects done for media encoder to make them via media encode instead of sequels because then Meanwhile I can work on another project! If anyone can help me with what would be really great !

    Kind regards

    Yusuf

    Hi Yusufk51841696,

    I will just get to the point, how can I Sync Media Encoder with After Effects? because I really want to send my projects done for media encoder to make them via media encode instead of sequels because then Meanwhile I can work on another project! If anyone can help me with what would be really great!

    Make sure that you have installed, same version of After effects and Media encode.

    Also check out this link:

    Basics of make or export to after effects CC

    Thank you

    Ilyes Singh

  • How can I share my books with another user?

    How can I share my books with another use?

    Your iBook and anything else that you have downloaded from the iTunes Store, are related (and allowed) to your account - they can be shared or loaned to other users.

  • How can I minimize the window of 123 media player with a keyboard command

    can you please tell me that how I can reduce the window of 123 codec media player with a command of key board.

    Just like,
    When I press the alt + space + n, it minimizes the current window, but it does not work on the media player. can you please suggest me any command for this purpose. I mean, only a short drive, not a long process.
    Thank you in anticipation of all

    Hi talhasabir,

    The closest you can get use Windows + M key that will minimize all windows. You can use Windows + D (display the desktop). You use this shortcut will allow you to use Windows + D now show the last window before the display of the desktop computer.

    For reference:

    Keyboard shortcuts for Windows

    http://support.Microsoft.com/kb/126449

  • How can I stop sharing music on media player with other users on my computer?

    whenever I have download a song off Frost wire, it will appear on media player.  No problem.  The problem is that it also appears on the media player on my profile brothers and when I remove it out of there it also deletes it out of my Media Player.  How can I do so that when I download a song it will only appear on the media player on my profile. I have Windows XP.

    Hi Sean4474,

    What version of Windows Media Player are you using?

    You can follow these steps to stop sharing media & check if it helps.

    a. click the arrow below the Library tab, and then click media sharing.

    b. in the media sharing dialog box, select her share my media to check box.

    c. in the list of devices below the share my media to check box, select a device.

    d. If you do not want to share your media with the computer or device you have selected, click on refuse.

    If you use Windows Media Player 11, you can check this link.

    Change settings for sharing media in Windows Media Player

    Note: This article is for Windows Vista, however it is also valid for Windows XP.

    Hope the helps of information. Please post back and we do know.

    Concerning
    Joel S
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • I am trying to sync my ipod with my windows media player and when I connect my ipod windows media play is not read. How can I sync my ipod with windows media player?

    I am trying to sync my ipod with my windows media player and when I connect my ipod windows media play is not read. How can I sync my ipod with windows media player?

    Hello

    Your MP3 player should have 2 settings - MSC that should allow the player to be used as a
    external drive and PSG that is the parameter to use to sync with WMP11. Remove the MP3
    and restart the computer. Change the MP3 in MTP mode - it power off and plug it in.

    I hope this helps.
    Rob - bicycle - Mark Twain said it is good.

  • How do I burn a cd with windows media player and have not any second 3 breaks inbetween the songs?

    How do I burn a cd with windows media player and have not any second 3 breaks inbetween the songs?

    In the following FAQ... scroll to the bottom for...:
    "Why are there gaps sometimes long between songs on the CD I burn?

    Windows Vista - burn a CD or DVD in Windows Media Player:
    Frequently asked questions
    http://Windows.Microsoft.com/en-us/Windows-Vista/burn-a-CD-or-DVD-in-Windows-Media-Player-frequently-asked-questions

    The free software CDBurnerXP has an option to burn a
    CD music with or without addition of gaps.

    (if the audio has static air at the beginning or at the end...
    which will need to be deleted manually with an audio
    Editor-in-Chief).

    (FWIW) It's always a good idea to create a system
    Restore point before installing software or updates)

    CDBurnerXP
    http://www.CDBurnerXP.se/
    (Yes, it works on XP, Vista, 7)

    CDBurnerXP to make Audio disc
    http://CDBurnerXP.se/help/audio/compileaudio

  • How can you play Blu Ray with Media Center?

    I'm reading Blu Ray discs with media center, but it will give me only the error message that they are not supported.  How can I me media center to use powerDVD or another program to read?

    Thank you very much

    PowerDVD will not integrate with WMC (assuming that you have a BD - Rom drive installed).  You may have more luck with WinDVD 9 which integrates with Media Center.

Maybe you are looking for