How to move  FLASH_RECOVERY_ARE file to new drive?

Thanks for taking my questions!
Does anyone know how to move the e:\oracle\flash_recovery_area\* files to a new drive?
Thanks,
Kathie
THIS FAILED:
I created a new pfile.
Edited pfile changing old drive letter to new drive letter.
shutdown immediate
moved the E:oracle\flash_recovery_area\* to S:\oracle\flash_recovery_area\*
startup nomount;
create spfile from pfile;
shutdown immediate;
startup
Now I get ORA=38760 - This database instance failed to turn on flashback database;

Kathie,
Try this by mounting the database first
1) First Turn off Flashback:
SQL> alter database flashback off;
Monitor alert log for messages regadring flashback:
Then s turn the flashback on again.
SQL> alter database flashback on;
SQL> Alter database open;Regards

Similar Messages

  • New To Mac, How to move/copy files from external drive

    Just got my first Mac computer. My music files (about 140 gb) are on an external drive.
    When setting up iTunes the process of transfering and organizing the files took over 24 hours--more than twice as long as on my old PC.
    I would like to keep the files on the Mac itself. I have plenty of space now, and I think not using an external drive improves performance. Then I could use the hard drive as a back-up, as nature intended.
    Problem is, due to my inexperience with Macs I'm stumped as to how to do this.
    Any suggestions would be greatly aprecciated!

    I believe you would simply copy your iTunes Music folder from your external drive into the main iTunes folder on your Mac, then open Preferences, and in the Advanced section use the 'Change' button next to eh 'iTunes music folder location' window to find your copy of the iTunes Music folder and let your Mac know that's where all your tunes are.
    That's pretty much the exact reverse of what I had to do!
    Hope that helps (and isn't wrong)!

  • How to move pdf files into iCloud drive folder

    Now that we can have a folder called, say "personal" with pages, numbers and other files in - how can I get my pdf files that are currently in iBooks into these iCloud drive folders. I don't even know where the pdfs from iBooks are! Certainly not in iTunes. I have many dozens of pdfs which could do with sorting into folders with their relevant notes that I make in Pages. I have an IPad Air and an iPad with Yosemite.

    Thanks, Niel, though I underspecified the problem a bit because I knew how to do the rest in Automator; unfortunately, I know even less about Applescript.
    How do I also specify that the file names must begin with a specific text string (e.g. "journal.").
    John

  • How to move iTunes library from C-drive to D-drive

    I'm a Mac guy, but my wife has a PC running XP Home & iTunes 7.1.1.5. At this point, everything works fine. I thought I'd better ask this question BEFORE I did something stupid.
    I've noticed that the C-drive has most (not all) of the apps on it and is only partitioned to give 14GB, whereas the D-drive has ten times that much. The system shows me that most of the C-drive space is used (only 15% free space remaining), so I thought it'd be a good idea to move iTunes to the D-drive before she goes crazy ripping her whole CD collection. Seems silly to not use the space!
    I've seen enough horror stories about people's mishaps with their iTunes Library to not take this idea lightly.
    How do I keep everything on the same computer, but move the app & the Lbrary to the D-drive?? BTW, I have not yet used the "Consolidate Library" feature... is that good or bad?
    Thanks in advance!
      Windows XP  

    First of all I still don't know how to post a question. There is nothing in here that asks me to do so. Therefore I can only reply to one already asked. My problem is that I followed the instructions in iTunes which tell me how to move the files from the C Drive to another location (which happens to be my D Drive). After doing that it then tells me to drag the old files into the recycle bin, however, it won't comply and tells me that the procedure can't be performed because of copywrite protections. Where do I go from here? Or at the very least, how do I post a question in this forum the normal way?

  • How to move downloaded files from download folder to other relevant folder or how to download files in relevant folders other than download folder

    how to move downloaded files from download folder to other relevant folder or how to download files in relevant folders other than download folder

    Just drag the file from the Download folder to the folder of your choice in Finder. If you are using Safari you can designate a new default download destination in Safari>Preferences>General tab, 'Save Downloads to...'. Other browsers should have a similar option in their preferences.

  • How to convert raw files from new fujifilm x-t1 ?

    how to convert raw files from new fujifilm x-t1 ?

    The work around of converting the CR2 to dng either with the dng converter or ACR 6.7 will allow working in LR and CS5 but not with the latest raw conversion engine from Adobe i.e PV 2012.
    Remember to keep a copy of the CR2 files if you wish to utilize the Canon software.

  • How to move PDF file from Spool to Application Server?

    How to move PDF file from Spool to Application Server?
    Cannot use RSTXPDFT4 because that converts OTF to PDF and the file is already PDF.
    RSTXPDFT5 doesn't work. It picks the file up and assigns it a 'text' type and outputs a 1 line txt (1kb in size) on the server with the spool number in it!
    The program which outputs the file to the spool, in the first place, uses adobe forms and outputs to a printer of type PDF.

    Hi Gemini ,
    Please refer the below links.
    [http://sap.ittoolbox.com/groups/technical-functional/sap-hr/convert-a-spool-to-pdf-and-save-on-application-server-in-background-720959]
    [http://www.sapfans.com/forums/viewtopic.php?f=13&t=325628&start=15]
    Edited by: Prasath Arivazhagan on Apr 13, 2010 4:48 PM

  • How to move all files but X to Y

    It doesn't really matter if it's in the terminal or if it's a applescript but I need to know how to:
    Move all files in a dictionary but a few named.

    Could you pleas explain more?
    If you do not understand the shell while loop, it is possible that using shell commands is a bit more dangerous than you might want to try.
    The explanation:
    ls -a | grep -v "X" | while read file
    do
        mv "$file" "Y/"
    done
    ls -a will list all the files in the current working directory (including the invisible files that start with a leading period.  Thinking about this, maybe you do not want to include -a.  You could cd /path/to/the/desired/directory as a way to set your current working directory as the directory you wish to move things from
    cd "/path/of/the/from/directory"
    ls | grep -v "X" | while read file
    do
        mv "$file" "Y/"
    done
    The ls command's output is piped (the vertical bar | ) into the grep command (general regular expression parser).  The -v option tells grep to throw away any lines (filenames) that match the regular expression "X".  So if the regular expression X matches all the files you do not want to move, the filenames send to the next pipe will be the files you wish to move.
    The while loop will read the filenames grep has selected and invoke the mv (move) command for each file selected by grep and move them to the destination directory Y
    The bigest risk is that you will execute this in the wrong directory and move the files that you need somewhere else.  OR WORSE, if "Y" is NOT a directory, and you DO NOT put a trailing / the mv could move easy file to the destination file, deleting the previous file for each file moved, so effectively deleting every file in the directory except the last one.
    This is why I said if you do not understand what is going on with the shell commands, you could do damage to your system.
    ls could have the /path/of/the/from/directory instead of using the cd command.  The grep command could be replaced with egrep that allows using alternate matching strings:
    ls /path/of/the/from/directory | egrep -v "abc.txt|def.jpg|xyz.mp3|etc..." | while read file
    do
        mv "$file" "/path/to/the/destination/directory/"  # notice the trailing slash for safety
    done
    Good luck.  I hope you do not destroy your system

  • How to recover account files to new account ??

    how to recover account files to new account ??

    srry , but i mean , its same computer macbook pro , i make a new admin  account , and i want to bring all files like : iphoto files , mail , desktop , when i start with my new account i didnt find my photos and mails
    thats all .
    thank you 

  • How to move temp file, redo log to different drive oracle 9i

    Hi ,
    I am using oracle 9i
    by mistakenly, i have instaled oracle installable on system drive i mean c: drive.I have installed teh database on D: drive.
    For tunning perfomance i would like to move the redlog files and temp files to different drive.
    Could you please explain me the step by step procedure how to do this
    Thanks
    AITS

    Very easy -
    Create a new temp tablespace with the files on the drive you want, make it the default temp tablespace for any users/schemas you have created, then drop the old temp tablespace including datafiles.
    For the redo logs, create new groups, again with the logfiles on the dirves you want them on, cycle out of the old ones with "alter system switch logfile;" then drop them.

  • SQL 2012 Cluster- How to or Steps to Move Tempdb Files from Local drive to Shared volume

    Hi..
     I did Installation of SQL Server 2012 Cluster. During this setup I installed Tempdb Files on Local drive. Now I want to move this tempdb files from local drive to Shared Drive . When I am trying to move I am getting below error.
    Does any one can help me or provide the steps to move this tempdb files from local drive to Shared Drive ?
    Msg 5184, Level 16, State 1, Line 1
    Cannot use file 'Z:\Tempdb\tempdb.mdf' for clustered server. Only formatted files on which the cluster resource of the server has a dependency can be used. Either the disk resource containing the file is not present in the cluster group or the cluster resource
    of the Sql Server does not have a dependency on it.
    Thanks 
    Regards..
    Please Mark As Answer if it is helpful. \\Aim To Inspire Rather to Teach

    Hi,
    The error message may be thrown out when you attempt to create a database on another shared cluster drive when the SQL Server resource is not dependent on that disk.
    Check if you are in the scenario which mentioned in the following article:
    How to create databases or change disk file locations on a shared cluster drive on which SQL Server was not originally installed
    http://support.microsoft.com/kb/295732/en-nz
    Here is a thread with similar issue:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/c9f80af7-5b51-4c43-a2a0-f9c7d97aa41d/sql-disk-dependency-problem-on-sql-2008-cluster-including-errors
    Hope it helps.
    Tracy Cai
    TechNet Community Support

  • How to move the OS from main drive to new ssd in opticals place

    Ok I just took out the dvd player that was non operational for 2 years . Replaced it with a new 250Gig SSD. Now I would like to boot my mac off this drive instead of the almost full 500 gig hdd. Can this be done ? If so how do I do this ? Get the OS(yosemite) from the main drive (hdd) to the new drive (ssd) which is suppose to be a lot faster on boot than a hdd , correct or not? Please advise if this is possible and if so how to migrate the OS to the ssd...
    Thanks in advance.
    Oh and forgot to ask now that i am using the Yosemite OS can I upgrade my
    mid 2009-2010 MBP 13 inch
    currently running
    2.53Ghz C2D
    8 GB 1067 MHz DDR3 ....would like to upgrade this to 16 gigs of ram (8x2) ..Is this possible?
    Running Yosemite 10.10.2 on a 500gig hdd.
    again any assistance is appreciated.
    Rogerwilco357

    You could probably use a clone utility to copy a bootable system to the new SSD,
    but not sure if you shouldn't use Carbon Copy Cloner (said to be able to copy
    the Recovery partition content, too?) instead of SuperDuper. The extra feature is
    worth checking into, to see if either or both can do this. Also to see if you have to
    pay to get the fully working version.
    With the content initially installed into the original HDD, moved over (copy/clone)
    into the SSD, then you can test it to see if it would work to run the computer. But
    you would need to have that additional partition that allows you to boot Recovery
    to use the OS X Utilities and also be able to restore a system via internet, etc.
    About the RAM upgrade. The model(s) you say you have, a Mid 2009-2010, are
    two different ones. The Mid-2009 cannot be upgraded to 16GB RAM, while the
    Mid-2010 model can use two 8GB RAM chips for 16GB upgrade. So, if you can
    correctly identify the computer you have, then the answer may be found. OR,
    you could go to crucial.com site and let it load the simple item so it can tell you
    what the upgrade RAM should be, and match your computer to their RAM part.
    Of course, their part uses an industry standard for Mac, of high quality; another
    source of quality RAM would be from OWC macsales.com.
    Both of these different questions have an answer, but will require some tedium
    to get the correct information, method, and hopefully a workable resolution...
    Good luck & happy computing!

  • Upgrading stock hard drive: how to copy lion and files to new drive

    Per above, I'm planning to replace my stock 5400rpm drive with a new Western Digital Scorpio Black drive this evening.  I want to transfer all my files, folders, and applications from the old drive to the new one.
    I have an external drive, which has my Time Machine backup.  Can I use that backup to just restore everything after physically installing the new WD? Mor is there a better way?

    I would get an enclosure in which to place your old drive. Then boot from the external drive, partition and format the new drive then clone the old drive to the new one:
    Drive Preparation
    1. Open Disk Utility in your Utilities folder.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed.
    Clone Lion using Restore Option of Disk Utility
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Select Disk Utility from the main menu then press the Continue button.
    Select the destination volume from the left side list.
    Click on the Restore tab in the DU main window.
    Check the box labeled Erase destination.
    Select the destination volume from the left side list and drag it to the Destination entry field.
    Select the source volume from the left side list and drag it to the Source entry field.
    Double-check you got it right, then click on the Restore button.
    Destination means the new drive. Source means the external old drive.

  • How to Transfer PC files to new IMac

    I just purchased a new iMac yesterday. I have my PC files backed up on an external HD. My external HD won't work/not recognized when I test it by plugging it into my Mac Book Pro. However because I have my computers set up on a network I saved my files on DVD and the music files which are too large I copied onto my PC desktop to access via the network. Isn't there an easier way to transfer files? This is very time consuming since all of my back up files on my external HD are in Zip format. I also want to make sure all of my iphone files are on there but am not sure what to look for. Yes, I purchased one on one but am not about to carry a 27" desktop down to the store (I bought it online). Help please!

    Congratulations on your new iMac. What format is your external HD formatted in, that is probably the only issue the iMac has reading it. You may be able to fix it if it's formatted in NFTS, if so you can download and install NFTS-3G and then your iMac can see the drive. From there it's a simple matter of dragging and dropping files.
    If you are still stuck you have 90 days of free AppleCare phone support, the number is in your manual and you should call for some advice on how to move your stuff. In addition if you haven't already here are some very valuable links for people switching from PC's to Mac and also on learning Mac basics.
    Switch 101
    Mac 101
    Anatomy of a Mac
    Regards,
    Roger

  • Move audio files to external drive

    I purchased an external drive to store my movies and mp3s on but I don't how to set it up  so  the iTune app can read the files on G-drive. Or what files I need to move to the G-drive.

    Hi LizRuane,
    Happy Holidays!  I'm not sure from your question if you are wanting to move your iTunes library to an external drive, or if you have various mp3 and movie files on your computer that you want to move to an external drive.  So, I'll give you some basic information for both scenarios.
    The first step is to make sure your external drive is formatted for Mac. 
    Format external drives to Mac OS Extended before using with Aperture - Apple Support
    http://support.apple.com/en-ca/HT201909
    Before you begin to use your new external hard drive, reformat it to the Mac OS Extended file system:
    Be sure your drive is attached and mounted.
    If you have already written any data to the drive, back it up before proceeding to the next step.
    In the Finder, choose Go > Utilities. The /Applications/Utilities folder will open.
    Launch Disk Utility.
    Click the icon for your external hard drive in the sidebar on the left.
    Click the Erase tab along the top of the window.
    From the Volume Format menu, choose Mac OS Extended (Journaled).
    Enter a name for the external hard drive in the Name field.
    Click the Erase button.
    If you have miscellaneous mp3 or movie files on your computer that you want to move to the external drive, you can use the Finder application.  
    OS X: Manually migrating data from another Mac - Apple Support
    http://support.apple.com/en-ca/HT202910
    Copying your Files
    Use an external drive
    You can copy your important files to an external drive to move the files between them.
    Connect the external drive to your Mac.
    In the Finder, locate the external drive. If you don't see it, choose Go > Computer to see a list of all of the drives connected to this Mac.
    In the Finder, drag any of the files you want to move to your external drive to make a copy.
    If the mp3 files and movies are already in your iTunes library, you can copy the entire library to your new external drive:
    Back up your iTunes library by copying it to an external drive - Apple Support
    http://support.apple.com/en-us/HT201625
    Hope this answers your question...
    - Judy

Maybe you are looking for