How do I transfer data from one time capsule to new time capsule when TC backs up an iMac and Power Book

How do I transfer data from one time capsule to new time capsule when TC backs up an iMac and MacBookPro

It is generally better to leave the old backups and start again.. unless there is something you particularly need.
But if you desperately want all the old backups you have to copy the sparse bundles.. this will take very long time as it must copy via the computer..
http://pondini.org/TM/18.html
Take particular note of the initial comments.. ie before you read how to do it.. don't do it.

Similar Messages

  • How do I transfer data from one iPhone to another?

    How do I transfer data from one iPhone to another?

    If your old device is an Apple using iOS 5 or later, and you have an iCloud account, you can transfer all your saved messages, email accounts, photos, notes, and other personal settings to your new iPhone.
    Here's how...
    Connect your old Apple device to WiFi and to a power source.
    Back it up to iCloud by going to Settings > iCloud > Storage & Backup and toggling iCloud Backup on. The time it takes to ba ckup depends on how much data you have and on the speed of your internet connection.
    iCloud backs up your device once a day. If it needs backing up before you transfer to your new iPhone 5, tap Back Up Now in Settings > iCloud > Storage & Backup. Do not start transferring before the backup is finished.
    Turn on your new iPhone and complete the setup by selecting your language and country, and choose whether to enable Location Services. When prompted, choose your WiFi network.
    When prompted to set up, choose Restore from iCloud Backup, tap Next, and enter your Apple ID and password.
    Select the backup of your old device and tap Restore. Wait until the device has finished restoring from the backup.
    When the restore process is complete, your iPhone will restart and be ready to use.
    Connect your iPhone 5 to iTunes to sync data not contained in the backup (such as music, videos, apps, and so on). You can choose the data that are synced by clicking the syncing tabs in iTunes.

  • How do i transfer data from one internal tabe to another.

    Hi All,
             How do i transfer data from one internal tabe to another.
             Can i do it ebven if he tables are different in structure.
    Please Advice.
    Thanks in advance.

    Hi Saket Tiwari,
    I hope the earlier post by kashyap is good enough an answer. anywas in addition to it let me give a detailed
    explanation of how you can populate an internal table.
    1) Append data line by line.
         Syntax :  APPEND [<wa> TO / INITIAL LINE TO] <itab>.
    this appends new line to internal table <itab>.
    2) Using COLLECT statement.
                 COLLECT is another form of statement used for populating the internal tables.  Generally COLLECT is used while inserting lines into an internal table with unique standard key. The syntax for COLLECT statement is as shown
         Syntax : COLLECT [<wa> INTO] <itab>.
    3) Using INSERT statement
         Syntax  INSERT [<wa> INTO / INITIAL LINE INTO] <itab> [index <idx>].
    INSERT statement adds a line/work area to the internal table. You can specify the position at which the new line is to be added by using the INDEX clause with the INSERT statement.
    Now coming to your request..
    To append part or all of an internal table
         Syntax
                  APPEND LINES OF <itab1> [FROM <n1>] [TO <n2>] TO <itab2>.
    *     Note:
    Without the FROM and TO options, this statement appends the entire table <itab1> to <itab2>.*
    b) To insert part or all of an internal table into another internal table
         Syntax
              INSERT LINES OF <itab1> [FROM <n1>] [TO <n2>]
              INTO <itab2> [INDEX <idx>].
    c) Using Move statement.
    To copy entire contents of one table into another in one execution
         Syntax MOVE  <itab1> To <itab2>.
                   OR
              <itab1> = <itab2>.
    but u hav to be careful because he contents of itab2 will eb overwritten on the execution of this statement.
    These copy the contents of ITAB1 to ITAB2. Incase of internal tables with header line we have to use [] inorder to distinguish from work area. So, to copy contents of internal tables with header line  the syntax becomes,
    ITAB1[] = ITAB2[].
    Coming to the letter part of your question, Yes, we can copy values between tables having different structures.
    for this we use    
                                MOVE-CORRESPONDING <itab1> TO <itab2>
        this executes the statement for their header lines. Searches for the sub-fields which occur both in itab1 and itab2 and then generates, for all relevant field pairs which correspond to the
            sub-fields ni , statements of the form MOVE itab1-ni TO itab2-ni. The other fields remain unchanged.
    I hope the information provided has been of your help.
    Reward if useful.
    Regards,
    Jose

  • How do I transfer data from one exterior harddrive to another?

    How do I transfer data from one exterior harddrive to another when they are both connected to our Imac Desktop?

    Depends what you want to transfer...
    A few more Details about what you are trying to achieve would be good.

  • How can you transfer data from one ipod to another ?

    How can you transfer data from one ipod to another ipod ?

    The geniusbar told me what to do, I understood but there is still a problem for me >:/ It's not showing up though. Like "device."  Nothing is happening, and I tried as soon as I got home. Then after half an hour, then an hour, then 3 hours. My problem is that it's not showing up! It's stuck in recovery mode! There's still like 25% battery. So I have no idea why.

  • How can I transfer contacts from one iPad to a new iPad with different iCloud addresses?

    how can I transfer contacts from one iPad to a new iPad with different iCloud addresses?

    One way would be to e-mail them from yourself to yourself. That would totally avoid the different ID issue.

  • How do you transfer data from old iPad to a new iPad?

    How do you transfer data from old iPad to a new iPad?

    iOS- Transferring information from your current iPhone, iPad, or iPod touch to a new device
    How to Transfer Everything from an Old iPad to New iPad
    iTunes Store- Transferring purchases from iOS device or iPod to a computer

  • Transfer data from one database to another without identities but keep the relation b/w PK and Foreign key

    Hi,
    I need to transfer data from one database to another database (both are identical databases). 
    1. Not transferring identity columns (primary keys). the destination table might have the same key.
    2. keep the PK's and FK's relation b/w parent and child table
    3. I have 4 levels 
    Example: tableA (col1 int identity(1,1) , col2, col3)
    tableB (col1 int identity(1,1) ,
    col2 , col3) -- col2 has the foreign key relation with tableA.col1
    tableC (col1 int identity(1,1) ,
    col2, col3) -- col2  has the foreign key relation with tableB.col1
    tableD (col1 int identity(1,1) , col2, col3) -- col2  has the foreign key relation with tableC.col1
    please advise me.
    Thanks in advance

    Try the below:
    /********************************SAMPLE TARGET***************************************************************/
    Use MSDNSamples
    create table TableA(LevelValueId int identity(1,1) primary key, name varchar(100))
    Insert into TableA(name) Select 'R1'
    Insert into TableA(name) Select 'R2'
    create Table TableB(ChildId int identity(100,1),name varchar(100), LevelValueID int references TableA(LevelValueId))
    Insert into TableB(name,LevelValueID) Select 'Childname1',1
    /********************************SAMPLE TARGET***************************************************************/
    /********************************SAMPLE SOURCE***************************************************************/
    Use Sample
    create table TableA(LevelValueId int identity(1,1) primary key, name varchar(100))
    Insert into TableA(name) Select 'C1'
    Insert into TableA(name) Select 'C2'
    create Table TableB(ChildId int identity(100,1),name varchar(100), LevelValueID int references TableA(LevelValueId))
    Insert into TableB(name,LevelValueID) Select 'Kidname1',1
    /********************************SAMPLE SOURCE***************************************************************/
    USe MSDNSamples
    /********************************MIGRATION INTERMEDIATE TABLE***************************************************************/
    --Migration table
    Create table Mg_TableA(LevelValueId int, NewValueId int)
    /********************************MIGRATION INTERMEDIATE TABLE***************************************************************/
    /********************************ACTUAL MIGRATION FOR MASTER TABLE***************************************************************/
    MERGE INTO TableA
    USING sample.dbo.TableA AS tv
    ON 1 = 0
    WHEN NOT MATCHED THEN
    INSERT(name) Values(tv.name)
    Output tv.levelValueId ,inserted.LevelValueid INTO
    Mg_TableA;
    /********************************ACTUAL MIGRATION FOR MASTER TABLE***************************************************************/
    /********************************ACTUAL MIGRATION FOR CHILD TABLE***************************************************************/
    Insert into TableB (name,LevelValueID)
    Select A.name,B.NewValueId From sample.dbo.TableB A
    Inner join Mg_TableA B on A.LevelValueID = B.LevelValueId
    /********************************ACTUAL MIGRATION FOR CHILD TABLE***************************************************************/
    /********************************TEST THE VALUES***************************************************************/
    Select * From TableA
    Select * From Mg_TableA
    Select * From TableB
    /********************************TEST THE VALUES***************************************************************/
    Drop table TableB,Tablea,Mg_TableA
    Use Sample
    Drop Table TableB,Tablea

  • How do i transfer data from one Time Capsule to another?

    We ran out of space on our old Time Capsule, so I purchased the 2TB model. Problem is that there are no direction (that I can locate) on how to switch over from one device to the other! Can anyone direct me to some online instructions?

    The great Pondini.. wonder of TM
    http://pondini.org/TM/18.html
    saves the day.
    But IMHO.. start a fresh TM backup on the new TC.. preserve the old TC for posterity.. about 6months.. after which time if you didn't need anything on it you won't.

  • How do I transfer data from one external hard drive to another larger one?

    I hope I am posting in the logical area for this topic. I have an external hard drive connected to my eMac. My iTunes library and some backup files reside on this hard drive. I am contemplating purchasing another, larger external hard drive so that I can archive more data--more music and some photos. How do I transfer my data from the first drive to the second one, and is this a risky move? (I have a lot of music!)

    Hello, 
    Take a look at SuperDuper (link). This 'clones' any drive across to another; it should suit your needs just fine.
    Firewire drives with an Oxford chipset are recommended for PowerPC Macs (like the eMac and iBook) as you can boot the Mac from one to recover the system if the internal drive suffers any issues.
    mrtotes

  • How do I transfer data from one username to another?

    Hi,
    I got a two-button mouse and it started twitching uncontrollably after a few months. Simply Computing advised that I create a new username and transfer data like photos, instant messenger contacts, documents, etc. from my old one to the new one. How do I do that?

    Open the Accounts pane of System Preferences and create a new user; next, log in with that user. If your issue persists, it won't be resolved by moving files around, and you should try a different mouse. If the issue doesn't occur in the new user account, log back into the original one and move some of the files from the folder with the house icon to the desktop, noting down what you've moved after each move. If a specific folder contains an item which causes your issue, continue with the items in that folder until you've found the problem file or you've run out of files to move. If you run out of items in the home folder to check, look at the contents of the /Library/Caches/ folder on your hard disk.
    (18413)

  • How do I transfer data from old hard drive to new mac exactly the same as it was on my old one?

    Unfortunately my 2009 iMac has been written off due to a faulty motherboard. Thankfully the company we got the mac from are providing me with a brand new one at no cost as I am under warranty. My old hard drive had many important documents and applications on it and we have requested for the old hard drive back. What I would like to know is how to I go about transferring all the stuff of my old hard drive to my new iMac? I would like everything to be set out exactly the same as it was on my old mac so basically I would like it cloned identical on my new mac from my old hard drive.
    Thanks Nathan

    In general, most people will recommend Carbon Copy Cloner or SuperDuper! You can find either one easily enough with a web search.
    However, in your case, I imagine you are going to have a hard disk returned to you all by itself, and you will need to install it in an enclosure. Don't let that bother you as this is easy to do and the enclosures are not expensive ($40 or so).
    Once that is done, I would recommend you set up your brand new Mac by answering all the questions during initial setup as usual. Be sure to use your correct Apple ID - probably the same one you used to log into this support forum. When you reach the point in which it asks you if you would like to transfer your old documents and settings, connect the old hard disk and select it as the source. It will take some time as it copies all its contents to your new Mac. All your familiar items will be exactly as they were on the failed Mac.
    After that, you can use the old hard disk as a Time Machine backup. When you are satisfied everything on your new Mac is running as it should, go ahead and erase the old disk. Then, tell Time Machine to designate it as a backup, and the rest is automatic.

  • How can I transfer data from one iPhone to another iPhone which is already set up?

    I have an old phone that I want to transfer data to. The phone is set up with previous data. How do I transfer current data to it?

    if the iphone have not been synced with another computer then just sync it with yours
    if it have then you cant syncing it with your computer would then clear the iphone and adding the info from your itunes to it

  • HT1296 How do I transfer data from one ipad to another one?

    I have the orginal ipad and my husband bought me the retina one this weekend. I need to transfer the data on it to the new one.
    Also how do I transfer the ownershlip of one to another as we were going to give one of the older ones we have to my granddaughter to
    play games on and use?

    Look at this link.
    Giving your former iPad to a spouse or family member: the quick guide
    http://www.tuaw.com/2012/03/17/giving-your-former-ipad-to-a-spouse-or-family-mem ber-the-quick/
     Cheers, Tom

  • How do you transfer data from one device to another??

    I have an iPod Touch and i would like to purchase an iPad. So i am wondering if i can safely transfer the data from the ipod to the ipad? I have a lot of games that took a long time to achieve things in and i would not like to loose all that data. So i was wondering if i used the same itunes account and the same gamecenter account if this would work? I really dont know what will work and what won't work, so if you could help me out i would really like to know. Thanks

    Sort of but its kind of all or nothing for the whole device.
    You can restore the iPad from a Touch backup in iTunes but it will overwrite all the information and data on your iPad. You could then re-sort out your iPad but its kind of overkill.
    There is no application specific data transfer.
    Sorry !

Maybe you are looking for