Failure with cloning database structure and then restore from source db

Hello, dear experts!
I am trying to duplicate a database.
First step was to use the DBCA to create a template. Because there is no downtime possible, I only created a template of the structure without user schema and without objects.
At another destination I used this template to create a new database "CLON".
This worked successful. The database is up and running. (But quite empty).
Then I transferred the latest full backup of my source database to the new database. I have the same structure at the destiantion as at the
source.
Now I want to use rman restore to build up the clone with this backup. Therefore I start RMAN and connect to the target without catalog.
"RMAN> restore database;"
leads to:
Starten restore um 27.09.07
Kanal ORA_DISK_1 wird benutzt
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of restore command at 09/27/2007 16:26:16
RMAN-06026: some targets not found - aborting restore
RMAN-06023: no backup or copy of datafile 709 found to restore
RMAN-06023: no backup or copy of datafile 708 found to restore
RMAN-06023: no backup or copy of datafile 707 found to restore
"RMAN> list backup;"
does not show any results.
"RMAN> crosscheck backup;"
Zugewiesener Kanal: ORA_DISK_1
Kanal ORA_DISK_1: SID=17 Gerõtetyp=DISK
"RMAN> list backup;"
does not show any results.
To me this looks as if RMAN does not identify the/any backup.
What has to be done to solve the problem?
Thank you in advance,
Hergen.

