Rman restore files from diff location

Hi,
In rman backups i have kept 3 location of backup /disk1,/disk2,sbt.now i want to restore the datafile or archive file from only location /disk2 .how can i do that.I dont want to give the backupset name or tag etc etc.Can i point allocate channel to /disk2.when i am pointing it to /disk2 it is still picking for /disk1.
Please help
Regards

Hi CKPT,
give the full connection string i am trying below its not connecting
rman TARGET sys/xxxx@kau CATALOG '/disk2'Recovery Manager: Release 10.2.0.1.0 - Production on Sun Nov 14 12:40:27 2010
Copyright (c) 1982, 2005, Oracle. All rights reserved.
connected to target database: KAU (DBID=1783968026, not open)
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-00554: initialization of internal recovery manager package failed
RMAN-10000: error parsing target database connect string "/disk2">
AND WHAT CHINAR SAID IS NOT WORKING ITS GOING TO /disk1 after allocation channel to /disk2
Regards

Similar Messages

  • Restore controlfile from backup location

    Hi All,
    I have a RMAN backup and want to recover my data from backup. RMAN backup has taken by someone but during restore to another DB server I am confused at controlfile point. I can see two controlfile in RMAN backup. Do I need to add both controlfile in restore command or any one controlfile would be okay? Please suggest.
    I run below command - rman > restore control file from '<backup location>';
    Thanks...
    Edited by: user12115 on Jun 15, 2012 5:23 AM

    I have a RMAN backup and want to recover my data from backup. RMAN backup has taken by someone but during restore to another DB server I am confused at controlfile point. I can see two controlfile in RMAN backup. Do I need to add both controlfile in restore command or any one controlfile would be okay? Please suggest.
    I run below command - rman > restore control file from '<backup location>';In you log file one of backup set contains of data files another backup set contains Controlfile + SPFILE(optional)
    Or else you can check from source database
    RMAN> list backup of controlfile;
    Note that backup piece according to date, and you can use that piece name to restore controlfile.

  • Restore Files from Backup on Vista Home Premium ; HP Pavilion m8120n

    Hello,
    I backed up files on HP personal media drive M:HP8120 and did a full System Recovery on my HP Pavilion m8120n. Now when I attempt to restore files from a backup made on this computer, the message says there are no backups available on this computer.  I tried advanced restore/Restore files from backup made on another computer or restore files for all users on this computer.  I can see the file in Select the Backup set to restore window.  I select the file and in the next window, select the date to restore from, I get the message “Backup location is not available.”  If I click next, in the select the files and folders to restore window, nothing is listed.  However, I get the opportunity to restore everything in this backup -- add files, add folders, etc. If I click add folders, I don’t see drive M: but I see drive C: and D:. 
    At this point I am at a loss.  Can anyone shed light on my situation?

    Thanks for the info. It appears that your Time-Warner router is serving a public IP address.
    My suggestion is to use the D-Link wireless-router for your local LAN (connect the Time-Warner to the WAN input of the D-Link). If you're concerned about speed issues, you can connect your laptop into the LAN bridge of the D-Link.
    If you're worried about speed, you can do a simple before and after experiment to see if the D-link is degrading your I/O throughput. I've used sites speedtest.net with good success in troubleshooting bandwidth issues.
    Regards / Jim B / Wireless Enthusiasts
    ( While I'm an embedded wireless systems engineer at work, on this forum I do not represent my former employer, Hewlett-Packard, or my current employer, Microsoft )
    + Click the White Kudos star on the left as a way to say "thank you" for helpful posts.

  • Rman restore file history

    How to delete rman restore file history ? I restored datafile from backupset :
    set newname for datafile 1 to 'D:\ORCL_K1\system01.dbf';
    restore datafile 2 ;
    and then i deleted file from OS .
    When i try restore again , i get :
    set newname for datafile 1 to 'D:\ORCL_K1\system01.dbf';
    restore datafile 2 ;
    then get :
    datafile 1 is already restored to file D:\ORCL_K1\SYSTEM01.DBF
    How to restore datafile again in d:\orcl_k1\

    Thank's very much .
    Delete expired datafilecopy all ;
    This worked.

  • Unable to pick up the file from Receive Location

    BizTalk is  unable to pick up the files from receive location.
    My admin console is working so slow.
    It is showing the problem of snap-in as follows:
    I have checked all my receive location and its masking,it is working fine.
    Actually it is working fine in dev server(snap-in problem is not occuring in dev server ) but when I import MSI and binding in UAT server.
    It is not picking up the file from receive location.
    I want to know one more thing :if my message box database is not working fine,will it receive the files from receive location.
    Prakash

    For files not received by receive location. If the Receive Location is still enabled but files are not processed by Receive Location, then check whether the host instance  configured with your receive location is running. If the host instance is in
    running state, restart the host instance and try.
    Regarding the error in the admin console as shown in the image, people started to see this issue with admin console from BizTalk 2009 onwards. This happens in cases like you have done some activity with console and before its been refreshed it you do more
    activities like expanding the node you will see this error. Sometimes WMI is bit slowly to refresh your admin console screen. Just wait for few seconds untill the WMI screen is rendered completely. Ensure you have all the cumulative updates installed for your
    version of BizTalk and also ensure the service pack for your OS is updated.
    Obviously if message box is not working, files will not be received/processed. But if message box is not in healthy state this would affect all other application not just one and in-fact it would affect entire BizTalk not just Receive Locations.
    To start analysing this file not been processed by Receive Location, start with checking the host instance as mentioned.
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • How to copy file from  one location to another

    Hi,
    I am new to java, I tried the following code to move the file from one location to another
    public class CopyFiles {
    public String copy ( File source, File target)
    throws IOException {   
    FileChannel sourceChannel = null;
    FileChannel targetChannel =null;
    try {   
    sourceChannel =new FileInputStream(source).getChannel();
    targetChannel= new FileOutputStream(target).getChannel();
    targetChannel.transferFrom(sourceChannel, 0,
    sourceChannel.size());
    finally {   
    targetChannel.close();
    sourceChannel.close();
    return "Success";
    public static void main(String [] args) throws Exception{   
    File source = new File("C:\\users\\download.pdf");
    File destinationFile = new File("C:\\apple\\download.pdf");
    copy(source, destinationFile);
    The above code is working perfectly, but I Don't want to include the file name in destination file. i.e. File destinationFile=new File("C:\\apple"), and at the same time the pdf with same name has to get stored in the destination location, how can I achieve this.

    kameshb wrote:
    I Don't want to include the file name in destination file. i.e. File destinationFile=new File("C:\\apple"), and at the same time the pdf with same name has to get stored in the destination location, how can I achieve this.It's not totally clear what you're saying here, but what I think you mean is that you don't want to explicitly set the destination file name--you want to just give the copy the same name as the original. Yes?
    If that's the case, then break the original up into separate directory and file name portions, and then construct the destination path from the destination directory plus original file name. You can do that by manipulating the full path string, or by using the methods in java.io.File.

  • Copy file from a location to another

    I work on a Java process that must be optimized and I have some questions.
    This process includes a part of copying a file from a location from another (to be more specific, all files that exist in a directory, to copy in another directory), wich technique is more efficient and quickly? To copy using FileInputStream/FileOutputStream in Java or using a java Runtime process that calls a copy command of the Operating System?

    I work on a Java process that must be optimized and I
    have some questions.
    This process includes a part of copying a file from a
    location from another (to be more specific, all files
    that exist in a directory, to copy in another
    directory), wich technique is more efficient and
    quickly? To copy using
    FileInputStream/FileOutputStream in Java or using a
    java Runtime process that calls a copy command of the
    Operating System?Neither. Use the FileChannels in the nio package if you can:
    /* Note:  Proper resource closing and exception handling is not done here */
    try {
            // Create channel on the source
            FileChannel srcChannel = new
            FileInputStream("srcFilename").getChannel();
            // Create channel on the destination
            FileChannel dstChannel = new
            FileOutputStream("dstFilename").getChannel();
            // Copy file contents from source to destination
            dstChannel.transferFrom(srcChannel, 0, srcChannel.size());
            // Close the channels
            srcChannel.close();
            dstChannel.close();
        } catch (IOException e) {
        }Spawning a Runtime process is probably the least efficient way to do it.
    - N

  • Copy File from One Location to Another Location through xcopy or any

    Hi,
    I Need to copy one file from one location to another location. That file need to save in C:\Windows\System32 folder
    I need to create one .bat file and i want apply that bat as a startup script through GPO.
    I tried through XCopy if i test in machine that is working. If i tried in other machine that is not working. becoz of some Credential issue
    I tried in the script by netuse command after that my script itself not working.
    SET username=XYZ\Administrator
    SET password=abcd
    @ECHO OFF
    cmd "cd C:\"
    net use "\\10.50.5.68\c$\Windows\System32" %password% /user:domain\%username%
    :copy
    Xcopy /S /I /E D:\DLL \\10.50.5.68\c$\Windows\System32 
    Regards, Hari Prasad.D

    You cannot do that in a startup script.  You do not need to do that in a startup script.
    To add files to the system use GP Preferences.
    On Window 7 and later only the Trussted Installer is allowed to add files. (That means only Microsoft.)
    No programs or users should ever alter files in the system area.
    ¯\_(ツ)_/¯

  • Restoring files from Time Machine after installing Maverick

    I have an older MacBook Pro and while installing Maverick my aged hard drive gave out. I got a new hard drive installed by an authorized Mac dealer and now I'm trying to restore files from Time Machine. I haven't done anything at all yet with Maverick. I followed the Migration Assistant directions and have the backup connected to my laptop. The backup icon appeared on my desktop. I hit continue and followed directions and reached the point where it said "looking for source" and there is a spinning ball. That was an hour ago. Is it just taking a long time to sort through the large volume of material in my Time Machine backup, or is something wrong? What should I be doing, if anything? Thank you for your help.

    I have an older MacBook Pro and while installing Maverick my aged hard drive gave out. I got a new hard drive installed by an authorized Mac dealer and now I'm trying to restore files from Time Machine. I haven't done anything at all yet with Maverick. I followed the Migration Assistant directions and have the backup connected to my laptop. The backup icon appeared on my desktop. I hit continue and followed directions and reached the point where it said "looking for source" and there is a spinning ball. That was an hour ago. Is it just taking a long time to sort through the large volume of material in my Time Machine backup, or is something wrong? What should I be doing, if anything? Thank you for your help.

  • How can I restore files from my old iMac to this new purchased MacBook Air? I am using time machine backup in my old imac.

    How can I restore files from my old iMac to this new purchased MacBook Air? I am using time machine backup in my old imac.

    Hi,
    Try Target Disk Mode
    OS X Yosemite: Transfer files between two computers using target disk mode
    There is also Migration Assistant.
    OS X Yosemite: Transfer your info from a computer or storage device

  • Reading XML file from specific location&Storing xmldata into related tables

    I am new to xml.
    My requirement is,
    1) Get the xml file from specified location (C:\xmlfiles\ xmldata.xml)
    2)Convert xml data in clob data.
    3)store the data into related table.
    and vice-versa.
    What i did,
    a) I got the data from related tables and converted into xmlformat using SQLX
    b)converted this resultset into clob data and stored as xml file in specific location.
    It uses more then ten tables.
    All this help i got from AskTom site , thanks for that.
    Now i have to do vise-versa, i.e. i have to perform 1), 2), 3) steps........
    Please tell me proper steps to acheive it.
    Thanks in advance for giving your precious time to solve my issue.

    Have you read the"XMLDB FAQ" in this Forum?
    You could use stuff like:
    create or replace directory xmldir as C:\xmlfiles'
    declare
    xmldata xmltype;
    begin
    xmldata := xmltype(bfilename('XMLDIR','xmldata.xml'),nls_charset_id('AL32UTF8'));
      -- etc, etc your code --
      -- --> convert to clob by using for instance getclobval() function
      -- --> then insert the data in your relational table with CLOB column
      -- etc, etc your code --
    end;
    /

  • Restore Files From an Old Time Machine Disk

    Please forgive and send me a link if someone has already answered this but I need to restore files from an old Time Machine Volume to my current desktop.
    How do I do this?

    control-click on TM in the dock and choose "browse other TM disks". choose your old TM backup to browse and restore what you need. also, you can always open your TM drive in finder and copy what you need directly via finder.

  • How can I restore files from a time machine back-up of my iMac to an EXTERNAL hard drive connected to MacBook Pro. Using Migrat

    I would like to restore files from a time machine back-up of my iMac to an EXTERNAL hard drive connected to MacBook Pro. When I tried using Migration Assistant it only gives me my internal hard drive as an option to restore to. The internal hard drive on my macbook isnt large enough to store the files.

    Welcome to Apple Support Communities
    OS X can only restore data to the drive where Time Machine backed up files from.
    If you want to restore files from the Time Machine backup onto an external drive, your only option is to access to the Time Machine drive manually (open a Finder window and choose your Time Machine drive in the Finder sidebar), navigate through its folders and copy the files you want to the external drive

  • How to restore files from Time Machine after Clean Install of Mavericks

    How to restore files from Time Machine after Clean Install of Mavericks. I know the data is there but seems unaccessable because I may have changed the Computer or Owner name. Is there any way to fix that now?

    Hi Linc,
    my back-up data is managed by Time Machine; the actual data is on a second internal Hard Drive with a capacity of 1TB - not partitioned. I am using Time Machine and have access to all data backed up since Mavericks Clean Install but not the data prior to this date.
    When I open the 1TB drive in Finder I can see a folder "Backups.backupdb/Sigi's Mac Pro/ followed by many folders of backup dates going back to 2010-09-20-103441 and up to 2014-02-07-142414 all followed with folder Macintosh HD.  February 7th  2014 was the date of the clean install.
    These Backups are followed by backup date folder 2014-02-08-075554 with a subfolder of MacPro-320GB (this is the name I assigned to my Boot Drive during formatting; I suspect I should have assigned the same name as before ie. Macintosh HD) and 2014-02-11 with a subfolder Macintosh HD, these are the ones I get access to by way of Time Machine > Restore.
    Weird thing is on Febr 11 when I relised my possible mistake and renamed the Bootdrive back to what it was initially ie. Macintosh HD despite this I have access to all backup data since the Clean Install in both folders MacPro-320GB as well as Macintosh HD but not to any data prior to the Clean Install.
    Is there something that Time Machine knows and prevents access or is it simply a matter of renaming the subfolder 2014-02-08-07554/MacPro-320GB to ........./Macintosh HD?
    I like to restore selectively and not everything - It was hard work reinstalling apps that were supposed to be the troublemakers (ref my discussion on Maverick problems) but I now need to get onto data specific to some of these apps as well as other data I may have missed. Long story? Yes and sorry.
    Sigi

  • Restore files from last Time Machine backup after HD erase and install

    I just had to do an "erase and install" ... trying to restore files from my last Time Machine backup but after completing the Airport Utility setup / configure steps, it says "waiting to restart" for a few minutes and then says it cannot find TIme Capsule after restart (though TC never restarted). I'm pretty desperate to get my files back as it's Sunday night and my business needs to be up and running by morning. Any help would be greatly appreciated ... even if it's saying I need to take TC into a Mac store to have them retrieve my files.

    While in Time Machine, press the key combination shift-command-C. The front window will show all mounted volumes. All snapshots should now be accessible. Select the one you want and navigate to the files you want to restore.

