How to fix RMAN-20207: UNTIL TIME is before RESETLOGS time

Early this morning, in my haste to get a point in time restore and recovery started, I forgot to restore the controlfile as the 1st step.
I used the current database control file, and now I have "RMAN-06004: ORACLE error from recovery catalog database: RMAN-20207: UNTIL TIME is before RESETLOGS time". I have a recovery catalog database. This is Oracle 8.1.7.4.
Here was my script syntax:
export ORACLE_SID=myname
export ORACLE_HOME=/x01/oracle/product/8.1.7
export LOG=/x01/admin/recover/point_in_time_${ORACLE_SID}_${TimeStamp}.log
echo "Starting Time: `date`" > $LOG
/x01/oracle/product/8.1.7/bin/rman <<! | tee -a ${LOG}
set echo on;
connect target
connect catalog myuser/mypass@mycatalog
startup nomount pfile='/x01/admin/myname/pfile/initmyname.ora';
alter database mount;
run {
set until time "to_date('2006-12-02:03:00:00','yyyy-mm-dd:hh24:mi:ss')";
allocate channel t1 type 'SBT_TAPE' parms 'ENV=(TDPO_OPTFILE=/usr/tivoli/tsm/client/oracle/bin/tdpo.opt)';
allocate channel t2 type 'SBT_TAPE' parms 'ENV=(TDPO_OPTFILE=/usr/tivoli/tsm/client/oracle/bin/tdpo.opt)';
restore database;
recover database;
release channel t1;
release channel t2;
Alter Database Open Resetlogs;
sql "alter tablespace temp01 add tempfile ''/x01/myname/temp1/temp01_01.tmp'' SIZE 5308416 REUSE AUTOEXTEND ON NEXT 5242880 MAXSIZE 2097217536";
sql "alter tablespace temp01 add tempfile ''/x01/myname/temp1/temp01_02.tmp'' SIZE 5308416 REUSE AUTOEXTEND ON NEXT 5242880 MAXSIZE 2097217536";
exit
echo "Finished Time: `date`" >> ${LOG}
Can I do the following to try to restore the controlfile? First, I would shutdown my database.
export ORACLE_SID=myname
export ORACLE_HOME=/x01/oracle/product/8.1.7
export LOG=/x01/admin/rman/recover/db_point_in_time_8i_${ORACLE_SID}_${TimeStamp}.log
echo "Starting Time: `date`" > $LOG
/x01/oracle/product/8.1.7/bin/rman <<! | tee -a ${LOG}
set echo on;
connect target
connect catalog myuser/mypass@mycatalog
startup nomount pfile='/x01/admin/myname/pfile/initmyname.ora';
alter database mount;
run {
set until time "to_date('2006-12-02:03:00:00','yyyy-mm-dd:hh24:mi:ss')";
allocate channel t1 type 'SBT_TAPE' parms 'ENV=(TDPO_OPTFILE=/usr/tivoli/tsm/client/oracle/bin/tdpo.opt)';
allocate channel t2 type 'SBT_TAPE' parms 'ENV=(TDPO_OPTFILE=/usr/tivoli/tsm/client/oracle/bin/tdpo.opt)';
restore controlfile to '/x01/disk/control01.ctl';
replicate controlfile from '/x01/disk/control01.ctl';
recover database;
release channel t1;
release channel t2;
Alter Database Open Resetlogs;
sql "alter tablespace temp01 add tempfile ''/x01/myname/temp1/temp01_01.tmp'' SIZE 5308416 REUSE AUTOEXTEND ON NEXT 5242880 MAXSIZE 2097217536";
sql "alter tablespace temp01 add tempfile ''/x01/myname/temp1/temp01_02.tmp'' SIZE 5308416 REUSE AUTOEXTEND ON NEXT 5242880 MAXSIZE 2097217536";
exit
echo "Finished Time: `date`" >> ${LOG}
I have a new incarnation of the database too -
List of Database Incarnations
DB Key Inc Key DB Name DB ID CUR Reset SCN Reset Time
1 2 MYNAME 1849293826 NO 1 06-AUG-03
1 25874 MYNAME 1849293826 NO 750748990 26-SEP-03
1 143681 MYNAME 1849293826 NO 6610874669464 12-AUG-05
1 265345 MYNAME 1849293826 YES 6611455777113 14-DEC-06
What is the fastest way to fix this situation without having to restore the entire database?
Thanks,
Message was edited by:
user521040

Here is the "revised" script - I have not run this again on the Production system, but I might get a chance - finding corruption on the disk. I will test out later on a development database:
#!/usr/bin/ksh
TimeStamp=`date +%Y%m%d_%H%M%S`
export ORACLE_SID=myname
export ORACLE_HOME=/x01/oracle/product/8.1.7
export LOG=/x01/admin/rman/recover/8i_${ORACLE_SID}_${TimeStamp}.log
echo "Starting Time: `date`" > $LOG
/x01/oracle/product/8.1.7/bin/rman <<! | tee -a ${LOG}
set echo on;
connect target
connect catalog myuser/mypass@mycat1
startup nomount pfile='/x01/admin/myname/pfile/initmyname.ora';
run {
set until time "to_date('2006-11-25:18:08:00','yyyy-mm-dd:hh24:mi:ss')";
allocate channel t1 type 'SBT_TAPE' parms 'ENV=(TDPO_OPTFILE=/usr/tivoli/tsm/client/oracle/bin/tdpo.opt)';
allocate channel t2 type 'SBT_TAPE' parms 'ENV=(TDPO_OPTFILE=/usr/tivoli/tsm/client/oracle/bin/tdpo.opt)';
allocate channel t3 type 'SBT_TAPE' parms 'ENV=(TDPO_OPTFILE=/usr/tivoli/tsm/client/oracle/bin/tdpo.opt)';
allocate channel t4 type 'SBT_TAPE' parms 'ENV=(TDPO_OPTFILE=/usr/tivoli/tsm/client/oracle/bin/tdpo.opt)';
restore controlfile to '/x01/disk/control01.ctl';
replicate controlfile from '/x01/disk/control01.ctl';
alter database mount;
restore database;
recover database;
Alter Database Open Resetlogs;
sql "alter tablespace temp01 add tempfile ''/x01/myname/temp1/temp01_01.tmp'' SIZE 5308416 REUSE AUTOEXTEND ON NEXT 5242880 MAXSIZE 20
97217536";
sql "alter tablespace temp01 add tempfile ''/x01/myname/temp1/temp01_02.tmp'' SIZE 5308416 REUSE AUTOEXTEND ON NEXT 5242880 MAXSIZE 20
97217536";
release channel t1;
release channel t2;
release channel t3;
release channel t4;
exit
echo "Finished Time: `date`" >> ${LOG}
Message was edited by:
user521040

Similar Messages

  • RMAN-20207: UNTIL TIME or RECOVERY WINDOW is before RESETLOGS time

    Hello,
    i am working for a scenerio and you can see my restore script below,
    RMAN> RUN
    2> {
    3> SET UNTIL TIME "to_date('24-05-2010 18:00:00','DD-MM-YYYY HH24:MI:SS')";
    4> RESTORE DATABASE;
    5> RECOVER DATABASE;
    6> }
    executing command: SET until clause
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of set command at 05/26/2010 11:23:24
    RMAN-20207: UNTIL TIME or RECOVERY WINDOW is before RESETLOGS time
    also you can see my backups,
    List of Backups
    ===============
    Key TY LV S Device Type Completion Time #Pieces #Copies Compressed Tag
    89 B 1 A DISK 24-05-2010 15:36:04 1 1 NO BACKU
    P_BISE1DB_000_052410030823
    90 B 1 A DISK 24-05-2010 15:36:13 1 1 NO BACKU
    P_BISE1DB_000_052410030823
    91 B 0 A DISK 25-05-2010 12:01:09 1 1 NO TAG20
    100525T113815
    92 B 0 A DISK 25-05-2010 12:01:13 1 1 NO TAG20
    100525T113815
    93 B 1 A DISK 25-05-2010 12:01:55 1 1 NO TAG20
    100525T120152
    94 B 1 A DISK 25-05-2010 12:04:55 1 1 NO TAG20
    100525T120451
    95 B 1 A DISK 25-05-2010 13:55:00 1 1 NO TAG20
    100525T134431
    96 B 1 A DISK 25-05-2010 13:55:09 1 1 NO TAG20
    100525T134431
    97 B 1 A DISK 25-05-2010 14:01:43 1 1 NO TAG20
    100525T140139
    98 B 1 A DISK 25-05-2010 14:55:33 1 1 NO TAG20
    100525T140356
    so i am trying to understand that what is the earliest date that i can restore my database and avoid tihs error, according to the my backup sets?
    thank you
    Ugur

    Please query the following query and specify the RESETLOGS time
    SELECT RESETLOGS_TIME FROM v$database;
    i cant have result with this, because database is mount state,
    And post the result of the following command to provide an information about database incarnations:
    RMAN>LIST INCARNATION
    RMAN> list incarnation;
    using target database control file instead of recovery catalog
    List of Database Incarnations
    DB Key Inc Key DB Name DB ID STATUS Reset SCN Reset Time
    1 1 BISE1DB 4092555014 PARENT 1116016 01-05-2007 16:22:55
    2 2 BISE1DB 4092555014 PARENT 1226717 14-12-2007 15:28:11
    3 3 BISE1DB 4092555014 PARENT 5783997202 04-05-2010 09:59:11
    4 4 BISE1DB 4092555014 CURRENT 5785721070 26-05-2010 10:59:32
    thank you

  • Strange System Font in Dreamweaver.  After I installed Dreamweaver CS4 on my Mac, it loaded this strange font as seen in the photo attached.  Anyone know how to fix this?  I have uninstalled/reinstalled many times.  No prob w/ other CS4 programs.

    Strange System Font in Dreamweaver.  After I installed Dreamweaver CS4 on my Mac, it loaded this strange font as seen in the photo attached.  Anyone know how to fix this?  I have uninstalled/reinstalled many times to no avail.  There are no other problems with w/ other CS4 programs, they all have the normal system font.  I can't figure it out.  Thanks!

    Funny fonts issue in PI etc.,
    http://kb2.adobe.com/cps/405/kb405153.html
    Fonts in Dreamweaver panels display incorrectly
    http://kb2.adobe.com/cps/138/tn_13862.html
    Nadia
    Adobe Community Expert : Dreamweaver
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    Web Design & Development
    http://www.perrelink.com.au
    http://twitter.com/nadiap

  • Scanning in both HP Officejet 7210 and Samsung printer - the document scans but no file is generated - any ideas how to fix this?  (It worked fine before installing Mavericks)

    Scanning in both HP Officejet 7210 and Samsung printer - the document scans but no file is generated - any ideas how to fix this?  (It worked fine before installing Mavericks)

    PS: forgot to mention: if your printer is on your wifi network, you'll have to enter your wifi password on the printer to connect it to the network before Printers & Scanners will see it.
    Sometimes a reset of the wifi system is needed too. A full set of directions would be:
    Try:
    uninstall all printer manufacturer apps and "utilities"
    go to System Preferences > Printers & Scanners > Print
    control-click on your printer in the column on the left
    select "Reset Printing System..." and "reset" in the dialog that follows
    do a factory reset on your printer. You'll have to consult the printer manual for how.
    power down everything: modem, router, computer, and printer
    power up each item in turn in the same order: modem, router, computer, and printer. Let each power up completely before moving on to the next
    enter your wifi password in your printer so it can connect to the network
    go back to printers & scanners and it should see your printer and download a driver for it from Apple
    resist the temptation to install any printer manufacturer apps in the future.

  • How to fix Flash Player buffering entire video before playing?

    I am using the most up to date version of flash (16.0.0.305), windows 7, and the problem persists across all browser (IE, firefox, chrome). Today all flash videos are buffering the entire video before playing and i can't seem to figure out how to fix it. I've gone through the entire troubleshooting from Video playback issues (i.e. clearing caches, re installing chrome, re-installing flash, etc.) and nothing seems to change it. Youtube and other premium streaming services (ex. netflix) work fine which suggests the streaming problem is specific to flash. Any help would be greatly appreciated.

    I tried uninstall and re install both Flash Player and Chrome it self but nothing changed.
    I also noticed that when i try to download something on chrome (this is the browser i use for everything), for example a movie trailer from Apple's trailer site (for example this movie trailer iTunes Movie Trailers) i right click and press Save As, it does nothing after that and after let's say some seconds the window pops up asking me where to save it, and i save it. That means that when i press "Save As" it does starts downloading in the background (like the first post in this thread states) and only wneh it finishes downloading the Chrome pop up window appear. When it should pop immediatelly asking me where to save it the moment i right click something and press Save As. At least that what i used to do before THIS whole problem started......
    Any thoughts...??????
    Please i am desperate...... 

  • How to fix BW Query column width globally before query execution?

    Dear Experts,
    Regarding the BW Query run in Business Explorer, the width of the first column A of the result displayed in Excel is usually based on the width of the query title.
    I know that we can adjust the column width in Excel: right click on the column and change the properties as "Do not adjust column width" on refresh. But how can I change and fix this width globally (regardless of the actual length of the cells) inside the analyzer during query design, and before the result coming out in Excel? I want the change is on the "Change query (global definition)", and not inside the Excel.
    Thanks & regards,
    James
    Edited by: OSS support CCS on Feb 9, 2011 10:15 AM

    Hi,
    The column width is determined by the Analyser at the runtime  and is taken by the settings done at Infoobject level in "Business Explorer tab". Like short text will have X width column.
    If you need to have fixed column with different from what is proposed by the system u need to save ur query as Woorkbook.
    or if u are displaying them in WEB ANALYSER then u can have report designer to control the formatting.
    Regards
    Ravish

  • Every time i try to update my iPhone 4 to iSO5 it keeps saying my network has timed out! i dont know how to fix it! help please!

    im connected to my network 100%! my brother updated his iphone with no problem with a pc and he has the same network. i dont really know how to fix this .

    This is asked and answered many times each day.  The forum search abr is on the right side of this page.
    Disable your firewall/security software and try again.

  • RMAN-20207/RMAN-06026 Perdictimate

    So last Friday, 16 March 2012, one of the application administrators came to me and told me that a user had deleted ~4 million rows out of a table and we need to recover the database to 15 March 2012 at 1500. So I did, after the restore I opened the database with restlogs. Now they are telling me they need it restored to 15 March 2012 at 1015 but when I do the point in time recovery to that time I get RMAN error "RMAN-20207: UNTIL TIME or RECOVERY WINDOW is before RESETLOGS time", so I looked at my incarnations and see that I have three (20-JUL-10, 28-OCT-11, and 16-MAR-12 (CURRENT)). And when I set the incarnation back to 2 (28-OCT-11) RMAN errors out "RMAN-06026: some targets not found - aborting restore", obviously because that point in time is earlier than the point in time I'm recovering to.
    My question is, did I loose the data from my point in time recovery from 15-MAR-2012 to 28-OCT-2011 because I did the "resetlogs" option when opening the database? If I didn't how can I recover the data from 15-MAR-2012 at 1015? If I did loose my data what can I do to prevent this in the future?
    Note: I'm still learning Oracle/RMAN after inheriting this position when the last guy left.

    I've actually got the control file backup twice in my backup script......
    03/16/2012 04:51 PM 8,355,840 CTLFILE_C-339128723-20120316-03.BCK
    03/16/2012 04:56 PM 8,355,840 CTLFILE_C-339128723-20120316-04.BCK
    03/17/2012 01:12 AM 8,355,840 CTLFILE_C-339128723-20120317-00.BCK
    03/17/2012 01:14 AM 8,355,840 CTLFILE_C-339128723-20120317-01.BCK
    03/18/2012 02:54 AM 8,355,840 CTLFILE_C-339128723-20120318-00.BCK
    03/18/2012 02:55 AM 8,355,840 CTLFILE_C-339128723-20120318-01.BCK
    03/19/2012 01:12 AM 8,355,840 CTLFILE_C-339128723-20120319-00.BCK
    03/19/2012 01:13 AM 8,355,840 CTLFILE_C-339128723-20120319-01.BCK
    03/20/2012 01:12 AM 8,355,840 CTLFILE_C-339128723-20120320-00.BCK
    03/20/2012 01:13 AM 8,355,840 CTLFILE_C-339128723-20120320-01.BCK
    03/21/2012 01:13 AM 8,355,840 CTLFILE_C-339128723-20120321-00.BCK
    03/21/2012 01:15 AM 8,355,840 CTLFILE_C-339128723-20120321-01.BCK
    03/22/2012 01:12 AM 8,355,840 CTLFILE_C-339128723-20120322-00.BCK
    03/22/2012 01:14 AM 8,355,840 CTLFILE_C-339128723-20120322-01.BCK
    But why would the control file backups prior to my PIT restore go missing? This is bothering, I checked my most recent backup logs and didn't see anything that deletes the control files and all my backups from before my PIT restore and before are there without the control files. Did RMAN think they were bad, or not needed and then deleted them?

  • RMAN-20207

    Hi,
    Db :11.2.0.1
    We getting the belo error while execute restore script
    oracle@plm-a33:/u01/app/oracle/11.2.0.1/Bkp_test/Old/Refresh/longest: cat restore_longest_100905*
    Recovery Manager: Release 11.2.0.1.0 - Production on Mon Sep 10 05:02:19 2012
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    RMAN> connect target *
    2> RUN
    3> {
    4> allocate channel t1 type 'SBT_TAPE' parms 'ENV=(LEO_buffersize=1048576,LS_PFILE=/u01/app/oracle/11.2.0.1/product/rdbms/oraclehome/Quest/LEO/param.txt)';
    5> allocate channel t2 type 'SBT_TAPE' parms 'ENV=(LEO_buffersize=1048576,LS_PFILE=/u01/app/oracle/11.2.0.1/product/rdbms/oraclehome/Quest/LEO/param.txt)';
    6> RESTORE DATABASE until time "to_date('2012-09-08-19:15','YYYY-MM-DD-HH24:MI')";
    7> release channel t1;
    8> release channel t2;
    9> }
    10>
    11>
    connected to target database: p261 (DBID=1429245374, not open)
    using target database control file instead of recovery catalog
    allocated channel: t1
    channel t1: SID=5659 device type=SBT_TAPE
    channel t1: LiteSpeed Engine for Oracle v2.2.1.1013
    allocated channel: t2
    channel t2: SID=5782 device type=SBT_TAPE
    channel t2: LiteSpeed Engine for Oracle v2.2.1.1013
    Starting restore at 10-SEP-12
    released channel: t1
    released channel: t2
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 09/10/2012 05:02:22
    RMAN-20207: UNTIL TIME or RECOVERY WINDOW is before RESETLOGS time
    Recovery Manager complete.
    oracle@plm-a33:/u01/app/oracle/11.2.0.1/Bkp_test/Old/Refresh/longest: rman target /
    Recovery Manager: Release 11.2.0.1.0 - Production on Mon Sep 17 13:57:16 2012
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    connected to target database: p261 (DBID=1429245374, not open)
    RMAN> list incarnation;
    using target database control file instead of recovery catalog
    List of Database Incarnations
    DB Key Inc Key DB Name DB ID STATUS Reset SCN Reset Time
    1 1 p261 1429245374 PARENT 5515926705917 19-SEP-12
    2 2 p261 1429245374 PARENT 5515926731900 19-SEP-12
    3 3 p261 1429245374 CURRENT 5515927706621 15-OCT-12
    RMAN>
    Thanks & Regards,
    VN

    5> allocate channel t2 type 'SBT_TAPE' parms 'ENV=(LEO_buffersize=1048576,LS_PFILE=/u01/app/oracle/11.2.0.1/product/rdbms/oraclehome/Quest/LEO/param.txt)';
    6> RESTORE DATABASE until time "to_date('*2012-09-08*-19:15','YYYY-MM-DD-HH24:MI')";
    RMAN> list incarnation;
    using target database control file instead of recovery catalog
    List of Database Incarnations
    DB Key Inc Key DB Name DB ID STATUS Reset SCN Reset Time
    1 1 p261 1429245374 PARENT 5515926705917 19-SEP-12
    2 2 p261 1429245374 PARENT 5515926731900 19-SEP-12
    *3 3 p261 1429245374 CURRENT 5515927706621 15-OCT-12*you are trying to restore the database to the date Aug 08, but you cannot restore your database older than Oct 15....so until time clause should always be more than Oct 15......
    another option is set the incarnation to old incarnation and try using until time accordingly

  • Why do i keep getting these errors and how to fix them?!?!?

    first time i tried inserting a spry data set using a XML source i got the message "expected equal sign(7,10)".  since i could not figure out how to fix it a started a new.  this time i am getting the message "unterminated entity reference, 'm'(25,27)".  i really want to get the 2nd message fixed because the xml sheet is exactly how i want it.
    also is there a place where i can look up what all these messages mean and get a clue as to what is wrong?
    thanks.
    Mori Lina

    i don't have <td> anywhere.  here is the 2 sets of code that i am using.
    XML
    <e-coupons>
    <coupon>
    <store>Joanne's Clothing</store>
    <image><img src="joannescoupon.jpg"/></image>
    <description>Custom made clothing.</description>
    </coupon>
    <coupon>
    <store>Mommy + Me</store>
    <image><img src="mommycoupon.jpg"/></image>
    <description>Whether you're getting ready for a baby, or trying to keep up with an infant, we have everything that you need.</description>
    </coupon>
    <coupon>
    <store>Music Haven</store>
    <image><img src="havencoupon.jpg"/></image>
    <description>We know better than anyone else that everyone needs a soundtrack to their life. Come visit us and we'll start you on your way to walking to your own drummer.</description>
    </coupon>
    </ecoupons>
    HTML  (this is only the body part of it)
    <body>
    <div spry:region="ds1" class="SpotlightAndStacked">
      <div spry:repeat="ds1" class="SpotlightAndStackedRow">
        <div class="SpotlightContainer">
          <div class="SpotlightColumn"> {image}</div>
        </div>
        <div class="StackedContainer">
          <div class="StackedColumn"> {store}</div>
          <div class="StackedColumn"> {description}</div>
        </div>
        <br style="clear:both; line-height: 0px" />
      </div>
    </div>
    </body>

  • DMA reverts to PIO for HD. How to fix?

    Hi,
    One of my disks has reverted to PIO. It's a WD1600BJ UDMA5 capable drive.
    The drive is just fine. No errors. Trust me.
    Due to the nature of WinXP it's impossible to revert to DMA from PIO without doing some nifty deleting in the registry. I used to be able to fix this on HD devices as described at: http://www.michna.com/kb/WxDMA.htm
    However Nvidia in their questionable wisdom does not use these entries, and deleting the "Timing" folders in the registry and rebooting does not help one iota.
    Trying to change the settings in the Device Manager/NVIDIA MCP2S Parallel ATA Controller v2.6 Properties is just plain insulting.  It doesn't work. It will revert to PIO on next boot as long as WinXP has once marked the drive for downgrading.
    I've found no answers to this problem in these or other similar forums nor by googling.
    This situation is really p***ing me off. This was never an issue with other chipsets like e.g. VIA.
    Please let there be someone who knows how to fix this.
    Thank you for your valuable time!
    K7N2 Delta 2 Platinum
    AMD XP 3000+
    TwinMOS PC3200 DDR-DIMM 1024MB, single
    Enermax Whisper EG465P-VE PSUP
    Mist Frostbite Cooler
    Some additional fans
    And a partridge in a pear tree.. .
    (Everything running at defaults.)

    Wonkanoby: (Hale & Pace?
    Deleting the driver and rebooting did not work. Still PIO.
    GlennVidia:
    The HD is fine. SMART is enabled and I just ran DLGDIAG extended test again and everything is peachy peach. The disk and cables are just fine.
    The event viewer reports this several times since yesterday:
    "The driver detected a controller error on \Device\Harddisk2\D."
    The only thing that changed yesterday was that I added a WD2000JB on that parallel ATA chain.
    I will have a look-see if the jumpers are correct. As I understand it the preferred sequence is Master on the first and Slave on the last port. However I didn't think it would detect the drives if the jumpers were incorrect?
    I've also experienced problems with booting as the BIOS tries to detect IDE devices.
    Sometimes it takes forever, and when I just press the reset button all IDE devices are detected in a snap. I boot from a striped set of WD360GD Raptors on the SATA controller, by the way.
    Thank you both for your snappy response an valuable input! Very much appreciated indeed!

  • IMac recognizes old time zone, when auto time zone is on

    Just moved from Japan to Texas.  iMac thinks it's still in Japan, Zama-shi to be exact.  That was my old town.  I'm using a local ISP cable internet.  I'm pretty sure it's not a coincidence that my new ISP would have it's server in Japan.  Does anyone know how to fix this.

    Have you tried choosing a texan Time Zone?
    Sys Prefs>International>Formats>Region, what is set there?
    Open Terminal and type in...
    date
    Hit enter, what does it report?
    Thu Feb 21 16:13:20 PST 2013
    Then try...
    date -u
    Fri Feb 22 00:13:49 GMT 2013

  • Hello Apple? How do i fixed my problem with my ipad apps every time i open that apps it takes 10min. to play the games ant its getting LOST MODE and the ipad system is crashing

    How do i fixed my problem with my ipad apps every time i open that apps it takes 10min. to play the games ant its getting LOST MODE and the ipad system is crashing

    We are fellow users here on these user-to-user forums, you're not talking to iTunes Support nor Apple.
    Have you tried closing all apps via the iPad's multitasking bar and then doing a soft-reset and seeing that helps ? To close all apps :
    iOS 7: double-click the home button to open the taskbar, and then swipe or drag each app's screen from there up and off the top of the screen to close it, and click the home button to close the taskbar.
    iOS 6 and below : from the home screen (i.e. not with any app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of each app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    Soft-reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Can't use time machine due to corruptness even after reinstalling snow lepoard how to fix?

    Yes, someone stole my original apple id in 2009. Now i bought another iphone in late 2012 , Created another apple id due to Apple not being able to help me access my original apple id. Which now since 2 months ago someone or company, or bank stole my second apple id. My iphone 4s with Sprint has no celluar connection supossedly due to no internet  that is what sprint said but I looked it up on apple and it stated that there is a cellluar block on my iphone4s.
    So I guess I will have to go in person to Sprint so they can explain that to me and why I was lied to on the phone earlier.  Back to my 2nd stolen apple id that I registered  my macbook,airport express router, and iphone4s and apple TV. So who ever stole this apple id obviously took over all my mac products I had registered to it. Enough about that back to trying to use time machine....Everytime i do,  my macbook just starts acting all screwed up.  I bought a WD external drive for Mac but I believe someone must have claimed it too.  Since there is 75gb on it that I can't access.  Kind of like my Macbook stating I can't save or have access to the Root .  That is another thing after reinstalling snow lepoard  which works great until I update it.  Which is a problem because everytime I update it to  10.6.8  All the permissions are changed the graphics look horrible and I get redirected so bad its not funny. The email account is a joke.   Also I notice my stationary for email is in Spanish not sure why and on Iworks the document samples are also in spanish. Now I dont speak any other language except ENGLISH AND HAVE LIVED IN UNITEDSTATES MY ENTIRE LIFE.  But my internet provider Fibrant which swears they are local  shows it is in the UK also when i try to access my email for that account it states it is not safe , certificate is expired and someone might be trying to impersonate my server.  Needless to say it is getting old. I had this same problem with Timewarner and Att except att would just remove my ethernet driver then laugh when i would call and ask what the problem was.  Then later I find out when I had DSL that somehow the phone number they had listed was  change to being a digit off from my DSL account which again they laughed and thought it was funny.     Enough about that.  I need to know how to get access to my Apple id.  I gave up on the first one but the second one I did have access to until I registered all my apple products.  What is up with every thing I have with a usb port being corrupt.  I have also notice anywhere in town where I live my phone is English until I come home it is arabic,hebrew , spanish any language except English.  Shouldn't I be safer in my home???????????????  But I am not I am safer in town or anywhere but my home.  EVerything states international  in my home and this has been going on since 2009.....No one can tell me why.  My power from Duke reads that OTHER Is costing me the most $$ every month what ????? This is a joke.    But yet no one can tell me why or how to fix the problem.  Going on 5 years , I have been cut off from everyone I know.  Can't keep contacts on a phone or email accts. They all disappear.  All so I am in Eastern time zone but all my computers and tv seems to think I am in pacific timezone.  No one can fix this problem either.   So if anyone has any suggestions on how to fix at least one of my 5 year problems I would be grateful.  I try to create a new email account but either I am locked out right after or someone turns it into an alias account which doesn't help me.  When I was layed off in 2009-2010  I went back to school/college.  Needless to say they took my School email acct too. 
    Back to my iphone 4s problem.  My icloud email account gets alot of spam starting about 2 months ago and I can't stop it. I try to foward it to Spam @ me but it hasn't helped.My iphone can only connect to the internet with wifi.  Sprint swears that there is not a block but according to apple there is.
    About my macbook and apple ID how can I upgrade my Macbook from 10.6.3 to 10.6.8 with out all the permissions being changed and corrupt?? I have tried several times and it is always the same. I won't to connect my iphone to itunes to try to restore it but it states I  have to update it to 10.6.8. When I do that my computer is alot worse off.  Also how can I use TimeMachine with out my Macbook getting messed up?  Something in my house has taken over anything with a usb port actually years ago and probably now something kept turning all my computers and phones or any electronic I owned it to a printer.  I actually can't even use a printer in my home thats the funny thing.  When I try to connect one when I used windows it stated I had no rights to it and couldn't use it.  Since I switch to Mac not much better.  When I try to print a test page it is all crooked and too small of half off the page.   So it is upsetting that I can't use  a printer but something keeps turning all my electronics into printers.  If anyone knows how to fix this problem that would be great or to stop all this international stuff going on in my home that would  be wonderful.  I try to buy brand new pcs but soon as I start them up something had already taken over. This is with nothing electronic in my home on. Turn everything that a power switch off or unplugged it.  Still I lost rights and access to anything in my home. Now if I am away from my home and try to use one of my laptops they look completely different and almost usable.   Unfortunately I can't afford to move. I thought about it but I am still in bankruptcy and don't have the money.  In the last 4 years I have not been able to reinstall in backups that I have created.  Not sure why oh wait it states I have no rights to do that.  My macbook I lost access to a week after I bought it and connected my iphone too.  You don't know how many times I wish I had never backed my iphone 4s to my Macbook.  Right after I could not log into it.  Even used the disk to reset the password nope still couldn't log into it.   Try to type the formula for resetting the password and nope it didn't work either.
    Any suggestions would be appreciated---Need to gain access to my apple Id that would be a great start
    Thanks, Suzanne
    UnitedSTates
    Eastern timezone

    Didn't really read much at all of your post. Much, much too long, irrelevant details and & no paragraphs.
    Can't use time machine due to corruptness
    Post over here -> Mac OS X v10.6 - Snow Leopard forum
    About my macbook and apple ID how can I upgrade my Macbook from 10.6.3 to 10.6.8 with out all the permissions being changed and corrupt??
    Same as above. Post in the correct forum.
    Need to gain access to my apple Id that would be a great start
    -> http://support.apple.com/kb/HT5625

  • After trying to restore iPod several times, it is incapable of verifying the restore.  Any ideas how to fix it?  I've restarted both the iPod and my computer several times, and have redownloaded the lastest version of iTunes.  Help?

    My iPod had an error and I attempted to restore the iPod to factory defaults.  It was able to empty the iPod of the software on it, but it has yet to be able to successfully restore the iPod.  It goes through all the steps successfully until it gets to the "Verifying iPod Restore."  After the progress bar has completed, it then gives me an error message.  Every time, it's the same message: Error 6.  However, none of the suggestions on the apple technical site have worked.  I even completely turned off ALL of my anti-virus /firewall programs and it still would not go through.  Any suggestions how to fix it?

    Joe,
    Try removing the com.apple.iCal.plist file from your Macintosh HD/Users/yourusername/Library/Preferences Folder. To find that folder, use Finder>Go Menu>Depress the "Option" key>Library. Drag the .plist file to your desktop, and log out/in or restart and check iCal for functionality.

Maybe you are looking for