Hi, I assume that by clone you mean a duplicate of the DB including ALL tablespaces and not just a few right? YOu want to also rename the DB according to what I read.
As a note, your new database does not see the backups because you do not connect to the catalog, and you have no backup info as a result.
Correct me if I am wrong if I misundestand your situation:
First if you want to duplicate, you do not need to create an empty DB. Just create an new instance without any controlfiles or datafiles. Then you restore your rman backup
You could perhaps adapt this procedure I have used recently to clone databases with RMAN backups: You just need RMAN backups, taken as hot backups is fine. You also need the controlfile autobackup from RMAN. If you do not want to use the catalog, you can use the controlfile as catalog, and register the backup info to the controlfile, then restore.
Here is the procedure:
RMAN RESTORE DB FROM COMPLETE LOSS (without use of catalog)
1-     Install oracle db home and patch.
Note: As much as possible, patch to the same version of the DB to be restored. If you do not, you should patch to a later release (do not do this if at all possible, as problems may occur). After opening with reset logs, you will have to startup with the upgrade option and run the cat upgrade script to update the DB to the current patchset.
2-     Install or configure an instance on the desired node. It is not necessary to create a database.
a.     Run oradim to create the instance.
Oradim –new –SID sid –SYSPWD sysdbapass –STARTMODE manual|automatic –PFILE ‘….path to pfile….\initsid.ora’
NOTE: The pfile is optional, required if you do not use a spfile
b.     Create and configure a listener, as rman requires oracle net connectivity.
i.     Use oracle utilities to create listener.
ii.     Use oracle utilities to configure listener to register the instance just created. (or manually edit the listener.ora file).
c.     Configure a tnsnames.ora file so that rman can reach the database through the listener.
d.     Create all directories for datafiles, admin, redologs, archive, flash_recovery_area etc if required.
3-     Create a pfile or get one (ideally the backups should include it).
a.     Change paths in the pfile to reflect new file structure. Also change any settings that are relevant.
Note: if using an spfile, then the rman controlfile autobackup will have it. In that case startup in nomount, start RMAN after setting ORACLE_SID=sid, with ‘RMAN target / NOCATALOG.
Run this in rman
RUN {
SET CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO ‘………………..\CONTROL_%F’;
RESTORE SPFILE TO PFILE ‘………\initsid.ora’ FROM AUTOBACKUP;
SHUTDOWN ABORT;
NOTE:
-     If you do not have a specific archive file location (archivelog mode only) the flash recovery area size may need to be increased, depending on the number of archive files to recover.
-     If restoring to a different instance (want to restore an old backup to a different db name, set the db_name in the pfile the same as the db name in the backups. You can rename the db later.
4-     Get the backups desired to restore the DB, and make them available to the node where the restore is to be done.
5-     Startup the database in nomount mode. Startup the service is necessary, then startup the database in nomount mode: specify the pfile location if not in a standard location.
‘STARTUP NOMOUNT PFILE=’……\initsid.ora’’;
6-     Get DB id from controlfile autobackup. Get the most recent controlfile autobackups from the backup files, and find the database id. Below is an example
# CONTROL_c-XXXXXXXXXX-YYYYMMDD-ZZ
# XXXXXXXXXX IS THE DBID
7-     START RMAN after setting ORACLE_SID=sid, with ‘RMAN target / NOCATALOG’.
8-     SET DBID. Get the dbid from above. Run ‘SET DBID XXXXXXXXXXXX;’
9-     Restore controlfile
RUN {
SET CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '… \CONTROL_%F';
RESTORE CONTROLFILE FROM AUTOBACKUP;
ALTER DATABASE MOUNT;
NOTE: If restoring old files, then you must add MAXDAYS=xxx to the restore controlfile command, so that it will find the desired file. Default is 7 days. (explaining why it can’t find older then 7 days).
10-     Catalog backup files. It is probable that the backup files restored will be in a different location once restored (applicable to disk backups). You need to catalog them in RMAN so that RMAN knows about them. List all backup files and run these commands for each backup and controlfile autobackup:
‘CATALOG BACKUPPIECE ….\CONTROL_C-310452700-20070918-01';’
‘CATALOG BACKUPPIECE …\BACKUP_HEIS8FIK_1_1';
NOTES: If the backups are in the same location as they have always been, then a recatalog is not necessary, as the control file has the right backup files information.
If the backups were restored to a different location, then a recatalog must be done so that RMAN can find them. If the regular location of backups is not available, then rman needs to be updated to reflect that. In that case run these commands:
     CROSSCHECK BACKUPS;
     DELETE EXPIRED BACKUP;
     CROSSCHECK ARCHIVELOG ALL;
     DELETE EXPIRED ARCHIVELOG ALL;
If this is test restore (to test disaster recovery for example), likely all the backups are still there, but it is desired to use the restored backup files only. RMAN needs to be updated to reflect that the regular backups do not exist. Make the regular backup files unavailable to RMAN (such are renaming a directory, or preventing access through security), and then run the above commands.
11-     Find the datafile names and numbers. This is only required if datafiles are in a different location on the database to be restored.
Using SQLPlus, set the oracle_sid, then run sqlplus / ;
Run the following command
     Select file# as “file/grp#’, name from v$datafile; (for datafiles).
     Select group#, member from v$logfile. (for redologs)
12-     Restore the database
(use only if all datafile locations are the same!)
RUN
# allocate a channel to disk
ALLOCATE CHANNEL c1 DEVICE TYPE DISK MAXPIECESIZE 2 G FORMAT '…path…\BACKUP_%U';
RESTORE DATABASE;
RECOVER DATABASE;
(use if datafiles are not in the same location)
RUN
ALLOCATE CHANNEL C1 DEVICE TYPE DISK FORMAT ‘…\BACKUP_%U';
SET NEWNAME FOR DATAFILE 1 TO ‘….\SYSTEM01.DBF';
SET NEWNAME FOR DATAFILE 2 TO '…\UNDOTBS01.DBF';
SET NEWNAME FOR DATAFILE 3 TO '…\SYSAUX01.DBF';
SET NEWNAME FOR DATAFILE 4 TO '…\USERS01.DBF';
SET NEWNAME FOR DATAFILE 5 TO '…\TOOLS_01.DBF ';
# add other tablespace locations here.
# We need to tell the controlfile the new location for the redologs
SQL "ALTER DATABASE RENAME FILE ''…\REDO01.LOG'' TO      ''…\REDO01.LOG''";
SQL "ALTER DATABASE RENAME FILE ''…\REDO02.LOG'' TO      ''…\REDO02.LOG''";
SQL "ALTER DATABASE RENAME FILE ''…\REDO03.LOG'' TO      ''…\REDO03.LOG''";
RESTORE DATABASE;
# we need to tell the controlfile the location of the new datafiles.
SWITCH DATAFILE ALL;
RECOVER DATABASE;
13-     Reset the logs. ALTER DATABASE OPEN RESETLOGS;
NOTE: If the oracle home is of a newer revision then the database, the open resetlogs will generate an error. In that case open the database with the upgrade option and then run the catalog upgrade as per patch instructions.
14-     Create a temporary tablespace. The system thinks it has a temp tablespace, but it needs to be recreated
a.     Create another temp tablespace (modify as needed).
     CREATE TEMPORARY TABLESPACE temp2
          TEMPFILE '......\temp02.dbf' SIZE 128M REUSE
          AUTOEXTEND ON NEXT 16M MAXSIZE unlimited
          EXTENT MANAGEMENT LOCAL UNIFORM SIZE 1M;
b.     Point the server to the new file
ALTER DATABASE DEFAULT TEMPORARY TABLESPACE temp2;
c.     Delete the missing one:
          DROP TABLESPACE temp INCLUDING CONTENTS AND DATAFILES;
d.     RECREATE THE temp tablespace;
          CREATE TEMPORARY TABLESPACE temp
               TEMPFILE 'd:\......\temp_01.dbf' SIZE 128M REUSE
          AUTOEXTEND ON NEXT 16M MAXSIZE unlimited
          EXTENT MANAGEMENT LOCAL UNIFORM SIZE 1M;
e.     Change system default tablespace again to temp:
          ALTER DATABASE DEFAULT TEMPORARY TABLESPACE temp;
f.     Delete the transition temp tablespace temp2:
DROP TABLESPACE temp2 INCLUDING CONTENTS AND DATAFILES;
15-     Rename the database if the restored database name needs to change.
Use the nid utility to rename the db. IMPORTANT: the temporary tablespace needs to exist for this to work, or the db rename will fail and a restore will have to be done.
Use :
-     Shutdown database in immediate mode.
-     Startup in nomount.
-     Open command prompt.
-     set oracle_sid = sid
-     nid sys/pass dbname=newname logfile=….\logfile.txt
-     shutdown the db (if required)
-     Change the dbname in the pfile or spfile to the new dbname
-     Create a new password file:
o     Orapwd file=….. password=…
IMPORTANT NOTE: if you rename a DB, your existing backups will not be valid, do backups of the newly renamed db!!!
16-     Open the database and test.
NOTE: Whenever you open with resetlogs, YOU MUST BACKUP YOUR DATABASE. Your old backups can only be used to restore the old DB.
I hope this helps.

Similar Messages

  • I have just updated my hard drive in my 15" MBP. I then loaded lion over Internet and then restored from my old HD. Now the MBP will not boot! Have I stuffed it?

    HI, help! I have just replaced my hard rive in my 15" MBP.I have loaded lion back via Internet . I then restored from my old hard drive. Now the MBP won't boot, where as before I restored it was operating perfectly just with out my data only icloud data. Can I erase, my restore? Will I ever see my data again?
    concerned

    I have just replaced my hard rive in my 15" MBP.I have loaded lion back
    via Internet . I then restored from my old hard drive. Now the MBP
    won't boot
    What do you see on the screen when it doesn't boot??
    Gray, Blue or White screen at boot, w/spinner/progress bar
    or
    Folder with question mark issue?
    How did you restore from your old hard drive?
    Technically all that was needed was to use Migration Assistant on the fresh OS X install to migrate users accounts and programs to the new machine.
    You can use a SATA to USB adapter to connect the old drive if you want to go that way and start over with a fresh install again on the new drive.
    Reset your Mac

  • Will LaCie D2 QUADRA with firewire restore my apps back onto my MacBook Pro if I upgrade to Lion and then restore from the external drive?

    I ordered the disk to update to Snow Leopard.  Did that so I could get the App Store.  Did that so I could download Lion.   After I installed Lion my MacBook is super sluggish.  Takes like 6 seconds just to open a drop-down menu in Finder. 
    I have been backing up. Will LaCie D2 QUADRA with firewire restore my apps back onto my MacBook Pro if wipe my drive using the USB Lion OS stick (which I think I'll have to buy even though I downloaded the new OS online)?  I have been plugging my laptop into the Lacie drive set on "auto" and it's been working great.
    One Genius said yes "you will get everything back" but my Mac buddy says "say goodbye to most of your apps".  Then a guy at the university I asked "do you have a disk image". And I said "what the **** is a disk image?".
    Is the problem that I installed an OS on top of new OS without wiping the drive?  Or, is my MacBook Pro too old? Do I need to buy a new one?
    15-inch, Late 2008
    Processor  2.4 GHz Intel Core 2 Duo
    Memory  2 GB 1067 MHz DDR3
    Graphics  NVIDIA GeForce 9400M 256 MB
    Software  Mac OS X Lion 10.7.3 (11D50b)
    Any help?

    SA will indeed transfer accounts, files and apps at first start. Can do so even faster if you clone the internal HDD onto the external (just split into a partition large enough to contain it) and then use it as the source. Probably faster than Time Machine too. The safest and quickest way to do a disk image or clone is using CarbonCopyCloner (free), and it will preserve the Lion Recovery Partition too.
    Since you'll have to re--download the Lion installer again, note that you can concoct your very own Lion Installer USB Stick with it prior to reinstalling and not have to pay for the Apple-branded version. See Kappy's tutorial: https://discussions.apple.com/thread/3786371?tstart=0
    As for the sluggishness, I believe that a great part of the cause is that you only have 2GB RAM. Don't know if your Mac can take more but try at least to get to 4GB, if not 8GB. Should attempt this before  messing with the reinstall, as this may get you what you want.

  • Ipod reset to old setting with old icloud ID.  How do I reset it to use new login for icloud and then restore from icloud backup

    My upgrade to iOS 8 failed and I had to restore my iPad from an old backup (since restoring from cloud wasn't given as an option).
    Now the iPad has my old iCloud account configured instead of the one I've been using for the past year or so.  How do I:
    1. Get the iPad to use the correct iCloud account?
    2. Restore the iPad from an iCloud backup?
    Everytime I try to log out of iCloud it prompts me for the password on the old account to allow me to turn off "Find my iPad".  I don't think that account even exists anymore.  I tried to reset the password on the old account (using an old email address), but the password email never arrives.
    Help!

    Make sure you are signed into iMessage and FaceTime with your current ID.  If they are signed into the old ID, go to Settings>Messages>Send & Receive and Settings>FaceTime, tap the ID, sign out, then sign back in with your current ID.
    Then temporarily recreate the old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  (You should not have to verify the old email account so it doesn’t matter if you no longer have access to it.)  Now go to Settings>iCloud, turn off Find My iDevice and enter your current password when prompted (even though it prompts you for the password for your old ID).  Then go to Settings>iCloud, tap Sign Out (or Delete Account if you are not running iOS 8) and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address back to the way it was.  Now you can go to Settings>iCloud and sign back in with your current iCloud ID and password (your data will download back to your device).
    If you need to restore an iCloud backup, it's explained here: iCloud: Restore your iOS device from iCloud.

  • HT1766 My I-Phone 5 is disabled, in order to enable it ;can i back it up , restore it back to "factory" , and then restore from i tunes?

    In addtion to that, when i connect my phone to my computer it states that "USB  is not recognized".......does this mean something could be wrong with my cord?
    Also it also states that "Device can not be installed", why is that?
    Your Help is much appreciated
    -Thanks

    http://support.apple.com/kb/HT1212

  • My Macbook is not working properly, I went to a Genius Bar appointment, they were not helpful at all and just told me to go off and reboot my Mac and then restore via TimeMachine. I dont know how to do this. I am extremely displeased with Apple, help me?

    My late 2011 Macbook Pro is not working properly it is very slow and extremely painful to use, I went to a Genius Bar appointment, they were not helpful at all and just told me to go off and reboot my Mac and then restore via TimeMachine. I dont know how to do this. I am extremely displeased with Apple at the moment, can someone please help me?

    Your problem description is generalized and non-specific. I would make another appointment at the Apple store and insist they help you execute their suggested fixes.
    Incidentally, if you search this site, Apple has excellent articles re: restoring a system.
    Barry

  • I have updated my 4s iphone to ios 6.1.3 and have trouble connecting it to wi fi . i tried to back up it on itunes and then restore it but now i have left with a phone that still doesnt connect to wi fi and  lost all my data. anyone knows how to fix it?

    i have updated my 4s iphone to ios 6.1.3 and have trouble connecting it to wi fi . i tried to back up it on itunes and then restore it but now i have left with a phone that still doesnt connect to wi fi and  lost all my data. anyone knows how to fix it?

    If no change after restoring the iPhone with iTunes as a new iPhone or not from the backup, there is a hardware problem.

  • I updated the firmware to 5.0.1, then began a problem with my gadget I try to restore from a backup firmware, Itunes an error 3194, if I can, and if I do get to shsh ios 5?

    I updated the firmware to 5.0.1, then began a problem with my gadget I try to restore from a backup firmware, Itunes an error 3194, if I can, and if I do get to shsh ios 5?

    Good morning
    This may indicate a hardware issue with your device. Follow Troubleshooting security software issues, and restore your device on a different known-good computer. If the errors persist on another computer, the device may need service.
    http://support.apple.com/kb/TS3125
    Hope this helps
    Cheres

  • I can't get my computer to boot up.  The screen is white with a file folder and then at ? in the middle

    The screen is white with a file folder and then at ? in the middle

    Before declaring that the disk is dead (which is a common cause for what you are seeing), try the steps outlined in this article:
    http://support.apple.com/kb/TS2570
    This article also has some troubleshooting steps you can try:
    http://support.apple.com/kb/ts1417
    If you don't have your original system disks, you can boot into single user mode folloing these instructions:
    http://support.apple.com/kb/ht1492
    and then following the directions for running the fsck command in the second article I list above.
    I would try these things before giving up and assuming that the disk is dead. The flashing question mark indicates that a valid boot disk cannot be found. One cause for this is that the disk has experienced hardware failure. However another cause could be that the system and boot files on that disk are somehow damaged (perhaps from a power surge or an improper shutdown of the computer) and in some cases the above repair steps can restore them to working condition.

  • If I back up my iPod Touch using iCloud and then restore it, will I be able to get back all my photos, app data, etc?

    About 5 months ago I was clearing up space on my PC. I had moved music that was in my music folder onto a USB and I thought that I could do the same with my iTunes Library folder onto my USB. But it wouldn't fit, so I moved it back. But when I went to back up my iPod it didn't recognize it anymore. I haven't been able to restore it anymore. Just until now I'm trying to see if I could back-up my data & photos to iClod and then Restore it, but I'm just a little unsure. Can anybody just reasure me that this will OR will not work.

    I don't really think that you need to restore your device in order to sync it again with iTunes. I suspect all that you need to do is connect the device to iTunes and then accept it as a new device and choose the option to start syncing with that library.
    Of course, it would be a good idea to back up to iCloud before you did this.

  • My G5 won't boot up. The Gray screen comes on and it thinks about it until the fan revs up like it is about to explode. A friend said to start it up with the OS disk and then go to utilities. Didin't work. Any suggestions? Isn't there a key stroke to help

    Oh, so this is where I ask my question. Sorry, first time here. As I was saying in my long intro, the gray screen come up and the thing is spinning at the bottom, but nothing happens. Then the fan starts reving up like it is about to explode and I have to manually shut it off. A friend told me to start it up with the OS disk and then go to utilities. I couldn't find the thing, so I went out and bought another. Needless to say, it didn't work. Is there a key stroke to help jump start the machine? How can I get into this thing? I would prefer not to take it in because there are a lot of things on there I don't want just anyone to have access to.Thanks, in advance, for your help!

    The last time you had to hold down cmd opt pr more than twice was a decade ago....
    G5? PowerPC? 10.5? or earlier....
    https://discussions.apple.com/community/desktop_computers/power_mac?view=discuss ions
    Apple has a number of resources like "Power or Startup Quick Assist"
    http://support.apple.com/kb/HT1149
    Your drive does need to be repaired, and best things to buy are another backup recovery drive, with a small OS X partition; a copy of Disk Warrior is expensive @ $90 but excellent and best.
    Never bother with or use the drive or reinstall while there are errors. Don't take a "clean' bill from Apple Disk Utility to mean there are no errors. Only that it didn't find what it looked for.
    http://www.macintouch.com/readerreports/harddrives/topic4557.html#d12aug2010
    http://www.alsoft.com/DiskWarrior/index.html
    A quick search "keyboard shortcuts" takes you here:
    http://support.apple.com/kb/HT1343
    how to resolve and fix startup issues with fsck and disk utility:
    http://support.apple.com/kb/TS1417
    http://macperformanceguide.com/Mac-HowToClone-backup.html
    http://macperformanceguide.com/Mac-HowToClone.html
    How to use DU to backup and restore
    http://support.apple.com/kb/HT1553
    http://www.alsoft.com/DiskWarrior/index.html
    http://www.bombich.com/ccc_features.html
    Make sure to have multiple backup sets and of your system so if there is a serious problem, you can just erase and restore to be back runninig.
    Sounds like your G5 though needs PMU reset, not PRAM, and the best way for those is to clear nvram instead. might even want to check for dust; tell what System Profile says (later) as to "PowerMacX,Y" or "MacProX,1"
    http://www.apple.com/support/powermac or /macpro
    http://www.apple.com/support/sitemap/
    The Utility menu is on the menu bar of an "OS X Install DVD" and at the point where you get to but stop at "install....' for OS X. you probably do need to install OS X on another drive to work from.
    Oh, a real severe issue and damage to the drive directory or filesystem CAN in cases prevent booting from DVD (the system still tries to find and see what boot volumes are present) and can help to pull or disconnect the drive. Putting a drive in a FW case to turn on after startup is very useful.

  • Issues with Bex query structures and Crystal Reports/Webi

    Hi experts,
    I'm having an issue with Bex Query structures and nulls. I've built a Crystal Report against a Bex query that uses a Bex Query structure. The structure looks like the following
    Budget $
    Budget %
    Actual $
    Actual %
    Budget YTD
    etc
    if I drag the structure into the Crystal Report detail section with a key figure it displays like this
    Budget $     <null>
    Budget %     <null>
    Actual $     300
    Actual %     85
    Budget YTD     250
    the null values are displayed (and this is what is required). However if I filter using a Record selection or group on a profit centre then the nulls along with the associated structure component are not displayed.
    Actual $     300
    Actual %     85
    Budget YTD     250
    Webi is also behaving similarly. Can anyone explain why the above is happening and suggest a solution either on the Bex side of things or on the Crystal Reports side of things? I'm confused as to why nulls are displayed in the first example and not the second.
    Business Objects Edge 3.1 SP2
    SAP Int Kit SP2
    OS: Linux
    BW 701 Level 6
    Crystal Reports 2008 V1
    Thanks
    Keith

    Hi,
    Crystal Reports and Web Intelligence will only show data which is in the cube. You could have an actual 0 or Null entry whithout grouping but by changing the selection / grouping in the report the data does not include such entry anymore.
    ingo

  • Ipad displays "ipad is disabled connect to itunes", I have tried putting the ipad into recovery mode and then restoring but that does not work. I have also tried doing a hard reset of the ipad and that does not work either. Any ideas?

    Ipad displays “ipad is disabled connect to itunes”, I have tried putting the ipad into recovery mode and then restoring but that does not work. I have also tried doing a hard reset of the ipad and that does not work either. Any ideas?
    My son let one of his friends use his ipad. The next time he tired to use it he could not get it unlocked, I tired to unlock it but it kept telling me that I had the wrong pass code. With out me knowing my son continued to tire until it completely disabled it self.

    How can I unlock my iPad if I forgot the passcode?
    http://www.everymac.com/systems/apple/ipad/ipad-troubleshooting-repair-faq/ipad- how-to-unlock-open-forgot-code-passcode-password-login.html
    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tb
    How to Reset a Forgotten Password for an iOS Device
    http://www.wikihow.com/Reset-a-Forgotten-Password-for-an-iOS-Device
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    You may have to do this several times.
    Saw this solution on another post about an iPad in a school environment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just canceling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
     Cheers, Tom

  • Every 1 to 5 minutes my screen transiently dims and then restores as if there is a power interruption. There is an associated beep..

    Every 1 to 5 minutes my screen transiently dims and then restores as if there is a power interruption. There is an associated beep. It's as if there is a power transient in the video circuit. Anything I can do?

    That's a brownout, where you don't have enough electricity going to the device.
    It usually occurs with bad wiring, or a heavy device like a AC or refrigerator unit kicking on the compressor which draws a lot of current.
    You need to reduce the electrical load on the power lines your using, if you don't know, call in a electician to take a look and calculate your load.
    It's a potential fire hazzard too when there is a big spike like that, electrical fires start that way.
    Use your device someplace else with good power and see if it continues. Then you know it's a hardware problem.

  • Hi, i wanted to resize my windows partion. I was thinking of using the default backup system for windows. Then switching to mac partion, deleting the bootcamp and then restoring a new enlarged partion from the backup. Is this possible?

    hi,
    i wanted to resize my windows partition. I was thinking of using the default backup system for windows. Then switching to mac partion, deleting the bootcamp and then restoring a new enlarged partition from the backup. Is this possible?

    I see youhave gotten recommendatons for using WinClone or CampTune.  I have used both and they both work well.
    You have asked about using the WIndows 7 utility to backup your drive and restor it onto a larger partition.  I will tell you fro experience that this will probably not do what you want, and may do something that you don't want.  You can use the Windows 7 native backup tool to make a backup of your Windows 7 partition.  It will most liekly end-up making a dive image of the whole drive.  When yourestore that backup, it will try to re-create teh partitions of exactly the same size as they were when the backup was taken, so it won't increase your partition size for you.  Worse, since Windows doesn't natively know how to read./write HFS+ volumes, the backup will make a partition for your MacOS (replacing any you may have now), except that the copy restored by WIndows will be totally worthless, and you will not be able to boot MacOS from it, or even read it under MacOS.
    Now I will tell you that I've also had some fairly good success working with the free tool CloneZilla.  Since it hasn't been mentioned yet, and everything else mentioned does cost you money, I thought I would throw it out.  CloneZilla is not as easy to use as the tools mentioned, but it has worked for me int hte past, so it is something to consider.  I tend to use CampTune myself, but that was because I purchased a bundle deal for them and it was included in that deal.

Maybe you are looking for