Maybe you are looking for

  • Chnages in the Graph properties are not getting reflected in the Browser.

    Hi, I have made some changes in the Graph properties in web template, Eg. : 1. change in color of a series for a columnar type graph          2.change in the Text properties of Graph Series.. When I save the template and try to run in the Browser, th

  • How to display and edit the clob datatype column from Data base

    Hi , I have a requiremsnt as below 1) One Table having some columns with CLOB data type along with varchar columns 2) need to display the data from DB in search screen and need to be edited clob column in edit screen I created EO and VO with that Tab

  • SQL loader and stream files with new line '

    I have been trying unsuccessfully to load EDI files using SQL loader. The problem is that the lines are terminated by ' and when I use the stream file option it does not recognise the line terminator given. As I understand it from the documentation t

  • Java Code to Connect to OIM on HTTPS

    Hi All, I have recently disabled the HTTP Port for OIM and enabled only HTTPS Port. I have java code that I used to connect to OIM on HTTP Port but that doesn't working anymore. I have update the OIM_URL to use t3s but not sure what else in system pr

  • Message bind Not appearing as should

    Dear All; I have an application where i bind, the labels of the buttons and fields, from a pre-existing file using load bundle, and it happens that the names binded are arabic, and when i run locally they appear as should, only when i deployed to ora