Restore asm alias datafile to new location extension dbf

Hi All,
I have to restore prod database to test database,But in prod one datafile is created with the asm alias.
Example:+DATA1/prod/datafile/data.318.799151641
Is the below statement will works when I restore in test.
set newname for datafile 5 to '+DATA1/prod/datafile/data01.dbf'
restore datafile 5;
Is there any other work around to restore the asm alias to new location with dbf extension.
Thanks

Restore completed successfully.The below command worked.
set newname for datafile '+DATA1/prod/datafile/data.318.799151641'  to '+TEST01/test/datafile/data01.dbf'
Thanks

Similar Messages

  • Using RMAN restore the database on a new host in ASM

    Hello All,
    I am trying to restore a database without using RMAN database duplicate.  I want to do set new name for datafile and rename log file for online logs and change database name at last using NID.
    here are details
    source database - APSPROD / server - X
    target database -  EMERALD / Server -Y
    Compressed backup is copied to destination server and I am trying to restore database using RMAN. Here is my init.ora file
    cat initAPSPROD1.ora
    DB_NAME=APSPROD
    compatible=11.2.0.3
    sga_target=8G
    CONTROL_FILES='+DATA_DM01/EMERALD/controlfile/cntrl01.dbf','+RECO_DM01/EMERALD/controlfile/cntrl02.dbf','+DATA_DM01/EMERALD/controlfile/cntrl03.dbf'
    DB_BLOCK_SIZE=8192
    db_file_name_convert=(+DATA_DM01/APSPROD,+DATA_DM01/EMERALD)
    log_file_name_convert=(+DATA_DM01/APSPROD,+DATA_DM01/EMERALD,+RECO_DM01/APSPROD,+RECO_DM01/EMERALD)
    DB_RECOVERY_FILE_DEST='+RECO_DM01'
    DB_RECOVERY_FILE_DEST_SIZE=5500G
    So from above you can see that control file should be restored to +DATA_DM01/EMERALD and +RECO_DM01/EMERALD path.
    Question -
    when I am trying to restore control file. It creates an ASM alias name in +DATA_DM01/EMERALD/controlfile/cntrl01.dbf',+RECO_DM01/EMERALD/controlfile/cntrl02.dbf',' and +DATA_DM01/EMERALD/controlfile/cntrl03.dbf' but It creates fully Qualified ASM Filename  under +DATA_DM01/APSPROD and +RECO_DM01/
    Here is output
    RMAN> restore controlfile from '/dbfs_direct/FS1/RMAN_APSPROD/cf_APSPROD_i4p4b62m_1_1
    2> ;
    Starting restore at 02-APR-14
    using channel ORA_DISK_1
    channel ORA_DISK_1: restoring control file
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:07
    output file name=+DATA_DM01/emerald/controlfile/cntrl01.dbf
    output file name=+RECO_DM01/emerald/controlfile/cntrl02.dbf
    output file name=+DATA_DM01/emerald/controlfile/cntrl03.dbf
    Finished restore at 02-APR-14
    output at ASM level
    SMCMD [+RECO_DM01/EMERALD/CONTROLFILE] > ls -l
    Type         Redund  Striped  Time             Sys  Name
                                                   N    cntrl02.dbf => +RECO_DM01/APSPROD/CONTROLFILE/current.17006.843826701
    ASMCMD [+RECO_DM01/EMERALD/CONTROLFILE] > cd +RECO_DM01/APSPROD/CONTROLFILE/
    ASMCMD [+RECO_DM01/APSPROD/CONTROLFILE] > ls -l
    Type         Redund  Striped  Time             Sys  Name
    CONTROLFILE  HIGH    FINE     APR 02 12:00:00  Y    current.17006.843826701
    ASMCMD [+RECO_DM01/APSPROD/CONTROLFILE] > cd +DATA_DM01
    ASMCMD [+DATA_DM01] > cd EMERALD/CONTROLFILE
    ASMCMD [+DATA_DM01/EMERALD/CONTROLFILE] > ls -l
    Type         Redund  Striped  Time             Sys  Name
                                                   N    cntrl01.dbf => +DATA_DM01/APSPROD/CONTROLFILE/current.3678.843826699
                                                   N    cntrl03.dbf => +DATA_DM01/APSPROD/CONTROLFILE/current.3679.843826701
    ASMCMD [+DATA_DM01/EMERALD/CONTROLFILE] > cd +DATA_DM01/APSPROD/CONTROLFILE
    ASMCMD [+DATA_DM01/APSPROD/CONTROLFILE] > ls -l
    Type         Redund  Striped  Time             Sys  Name
    CONTROLFILE  HIGH    FINE     APR 02 12:00:00  Y    current.3678.843826699
    CONTROLFILE  HIGH    FINE     APR 02 12:00:00  Y    current.3679.843826701
    How can I ensure that every thing gets created in +DATA_DM01/EMERALD/ or [+RECO_DM01/EMERALD??  similary for datafile restore even I have used set new file name ASM fully quilified OMF  datafile gets created under +DATA_DM01/APSPROD/
    ASMCMD [+DATA_DM01/EMERALD/DATAFILE]
    N    undots5_01.dbf => +DATA_DM01/APSPROD/DATAFILE/APPS_UNDOTS5.3669.843818269
    Thanks
    PV

    Even If I explicitly say
    rman target / nocatalog
    RMAN> restore controlfile  to '+DATA_DM01/emerald/controlfile/cntrl01.dbf' from '/dbfs_direct/FS1/RMAN_APSPROD/cf_APSPROD_i4p4b62m_1_1';
    Starting restore at 02-APR-14
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=64 device type=DISK
    channel ORA_DISK_1: restoring control file
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:03
    Finished restore at 02-APR-14
    It create as alias name  +DATA_DM01/emerald/controlfile/cntrl01.dbf' pointing to +DATA_DM01/APSPROD/CONTROLFILE/
    ASMCMD [+DATA_DM01/EMERALD/CONTROLFILE] > ls -l
    Type         Redund  Striped  Time             Sys  Name
                                                   N    cntrl01.dbf => +DATA_DM01/APSPROD/CONTROLFILE/current.3679.843828927
    ASMCMD [+DATA_DM01/EMERALD/CONTROLFILE] > cd +DATA_DM01/APSPROD
    ASMCMD [+DATA_DM01/APSPROD] > cd CONTROLFILE
    ASMCMD [+DATA_DM01/APSPROD/CONTROLFILE] > ls -l
    Type         Redund  Striped  Time             Sys  Name
    CONTROLFILE  HIGH    FINE     APR 02 12:00:00  Y    current.3679.843828927
    ASMCMD [+DATA_DM01/APSPROD/CONTROLFILE] >

  • Restoring from backup to new location + not wanting files renamed

    Hi there - I am a newbie to this forum.
    I have a Win XP machine that recently needed to have the hard drive wiped and the OS re-installed. Fortunately I had a recent backup of all my data so I'm in a good starting position for a restore. However I have some questions as the re-install of the OS has had a change in profile name.
    Before my machine was wiped, I had a "Daniel" profile and so my "iTunes Media folder location" was set to C:\Documents and Settings\Daniel\My Documents\My Music.
    After my PC was rebuilt, a new profile was created called "dnl". iTunes has been re-installed (version 10.1.2.17). The first time I launched iTunes the "iTunes Media folder location" was set to C:\Documents and Settings\dnl\My Documents\My Music. I did NOT choose to have iTunes browse/load my files and so currently iTunes shows no files or playlists.
    I have recreated the C:\Documents and Settings\Daniel\My Documents\My Music folder from my backup so all the music files and the previous libraries are presently in this location. However even if I change the "iTunes Media folder location" within iTunes to point to the "old" location, it doesn’t find the files or libraries.
    I have tried deleting the following files from C:\Documents and Settings\dnl\My Documents\My Music\iTunes:
    iTunes Library Extras.itdb
    iTunes Library Genius.itdb
    iTunes Library.itl
    iTunes Music Library.xml
    I did this assuming that the next time iTunes was launched, it would refer to the old location (as specified as my "iTunes Media folder location"), find the old library files there and use them. However it seems to ignore them and simply re-creates the files above in the location I deleted them from.
    So…I am unclear as to the best strategy to have iTunes point back to the old location to find the music files and retain all the playlists I had.
    I found this thread: http://support.apple.com/kb/ht1364. It mentions a method that will find all the files in the old location and move them to the new location, retaining playlists, artwork etc. Once the data has been copied, it advises to delete the files from the original location.
    However I see that it mentions checking the ‘Keep iTunes Media folder organized’ option. From reading other threads I know this to be a source of one very irritating problem – it renames all the file names. I have specifically ripped my music using software other than iTunes for the express purpose of being able to tag the filenames with more specific info than iTunes would. I like the files to named <artist>-<album>-<track no>-<track title>.<file extension> and am not a fan of the very basic filenames that iTunes assigns.
    So…I want to have iTunes simply point back to the old location and not do any file renaming. I am happy enough to have iTunes simply point to a location that isn’t technically part of my current profile. I don’t have a desperate need for the files to be moved to the dnl profile.
    So…I am guessing there has to be some other file (or registry setting?) that knows where best to point to? Can this modified?
    I would be appreciative of any assistance.
    Thanks!

    Hi Daniel, welcome to Apple Discussions.
    The default location for the iTunes library folder is <Profile><Music>iTunes with the media folder at *<Profile>\<Music>\iTunes\iTunes Media*. For XP the <Music> folder is My Documents\My Music.
    When iTunes starts up it looks for a set of library files in the last location it used. If that location is also the default location and it can't find the library files it assumes it has just been installed and creates a new set.
    Changing the location of the *iTunes Media* folder in preferences does not change which set of library files it opens, nor will it automatically detect all the media in that location.
    Ideally you should restore the folder iTunes and all its subfolders from your backup into *C:\Documents and Settings\dnl\My Documents\My Music* and start iTunes. All should work perfectly and, as far as iTunes is concerned, you will be using the same library as you used to. Any iDevices should sync without problems.
    If you media was not is the usual locations or you are unable to restore the entire iTunes folder then things become more complicated. Post back if you still have trouble and I will try to go into more detail.
    tt2

  • Moving datafiles to a new location: change not flushed

    Hi all,
    I am using Oracle 10g release 10.2.0.1.0 patched 10.2.0.3.0
    I need to move all datafiles of the DB from a current location to a new one. Here are the steps I follow (I use SPFILE):
    1-Shutdown the DB
    2-Move all .DBF .LOG .CTL files to the new location
    3-startup mount
    4-alter database rename file 'old location' to 'new location' ; ... for all .DBF and .LOG files
    5-alter system set control_file=<list of CTL files in new location>
    6-alter system set core_dump_dest=<new empty location for cdump>
    7-alter system set user_dump_dest=<new empty location for udump>
    8-alter system set background_dump_dest=<new empty location for bdump>
    9-alter database open
    From this point, if I use select * from v$logfile or select name from v$datafile or show parameter, I see that the DB is using all files in the new location. That's correct.
    My problem is: if now, I issue a shutdown followed by a startup, the DB will then show the old location for files as if my updates (steps 1 to 9) were not flushed/commited.
    Is there a kind of commit to have my changes taken into account ? How may I resolve my problem ?
    Thanks for any help.

    This does not work:
    1-Shutdown the DB
    2-startup mount
    3-alter database rename file 'old location' to 'new location' ; ... for all .DBF and .LOG files
    4-alter system set control_file=<list of CTL files in new location>
    5-alter system set core_dump_dest=<new empty location for cdump>
    6-alter system set user_dump_dest=<new empty location for udump>
    7-alter system set background_dump_dest=<new empty location for bdump>
    (So changes are now in the old location)
    8-shutdown
    8-copy all .DBF .LOG .CTL files to the new location
    9-startup
    ... because when the alter database statement is issued, oracle does not find the file in 'new location'. So the correct sequence with the spfile is:
    1-Shutdown the DB
    2-copy all .DBF .LOG to the new location. Do not copy the .CTL files at this step.
    3-startup mount
    3-alter database rename file 'old location' to 'new location' ; ... for all .DBF and .LOG files
    (Oracle finds them in the new location)
    4-alter system set control_file=<list of CTL files in new location> scope=spfile
    5-alter system set core_dump_dest=<new empty location for cdump> scope=spfile
    6-alter system set user_dump_dest=<new empty location for udump> scope=spfile
    7-alter system set background_dump_dest=<new empty location for bdump> scope=spfile
    (CTL are still in old location but contain information about the new location)
    8-shutdown
    9-copy all .CTL files to the new location
    10-startup
    Many thanks to you all for your help.

  • How Can I Restore database from datafiles, control,redolog  and  parameter

    Hi there,
    The scenario is Database Server is down, meaning that OS has been corrupted, data files and other files can be retrieved from the hard drive. Database is not is archivelog mode, No full backup of the database is available. Only Full DMP Backup is there. I have imported the full dmp backup but is seems like it could not import all of it. Specially some of the Packages and triggers are missing or invalid(does not compile successfully). May be dump backup has been corrupted.
    Now Can I restore all data with other objects(views,packages,triggers)in different server and different database if I can copy all datafiles, controlfiles, redolog and other parameter files? Please reply with solutions
    Hasan Al Mamun
    Programmer
    Bangladesh Bank.
    Dhaka, Bangladesh

    pgoel wrote:
    Yes, Create same directory structure on new server and copy all datafiles, controlfiles, redolog and other parameter files at new location and re-start the database again.OP has stated that db in not in archivelog mode and no full backup has been taken. If the database crashed while open, recovery using what you have described is impossible AFAIK (unless Consulting gets involved).
    Srini

  • I have been storing my Aperture and IMovie Libraries on an external hard drive that recently died.  Fortunately I've been using Time Machine to back up to a 2nd external drive.  How do I restore my libraries to a new external hard drive?

    I have been storing my Aperture and IMovie Libraries on an external hard drive that recently died.  Fortunately I've been using Time Machine to back up to a 2nd external drive.  How do I restore my libraries to a new external hard drive?

    This is a tricky one.
    Open up Time Machine and go back to a date using the timeline on the right side of the window when you know the drive was working and was backing up as part of Time Machine backups.
    Click on the name of your Mac under the Devices heading on the left side of the window in Time Machine, and if things are working correctly you will see Macintosh HD (or whatever you have named it) and the name of the external hard drive that was backing up in the past.
    Right-Click on the name of the external hard drive and then click on "Restore (name of drive) to....."  You may be asked for your adminstrator password at this point.
    It might be easier to restore the drive contents to your desktop if you have room on your Mac, and then copy things over to the new external drive where you want to store the Aperture and iMovie Libraries.
    Once the libraries have been moved over the new external hard drive, you will likely need to "point" Aperture and iMovie to the location of the libraries on the new external hard drive.

  • I changed the name of my imac to reflect it's new location, but inadvertently, it unchecked the box to allow the administrative user account to administer the machine.  I am trying to reinstall with a time machine backup and am unable

    I need a little help.  I changed the name of my imac to reflect it's new location, but inadvertently, when I saved the change, the system unchecked the "allow this account to administer the computer" so now I can't make any changes....  I tried to reinstall the OS, but it wants me to go online while installing and use my apple id, but this is not my iMAC, so I don't want to use my account.  Also, I am working in a building that will not allow me network access until I authenticate, which can't be done unless I open the browser first.  So I'm stuck at this point.  I can't even restore a time machine backup that I have because it gives the error message that the system encountered an error.  Any suggestions?

    Ask the admin/owner to sign in. 

  • Images I move from one folder into another are disappearing, at first it was occurring immediately if I did not copy and paste the images. Today however I found out that images I had been using for days just up and vanished from their new location.

    Images I move from one folder into another are disappearing, at first it was occurring immediately and only if I did not copy and paste the images. Today however I found out that images I had been using for days just up and vanished from their new location. A few of these images had copies in another folder that remained and the ones I couldn't find may or may not have ever had copies. I had backed up my system with time machine recently as well, so I went into the backup to retreive the lost images. When I searched and found the backup copies I got the error "the file alias cannot be opened because the original cannot be located". The crazy thing is that the images that remained on my computer did not give me the same error and opened like they should.
    In short images that I am creating, saving, and using are disapearing so epically that even time machine versions are affected when retrieval is attempted. Any suggestions as to what I could be doing wrong without realizing it? Or perhaps other people have had similar bugs that are software related and have a solution?

    Hi Kevin,
    I understand what you tried to do but it doesn't work that way. Swapping drive names will just mess things up.
    You should be able to reconnect the files though: in the Locate Referenced Files dialog make sure you click the Show Reconnect Options button — this will give you access to all the connected drives. Locate one of the files and hit Reconnect All. Should do the trick.
    Best

  • I keep getting this pop up. This web page is being redirected to a new location. Would you like to resend the form data you have typed to the new location? Can you please help me figure out how to get this to stop!

    This pop up has been occurring about once a minute when I am on certain sites.
    This web page is being redirected to a new location. Would you like to resend the form data you have typed to the new location?
    How do I get it to stop?

    -> Tap ALT key or press F10 to show the Menu Bar
    -> go to Help Menu -> select "Restart with Add-ons Disabled"
    Firefox will close then it will open up with just basic Firefox. Now do this:
    -> Update ALL your Firefox Plug-ins https://www.mozilla.com/en-US/plugincheck/
    -> go to View Menu -> Toolbars -> unselect All Unwanted toolbars
    -> go Tools Menu -> Clear Recent History ->'' Time range to clear: '''select EVERYTHING''''' -> click Details (small arrow) button -> place Checkmarks on '''Cookies & Cache''' -> click "Clear Now"
    -> go to Tools Menu -> Options -> Content -> place Checkmarks on:
    1) Block Pop-up windows 2) Load images automatically 3) Enable JavaScript
    -> go to Tools Menu -> Options -> Privacy -> History section -> Firefox will: select "Use custom settings for history" -> REMOVE Checkmark from "Permanent Private Browsing mode" -> place CHECKMARKS on:
    1) Remember my Browsing History 2) Remember Download History 3) Remember Search History 4) Accept Cookies from sites -> select "Exceptions..." button -> Click "Remove All Sites" at the bottom of "Exception - Cookies" window
    4a) Accept Third-party Cookies -> under "Keep Until" select "They Expire"
    -> go to Tools Menu -> Options -> Security -> place Checkmarks on:
    1) Warn me when sites try to install add-ons 2) Block reported attack sites 3) Block reported web forgeries 4) Remember Passwords for sites
    -> Click OK on Options window
    -> click the Favicon (small drop down menu icon) on Firefox SearchBar (its position is on the Right side of the Address Bar) -> click "Manage Search Engines" -> select all Unwanted Search Engines and click Remove -> click OK
    -> go to Tools Menu -> Add-ons -> Extensions section -> REMOVE All Unwanted/Suspicious Extensions (Add-ons) -> Restart Firefox
    You can enable your Known & Trustworthy Add-ons later. Check and tell if its working.

  • Option to "copy photos to a new location" not available

    LR 2.7, Mac
    I regularly use the import from catalog command to merge catalogs. Most of the time I want to move the images, so I usually select the option to “copy photos to a new location” going e.g. from laptop to desktop.
    Occasionally though that option does not appear on the drop-down menu. If it was selected previously upon importing from a catalog, the menu will show a blank entry. If one goes ahead with it looking like that, the computer will hang until one cancels the operation; no images will have been copied.
    It just happened again this morning. I had started up the laptop in target disk mode, but LR woudn't let me select to copy the new images. A copy of this particular catalog on an ext. HD wouldn't work either. A copy on any of the internal HDs did work fine though. (I've ruled out permission problems.)
    As a workaround I then usually export the catalog from the laptop onto one of the internal HDs and import the catalog from there.
    What puzzles me is that most of the time it works fine and there doesn't seem to be any pattern to it.
    Anyone seeing this or having any ideas?

    You can reset the browser.newtab.url pref on the <b>about:config</b> page via the right-click context menu to the default value.
    You can open the <b>about:config</b> page via the location bar and you can accept the warning and click "I'll be careful" to continue
    You can use the SearchReset extension to reset some preferences to the default values.
    *https://addons.mozilla.org/firefox/addon/searchreset/
    Note that the SearchReset extension only runs once and then uninstalls automatically, so it won't show on the "Firefox > Add-ons" page (about:addons).

  • Restore - filename for datafile is missing in the control file

    I am practicing RMAN recovery procedures and I encountered a problem that I do not know how to solve.
    1) I took a hot backup of my test database.
    2) Create tablespace TS_DATA_TEMP
    3) Deleted tablespace TS_DATA which had 2 datafiles
    4) Created tablespace TS_DATA with 1 datafile
    5) shutdown database
    6) logged into RMAN in nomount
    7) restore controlfile from autobackup;
    8) alter database mount;
    9) restore database;
    RMAN> restore database;
    Starting restore at 22-AUG-08
    using channel ORA_DISK_1
    the filename for datafile 5 is missing in the control file
    skipping datafile 1; already restored to file /u02/oradata/EDM91/system01.dbf
    skipping datafile 2; already restored to file /u02/oradata/EDM91/undotbs01.dbf
    skipping datafile 6; already restored to file /u02/oradata/EDM91/index
    skipping datafile 3; already restored to file /u02/oradata/EDM91/sysaux01.dbf
    skipping datafile 7; already restored to file /u03/oradata/EDM91/TS_INDEX01.dbf
    skipping datafile 9; already restored to file /u03/oradata/EDM91/TS_LOB01.dbf
    skipping datafile 4; already restored to file /u02/oradata/EDM91/users01.dbf
    restore not done; all files readonly, offline, or already restored
    Finished restore at 22-AUG-08
    10) tried to recover
    Starting recover at 22-AUG-08
    using channel ORA_DISK_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of recover command at 08/22/2008 15:04:22
    RMAN-06094: datafile 5 must be restored
    SQL> select name from v$datafile where file#=5;
    NAME
    /u04/oradata/EDM91/TS_DATA.dbf
    12) alter database backup controlfile to trace
    DATAFILE
    '/u02/oradata/EDM91/system01.dbf',
    '/u02/oradata/EDM91/undotbs01.dbf',
    '/u02/oradata/EDM91/sysaux01.dbf',
    '/u02/oradata/EDM91/users01.dbf',
    '/u04/oradata/EDM91/TS_DATA.dbf',
    '/u02/oradata/EDM91/index',
    '/u03/oradata/EDM91/TS_INDEX01.dbf',
    '/u04/oradata/EDM91/TS_DATA02.dbf',
    '/u03/oradata/EDM91/TS_LOB01.dbf'
    CHARACTER SET UTF8
    So i'm not sure what the problem is. Datafile TS_DATA.dbf is located in the control file but i'm getting the error: the filename for datafile 5 is missing in the control file.
    Suggestions on what's wrong with the control file?

    I found my mistake; a newbie error.
    I did not know I needed to include in my restore command the 'until' option when doing incomplete recovery. I only included the 'until' option in the recover command:
    original command
    restore database;
    recover database until sequence =123;
    should be
    restore database until sequence = 123;
    recover database until sequence =123;
    I usually run the command using a RUN block with a SET UNTIL SEQUENCE but this case I used the single commands separately.
    RUN
    +{+
    SET UNTIL sequence 123;
    RESTORE DATABASE;
    RECOVER DATABASE;
    +}+

  • ITunes Media And Removable Storage Issue - Can't Get iTunes to recognize the new location.  Any tips?

    I've had my iTunes media on an external HDD for years.  Let's call this drive B.
    My iTunes library and xml file reside on my Mac HDD.
    I decided that I wanted to buy a bigger HDD and move all of the media to it.  Last night I copied all of the media files to the new HDD (let's call it P) from B.  I also copied the iTunes folder from my Mac HDD to P and directed iTunes to look for the media in the Advanced settings.
    Of course when I launched iTunes after all the hours it took to do all of this copying, it could not find any of the media on P without asking whether I wanted to locate it - and the library was full of explanation points.  When I examined the info on a few songs, it was showing that all of the media was still pointing to B as the location with the complete directory structure pointing to that old location - and not to the new drive.
    I tried creating a new library and still could not get the library to recognize that all of the media was now on P instead of B.
    I remember when I did something similar years ago, I just changed the location in iTunes in the Advanced settings and iTunes realized that all of the music was on B instead of its prior location.
    I finally gave up and restored things back to the original settings with all the media on B.
    I did a lot of searches and followed everything explicitly -- which basically meant copying the iTunes folder (with the library and xml files within it), and the media to the new drive and then telling iTunes where the new location was.  To me it shouldn't be any simpler than that to get iTunes to recognize a new location for all the music.
    Can anyone offer a more rudimentary breakdown of things for me to try so that I can get iTunes to acknowledge that all the media is on P and not B?
    P is larger than B  for those of you who are wondering why I'm trying to get this to work. And P also will be a drive that dedicated to iTunes and media and nothing else.  Unlike B, which has all kinds of assorted files on it along with my music, etc.
    And yes, each time I made changes  - I restarted iTunes

    Thank you both for the information. 
    It sounds like I did something out of sequence based upon reading the split library information, thinking I was doing the right thing.
    This is exactly what I did
    I copied the folder with all the media from B to P
    I copied the entire iTunes folder from the Mac HDD to P
    I option click started iTunes and connected to the library file and when iTunes opened it was OK - and looked like it normally does when I was still using B as the storage
    I connected to P
    When it didn't work, I tried to create a new library and did the same exact things.
    So let me ask this:
    Should I hook up P again and delete everything off of it except for the folders that have the media in them and then copy the current iTunes folder over onto P again - and then copy all of the media from it's current location into the iTunes Media folder inside of the iTunes folder I copy over from the Mac and then try to connect and consolidate everything?
    I assume that if I move everything from the current media folder into the iTunes/iTunes Media/ that I copy over everything will be under the iTunes umbrella as if things were never split?
    I don't seem to recall it being this difficult when I originally set up things on B, as it was a split situation then too, if I'm not mistaken.
    I really appreciate the instruction.  And honestly it does make sense to have everything in one location to prevent problems like this from happening  - it would just be great if iTunes had a feature that moved and/or copied the necessary files to the new location to prevent splitting links

  • Restoring backed up files to new laptop hard drive

    I recently upgraded from 10.3 to 10.5 (skipping Tiger), all the while backing up to an external Maxtor drive. Then my hard drive started dying. So I bought a new hard drive and put it in an external 800 FW enclosure. I formatted the new drive and installed 10.5, by-passing the dying drive but using the install CD. Then I installed the new drive into my laptop. Now I want to copy the backed up files on my Maxtor HD onto the new hard drive. I've spoken to an Apple guy, couldn't help. Went to Genius Bar, got wrong advice. Went to Maxtor web site, couldn't find answer. I have used the application "Backup" that came with 10.3 while doing backups; continued using this after upgrading to 10.5. Have not used Time Machine! I was able to copy and paste from the old drive which I put into the external enclosure, but couldn't read all the files. Home folder wasn't even listed. All my iTunes library is on Maxtor, but can't get to it. Need help on this, please!

    I believe that Apple's "Backup" application uses a special storage scheme that normaly requires Apple Backup to restore the backup items. There may be a problem, though, because your screenshot shows the backup items as ordinary folders. I don't use Backup any more, but I have some old storage items made with Backup 3, and my full and incremental backup items look like single files in Finder. They actually are packages, "special" folders with the same internal structure as the one you posted, but which look like single files in Finder. Maybe you used an earlier version of Backup that creates folders instead of package files.
    I don't know if Backup 3 will be able to open and use the "normal-looking" folders that you do have, but it's worth a try. If you don't have Backup 3 on your current Leopard installation, you can download it at
    http://support.apple.com/kb/DL184
    You need a MobileMe subscription to make new backups, but I think you can restore old backups even without a subscription. There is a Help menu in Backup 3 which includes instructions on how to restore things when you no longer have the backup plan used to make the backups. You would normally use Backup 3 to open the most recent IncrementalBackup file if there is one, otherwise the FullBackup file. In your situation I would try to open the folder with those names, not the folder contents.
    If this doesn't work try double-clicking the "backup.sparseimage" files in the Folder>Contents>Contents subfolders. If the disk image mounts, look inside the mounted disk for your stuff and drag the contents back to your internal HD. Don't try to restore "settings", just datafiles.

  • Re-connecting Elements 9 to a New Location

    I have copied all my images - around 500Gb - to a new (larger) external Hard Drive.  The transfer took about 16 hours.
    Can anyone advise how I move/reconnect the Adobe Elements catalog to point to the new location?
    The answer I'd not like to hear is that I need to re-copy these source media files through instructions within Elements 9. I can't believe it's  above a smart software developer's ability or insight to predict that would be a common occurrence for Elements users and to have made it an easy process to ‘re-point’ their product to the new content location.
    Thanks
    Charles

    Charles,
    You had already made things clear in your other posts.
    As you say, you are starting with a very sophisticated tree organization, with deliberate file name duplications for instance, with a lot of external disks : I have never seen anything like this before... no I am wrong : its just a little more that what I did before starting to use Elements ten years ago
    Now its obvious to me that I have given you too much info, too many links and that has not helped you to understand how to solve your problems. Most of your objections in your last post show that you have missed the answers already given.
    Before applying the best methods to reconnect, there are facts you have to understand.
    - any database organizing system (DAM) like the Organizer, Lightroom or more sophisticated ones, provide ways to insure easy retrieval and grouping of media, sorting and rating, keeping track of originals and versions. That's also your goal.
    - you have created your own system (very similar to my own one, 10 years ago). The question is : do you consider it as the ultimate goal, or simply a means to achieve the above general goal ?
    - You want to keep your own organization : it's quite possible to do so even if it is redundant, and totally opposed to any database system philosophy. For instance, you understand that your Organizer catalog only contains paths to your selectec working files and totally ignores others. The builtin tools to move, rename, delete or backup/restore ignore other files. You don't want to use them precisely because you want to control all files. All those database systems can solve the final organization goals : they can deal with hundred of thousands pictures, keeping track of originals as well as version sets, they nearly completely free you of the task of thinking about folders. You simply have to use them, and trust them.
    - Do you really think that there is a market to develop such personal solutions ? As I said before it is possible to keep your organization together with the standard one, but that means only useless complexity. Even if the developers of Elements are not the smartest, they are working with the same choice as other elaborate systems like Lightroom : trust the software and understand and use it.
    - "Buyers beware..." There, you are right. There are other kinds of tools, and it should be obvious that many users cannot accept to trust a software and stop thinking about folders : they are right in thinking the Organizer is not the right tool for them.
    charlesjennings wrote:
    I CAN'T BELIEVE that the PSE developers didn't forsee the following needs:
    a. that users would want to move images from one disk to another at times as they ran out of space or upgraded
    b. that users may not want PSE to manage ALL their images, but just a sub-set (the better ones, 'working' files etc.)
    c. that Adobe hasn't produced either guidance or tools to make migration straightforward.
    - You are also partly right here : the Organizer was first introduced at a time when using external disks was not common. But you are wrong in that : the way to change disk or upgrade hardware or software version has been widely covered (see my links and Adobe's help) and there are safe ways included, especially the backup and restore way, the moving files way and ways of reconnecting (even if those are not as powerful as in Lightroom). Then managing only a subset of pictures has never been a problem, except if you insist on your sophisticated tree arborescence with duplicate names.
    Now, to solve your problem .:
    First did you read and can you follow the instructions in the 2nd link (quickly reconnecting...) I gave you ?
    There would be two other ways to do the job, but the fact that you have already reconnected some files might be a problem.
    - First : simply do the standard migrating way in the Organizer : backup your catalog to one of your external disks, and simply restore to the custom location keeping the same tree organization on your new drive. That's time consuming, but simple and safe and there is no risk for your original master files : the catalogued files will be restored in the right subfolders, totally ignoring duplicate file names.
    - The last resort... I won't give it here because it requires direct changes in the sqlite database contained in your catalog. I am sure that for one person that might help, I would cause severe troubles for dozens of others... I also think that if smart developers wanted to implement this catalog update following a drive change, they would meet many problems like yours because of seemingly identical situations hiding custom differences in personal organization.

  • I keep getting this pop-up every few minutes: "This web page is being redirected to a new location. Would you like to resend the form data you have typed to the new location?" I'm sick of it!!! How can I get rid of it???

    Duplicate of [/questions/860865]
    Question
    I keep getting this pop-up every few minutes: "This web page is being redirected to a new location. Would you like to resend the form data you have typed to the new location?" I'm sick of it!!! How can I get rid of it???

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Do a malware check with some malware scanning programs.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br />
    <br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also:
    * "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

Maybe you are looking for

  • Can't publish-project too long

    I will give more background later, but to put my issue shortly, I will give the following info: I have one video clip that I have trimmed (by taking a bit from the beginning and a bit from the end).  It is almost 2 hours long (1:56 to be exact). So,

  • SQL Server Reporting services. failed to establish connection with project server. verify the url is correct.

    Dear All, I'm working on reporting of Project Server 2010, while configuring SQL SERVER REPORTING SERVICES faced issue after two complete days of troubleshooting along with this gone through plenty of forums, unable to figure out any solution. So fin

  • How to go to different jsp pages based on different selection?

    I put SELECT and OPTION in the page. I want to go to different jsp           pages when different OPTION been selected, but there is only one URL           in the action attribute. How can I do it ?           

  • Devices not shown on sidebar of iMac ie iPod ?

    Hi I am going crazy since the update of the software IOS6 onto my ipod. Now my imac do not shaow the device of the ipod [or even the iphone] on the sidebar. So I can't even drag songs from Imac to my ipod! Can anyone help please. The old software wor

  • Printing in white ink.

    I know you can't print white using black and color cartridges, I get that, so let's not rehash what everyone already knows... the question is quite simple - has HP ever made a cartridge with WHITE ink to replace black ink cartridges? I'd like to prin