query to get the required files for recovery...

I'm on 11.2.0.1 catalog trgt db and restoration and I wanted to find can query outwhat I ran to get the backup files that I need...

Say so I want to restore my database to 11-Jan-2012 14:00 hours...
So what query do I need to run to find out what are the backup files I need? The reason for this is... backup are on tape and tape drives are send off site after the backup is done... so we have to find these are the necessary backup for restoring file and lie on this band... until they ask to get this info?

query should return the necessary backup files (say backup of level 0, level 1 backup peiece, archive etc etc log backup items)...

user12857022 wrote:
I'm on 11.2.0.1 catalog trgt db and restoration and I wanted to find can query outwhat I ran to get the backup files that I need...

Say so I want to restore my database to 11-Jan-2012 14:00 hours...
So what query do I need to run to find out what are the backup files I need? The reason for this is... backup are on tape and tape drives are send off site after the backup is done... so we have to find these are the necessary backup for restoring file and lie on this band... until they ask to get this info?

query should return the necessary backup files (say backup of level 0, level 1 backup peiece, archive etc etc log backup items)...

Of RMAN

run
{
until

Tags: Database

Similar Questions

  • Try installing Acrobat 8 Standard on PC with Windows 7, 64 bit. During the installation I was asked to provide "files Adobe PDF.dll for Windows Vista. How can I get the required file?

    I'm trying to install Acrobat 8 Standard on a PC with Windows 7, 64 bit. During installation, you asked me to provide 'File PDF.dll Adobe for Windows Vista'. How can I get the required file?

    Hi Alan Horan.

    This link appears corresponding to your query, please visit this link ( error "the file AdobePDF.dll is needed" |) CS3 | 64 - bit Windows ) and let me know if you face any problem.

    Kind regards
    Rahul Tyagi

  • I need to get the PFM files for several old Type 1 fonts that I bought from Adobe.

    I have quite a few Type 1 fonts that I bought from Adobe, at the time when dinosaurs walked the Earth and Adobe Type Manager was all the rage. I need to be able to use them in Windows 7 and later versions, so I need the PFM files, which are not on floppy 3.5 "disks I have.

    I saw someone asked this question last year and an Adobe employee asked the person to email him, but I don't know if this employee is always followed the forums or responsible for this kind of thing again so I ask here now in the hope of getting help so I can get the required PFM files for fonts I have.

    Thank you

    Liz

    I communicate with this client off-list and he will provide the .pfm files if she gives me the names of fonts.

    -Dov

  • Where can I get the sample files for dreamweaver cs 5.5 on Adobe TV of corrupted files

    where can I get these sample files for dreamweaver cs 5.5 on Adobe TV

    Classroom: the basic Site layout and Navigation in Dreamweaver | Adobe TV

    Origin deleted, deleted file cache, everything works fine.

  • How to get the mobileprovision file for air for ios

    I created a small application. I want to publish this .ipa file when I try to publish the ide flash asking the .moblieprovision file. How can I get this file. Is it need to BUY.

    That may have changed with CS6, but in the past, you had to buy an Apple Developer iOS development plan (they have a Mac development as well).  Visit the website of apple to http://developer.apple.com .

  • I get the message "files for the recovery diskette could not be created" when you use the backup utility. Why?

    I was using the Backup Wizard, backup all info on the computer to an external hard drive and insert a diskette in the drive.

    Hello

    · What is the edition of windows that you have installed?

    · What is the service pack installed?

    Try the steps listed in the link below: year Error Message is displayed when you try to use the Automated System Recovery Wizard: http://support.microsoft.com/kb/302700

  • How can I get the configuration file for installed software to the other PC

    Hello

    My car is Zion & I'm managing the all COMPUTER software & hardware requirement, my request is that if I go to the option of payment, how can I get license information and the invoice of Adobe and can you install the software in different PC.

    I am not able to contact by phone if possible please contact me or send me email with the solutions.

    Thanks and greetings

    Executive Shaikh

    [personal information deleted - mod]

    Hi Rafiques27191756,

    Looks like you ask for assistance with a volume license. If this is the case, information about purchase of Adobe programs are available here: Adobe licensing, discounts | Adobe purchase programs. If you buy a volume license, you will be able to view and manage your account as well as learn how to deploy the software on different PC on the Site Web of Adobe License. In the meantime, you can get individual help in contacting customer service by using cat.

    In case you have any questions about the purchase and deployment of a volume license, I'm moving this discussion to the deployment to the Cloud, business, & CS creative team. If you are interested in individual licenses instead, please let me know and I will move the discussion in a more appropriate forum... For the record, every single license can be activated on up to two computers.

    Let us know if we can provide more information or assistance.

    Best,

    Del

  • How to get the log file for the .sql file?

    Friends,

    OS: RHEL AS 3
    DB: 9iR2

    I have a file as sql...
    @/u02/scripts/olback.sql
    exit;
    the olback.sql is to have the user manage backup scripts.
    I saved the code above as weeklybkp.sql
    I have weeklybkp.sh that I call the sql above.
    When I type the olback.sql in the sqlplus manually... I can able to see the result.
    now after the automation... I have to see the output of the script above in a log file.
    How can I save the output of the script above in a log file?

    Thank you

    Slight change in your .sql file.
    coil /u02/weeklybkp.log
    ............ (Here begins your code)
    ............
    ............ (Here ends your code)
    spool off

  • SQL query to get the employee details for those who have the same salary

    Hi Experts,
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    
    SQL> WITH EMP AS
      2  (
      3  SELECT 1000 EMPNO,100 SAL FROM DUAL UNION ALL
      4  SELECT 1001,90 FROM DUAL UNION ALL
      5  SELECT 1002,80 FROM DUAL UNION ALL
      6  SELECT 1003,90 FROM DUAL UNION ALL
      7  SELECT 1004,100 FROM DUAL UNION ALL
      8  SELECT 1005,20 FROM DUAL UNION ALL
      9  SELECT 1006,10 FROM DUAL
     10  )SELECT * FROM EMP;
    
         EMPNO        SAL
    ---------- ----------
          1000        100
          1001         90
          1002         80
          1003         90
          1004        100
          1005         20
          1006         10
    
    7 rows selected.
    SQL>
    Desired output:
         EMPNO        SAL
    ---------- ----------
          1000        100
          1004        100
          1001         90
          1003         90
    Please suggest how to work on the request?

    Thank you

    Oh, try

    WITH EMP AS
        (
        SELECT 1000 EMPNO,100 SAL FROM DUAL UNION ALL
        SELECT 1001,90 FROM DUAL UNION ALL
        SELECT 1002,80 FROM DUAL UNION ALL
        SELECT 1003,90 FROM DUAL UNION ALL
        SELECT 1004,100 FROM DUAL UNION ALL
        SELECT 1005,20 FROM DUAL UNION ALL
        SELECT 1006,10 FROM DUAL
       )
    SELECT * FROM EMP WHERE SAL IN (
    SELECT SAL FROM (
    SELECT count(sal) OVER (PARTITION BY SAL ORDER BY EMPNO) SAL_CNT, SAL FROM EMP
    )
    WHERE  SAL_CNT >1)
    ORDER BY SAL DESC;
    
    EMPNO     SAL
    1004     100
    1000     100
    1003     90
    1001     90
    4 rows returned in 0.01 seconds
    

    * 009 *.

  • CS6 won't install - says it cannot find the required files

    I downloaded Adobe CS6 Production Premium from my University Web site. When I tried to install it, it says that it cannot find the required files for the installation. I have attached the error message I received:

    Exit code: 6

    Please see the faults and warnings below for troubleshooting. For example, ERROR: DW050...

    -------------------------------------- Summary --------------------------------------

    -0 fatal Error (s), 7 (s), 0 warning (s)

    -Payload: {92D58719-BBC1-4CC3-A08B-56C9E884CC2C} Microsoft_VC80_CRT_x86 1.0.0.0.

    ERROR: Install payload MSI failed with error: 2 - the system cannot find the specified file.

    MSI error message:

    -Payload: {7E91BB17-16A1-42CE-9502-D6C98BE04920} PDF settings CS6 11.0.0.0.

    ERROR: Install payload MSI failed with error: 2 - the system cannot find the specified file.

    MSI error message:

    ERROR: DW050: the following payload errors were found during the installation:

    ERROR: DW050:-Microsoft_VC90_CRT_x86: installation failed

    ERROR: DW050:-CS6 settings PDF: installation failed

    ERROR: DW050:-Microsoft_VC80_CRT_x86: installation failed

    ERROR: DW050:-Adobe Mini Bridge CS6: installation failed

    ERROR: DW050:-standard Adobe 2.0: installation failed

    -------------------------------------------------------------------------------------

    Any suggestions?

    Start here, http://helpx.adobe.com/creative-suite/kb/errors-exit-code-6-exit.html

  • Get the Error Message When you try to reinstall Vista: Windows cannot open the required file: E:\Sources\install.wim

    I'm trying to reinstall windows vista for the following reasons:

    1. I have SQL Server 2008 installed on my computer.  I deleted some files a long time ago and it screwed something and I couldn't reinstall.
    2. I had partitioned my hard drive for vista half and half SuSE and I deleted who and when I did, I think I deleted another partition - my recovery partition (E:\?).
    3. I need to clean my laptop.

    When I try to start the installation of a disk and I put in my product key, I get the following error:

    Windows cannot open the required file E:\Sources\install.wim.  The file does not exist.  Make suure all files required for installation are available, and restart the installation.  Error code: 0 x 80070002.

    Let me know if you have any ideas how I can fix it.  My next step was to recreate this E directory and download the install.wim file and re start the installation.  I could not find the file install.wim well.

    Rob

    Hi Rob,

    I checked the link you provided.  What you downloaded was just the Vista recovery environment.  You cannot actually re - install Vista with that and if you blew your recovery partition unfortunately you may be out of luck.  You blew your partition containing Vista runs so the SFC will be of no help either.  I wish I had better news for you, but I don't see any way o get on without a Vista DVD.  I have good news for you if.  When you get your HP drive if you have problems with the installation, we will be able to help you with that.

    Take care and let us know if you need assistance when the disc arrives. Locutys of Borg

    Resistance is futile

    If you don't succeed the first time skydiving probably isn't for you!

  • WINDOWS cannot OPEN THE FILE D:\Sources\Install.wim REQUIERED. Make sure that all required files for installation aare available and restart the installation. Error code: 0x8007000D,.

    IM TRYING to re - INSTALL WINDOWS VISTA ON MY T-6321 to the front door, BUT WHEN I INSERT THE DISC, AND INSTALL, a MESSAGE APPEARS SAYING: WINDOWS cannot OPEN THE FILE D:\Sources\Install.wim REQUIERED. Make sure that all required files for installation aare available and restart the installation. Error code: 0x8007000D, SHOULD ALL BE ON THE DISCALREADY?

    Hi JRCLNSIN100,

     

    Welcome to Microsoft Answers Forums.

    We would like to get some more information from you to help solve your problem. You better, please answer the following questions.

    ·         What is the disk you use to reinstall?

    ·         Is this a recovery or reinstalling the disc you are using?

    ·         When exactly do you get this error message?

    ·         What is the edition of Windows Vista, you try to install?

    ·         How old is the drive that you are using?

    ·         How are you starting the installation process?

    After researching the error 0x8007000D code is essentially due to file corruption and a problem with the drive itself.

    First check if you have scratches or dust on the disc and clean the surface and try again.

    To check if the disk is wrong, you will need to copy the contents of the DVD to the hard drive and try to install using that.

    To perform a flat installation of Windows Vista, follow these steps.

    Note The hard disk must have at least 3 GB of free space on the disk for the Windows Vista installation files. The hard disk must have at least 15 GB of additional disk space to install Windows Vista. For more information about system requirements for Windows Vista, see the Microsoft Web site at the following address:

    http://www.Microsoft.com/Windows/products/windowsvista/editions/SystemRequirements.mspx

    1. Insert the Windows Vista installation disc.
    2. Start Windows Explorer.
    3. In Windows Explorer, click to select the drive for the Windows Vista installation disc.
    4. On the Edit menu, click select all.
    5. On the Edit menu, click copy.
    6. Click to select the hard disk you want to contain the flat installation files.
    7. On the file menu, point to new, click the folder, type Windows Vista Setupand then press ENTER.
    8. Double-click the Windows Vista Setup program, and then click Paste on the Edit menu.
    9. Double-click Setup.exe, and then follow the instructions that appear.

    See the link below for more information on flat installation.

    How to perform a flat installation of Windows Vista

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

    This problem can also occur if the firmware of the DVD drive is defective or obsolete.

    If the step above does not resolve the question suggests that you install the latest drivers for the DVD player on the computer.

    For more information please visit the link below.

    Error message when you try to install Windows Vista by using the DVD drive on the computer: "Windows cannot install required files".

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

    Hope this information is useful.

    Let me know if it worked.

    All the best!

    Thanks and greetings

    Halima S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How can I get the jpg files to show after recovery?

    So, I accidentally deleted permanently about 4 000 pictures on my computer today. I found a recovery program that could get back them. Unfortunately, I couldn't have my phone to allow my office transfer images here (for an external hard drive). I advanced and retrieved the files on the hard drive even I had deleted the same if there was a possibility of problems. I discovered that one of the problems is a jpeg images wouldn't show.

    My question is, is it possible to get the jpg files to show? Or am I just more or no chance?

    Thanks for any help.

    It seems that some of the recovered image files are corrupt and are therefore not visible. Microsoft® Security MVP, 2004-2010

  • Where does FireFox get the default value for a preference of. What is the format of the file that contains the default value?

    Where does FireFox get the default value for a preference of. What is the format of the file that contains the default value? I need the actual default value for an individual preference.
    Topic: config shows some default values, but I need the source from which everything: config returns to the default value.
    Any help in this direction is greatly appreciated.

    User Agent

    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x 64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)

    The preferences that are not hidden if they have by default are stored in two JavaScript text files in the Firefox program folder
    You can open them in a tab in Firefox through these links:
    resource:///defaults/pref/firefox.js
    resource:///greprefs/all.js

    (702598/forum/1/702598)

  • When you import a song from itunes for windows moviemaker I get the message (file cannot be imported because the game to version Recentepour the file codec is not installed)

    original title: codec

    When you import a song from itunes for windows moviemaker I get the message (file cannot be imported because the game to version Recentepour the file codec is not installed) how can I fix it?

    Install the codec.  Really.

    Something like GSpot to understand that one.

Maybe you are looking for