After Flashback database can I use my backups?

I performed a flashback database and then opened the database with
alter database open resetlogs;
Now when I try the following command in rman I get this message:
RMAN> list backup
2> ;
new incarnation of database registered in recovery catalog
starting full resync of recovery catalog
full resync complete
List of Backup Sets
===================
BS Key Type LV Size Device Type Elapsed Time Completion Time
435 Incr 1 9.36M DISK 00:00:11 30-AUG-09
BP Key: 440 Status: AVAILABLE Compressed: NO Tag: TAG20090830T170015
All the backups are still there but it tells me a new incarnation of the database has been registered in the recovery catalog.
My question is: Do I need to do anything different from now on? Also can my existing backups still be used if needed?
thanks in advance,
Richard

For u question ist take a rman backup.
RMAN> backup database;
Starting backup at 31-AUG-09
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=140 devtype=DISK
channel ORA_DISK_1: starting full datafile backupset
channel ORA_DISK_1: specifying datafile(s) in backupset
input datafile fno=00001 name=F:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSTEM01.DBF
input datafile fno=00003 name=F:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSAUX01.DBF
input datafile fno=00005 name=F:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\EXAMPLE01.DBF
input datafile fno=00002 name=F:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\UNDOTBS01.DBF
input datafile fno=00004 name=F:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\USERS01.DBF
channel ORA_DISK_1: starting piece 1 at 31-AUG-09
channel ORA_DISK_1: finished piece 1 at 31-AUG-09
piece handle=F:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\ORCL\BACKUPSET\2009_08_31\O1_MF_NNNDF_TAG20090831T131520_59PY48QX_.BKP tag=TAG20090831T131520 comment=
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:45
channel ORA_DISK_1: starting full datafile backupset
channel ORA_DISK_1: specifying datafile(s) in backupset
including current control file in backupset
including current SPFILE in backupset
channel ORA_DISK_1: starting piece 1 at 31-AUG-09
channel ORA_DISK_1: finished piece 1 at 31-AUG-09
piece handle=F:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\ORCL\BACKUPSET\2009_08_31\O1_MF_NCSNF_TAG20090831T131520_59PY5R4D_.BKP tag=TAG20090831T131520 comment=
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:04
Finished backup at 31-AUG-09
After that …..
SQL> create table y (id number);
Table created.
SQL> select to_char(sysdate,'dd-mm-yy hh24:mi:ss') from dual;
TO_CHAR(SYSDATE,'
31-08-09 13:23:03
SQL> drop table y
2 ;
Table dropped.
SQL> shutdown abort
ORACLE instance shut down.
SQL> startup mount
ORACLE instance started.
Total System Global Area 612368384 bytes
Fixed Size 1250428 bytes
Variable Size 226495364 bytes
Database Buffers 377487360 bytes
Redo Buffers 7135232 bytes
Database mounted.
SQL> flashback database to timestamp to_timestamp('31-08-09 13:23:03','dd-mm-yy hh24:mi:ss');
Flashback complete.
SQL> alter database open resetlogs;
Database altered.
SQL> desc y
Name Null? Type
ID NUMBER
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup mount
ORACLE instance started.
Total System Global Area 612368384 bytes
Fixed Size 1250428 bytes
Variable Size 226495364 bytes
Database Buffers 377487360 bytes
Redo Buffers 7135232 bytes
Database mounted.
SQL> select name from v$datafile;
NAME
F:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSTEM01.DBF
F:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\UNDOTBS01.DBF
F:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSAUX01.DBF
F:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\USERS01.DBF
F:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\EXAMPLE01.DBF
SQL> host del F:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\USERS01.DBF
SQL> alter database open;
alter database open
ERROR at line 1:
ORA-01157: cannot identify/lock data file 4 - see DBWR trace file
ORA-01110: data file 4: 'F:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\USERS01.DBF'
Then I restore old backup from rman
RMAN> restore database;
Starting restore at 31-AUG-09
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=154 devtype=DISK
channel ORA_DISK_1: starting datafile backupset restore
channel ORA_DISK_1: specifying datafile(s) to restore from backup set
restoring datafile 00001 to F:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSTEM01.DBF
restoring datafile 00002 to F:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\UNDOTBS01.DBF
restoring datafile 00003 to F:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSAUX01.DBF
restoring datafile 00004 to F:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\USERS01.DBF
restoring datafile 00005 to F:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\EXAMPLE01.DBF
channel ORA_DISK_1: reading from backup piece F:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\ORCL\BACKUPSET\2009_08_31\O1_MF_NNNDF_TAG20090831T131520_59PY48QX_.BK
channel ORA_DISK_1: restored backup piece 1
piece handle=F:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\ORCL\BACKUPSET\2009_08_31\O1_MF_NNNDF_TAG20090831T131520_59PY48QX_.BKP tag=TAG20090831T131520
channel ORA_DISK_1: restore complete, elapsed time: 00:00:46
Finished restore at 31-AUG-09
RMAN> recover database;
Starting recover at 31-AUG-09
using channel ORA_DISK_1
starting media recovery
archive log thread 1 sequence 22 is already on disk as file F:\ORACLE\PRODUCT\10.2.0\ARC\ARC00022_0693947048.001
archive log thread 1 sequence 23 is already on disk as file F:\ORACLE\PRODUCT\10.2.0\ARC\ARC00023_0693947048.001
archive log filename=F:\ORACLE\PRODUCT\10.2.0\ARC\ARC00022_0693947048.001 thread=1 sequence=22
archive log filename=F:\ORACLE\PRODUCT\10.2.0\ARC\ARC00023_0693947048.001 thread=1 sequence=23
media recovery complete, elapsed time: 00:00:06
Finished recover at 31-AUG-09
Then I back sqlplus
SQL> alter database open;
Database altered.
SQL> desc y
Name Null? Type
ID NUMBER
So answer your question is , YES you can restore from you old backup , not need to do anything else.
Regards
Liakat hossain

Similar Messages

  • Can I use a backup from my Bookpro to install on my iMac.

    I had some HD troubles, and after Apple put in a new one, there seems to be some files out of whack. For example, I have a folder in my HD Directory called Base System 53829, which contains no data. Also, my "User Guides and Information" folder is missing, but there is an alias.
    Things like Apple loops are not in the same directory as they are on my BookPro.
    Can I use the backup I made from my BookPro on my Mac? Or would it be better to use target disk mode to transfer the proper setup?

    Thanks a lot for your time.
    I thought the only thing that matters is whether they are both Intel core2 duo, and both already running Leopard.
    Anyway, from what I understand in the link you provided, if the OS version is NEWER on the computer that the backup comes from, then it will work.
    My BookPro (Jan 2009) is almost 2 years newer that my iMAc (late 2007), so cloning and installing my complete BookPro HD, and installing it on my older iMac should work.
    Correct?

  • If my computer crashes can I use a backup disk to recover it

    If my computer crashes can I use a backup disk to recover it
    This question was solved.
    View Solution.

    there are multiple ways to recover OS to factory settings... here are we go.
    1) please try running f11 recovery which will install the OS using recovery partition. thats the easiest way to fix the issue. just tap the f11 key at the time of powering on the computer.
    2) incase F11 is not working and you have created the media, use your own recovert media which was created on same computer.
    3) incase none of them (f11 and self created dvd/cds) work and you have to get DVDs from HP. Order DVDs from HP and use them to re-install OS.
    This should help get the media.
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&docname=bph07143
    alternatively, Please visit www.hp.com ; select country from the bottom left handside if you are outside USA.
    now please select "support and drivers" > now click drivers & software> input model number of your computer. (if the list is populated incase similar models are there in this series, select the model you have)
    select the OS you recieved this with computer and click next > now you should get one option "order recovery media - select that and under that you have type of media available. select and media you want.
    incase you have issue in ordering media; you can try after sometime and/or contact HP support to get the media ordered.
    also for few countries or products recovery order online may not be available; in such cases, please visit region/country website ( www.hp.com and select country). click connect with HP and contact HP. email/phone support numbers are available, please contact support team to place an order for your product in specific country(if available).
    hope it helps, Good Luck !!!
    Regards,
    WW
    “I am an HP Employee“
    ***** Click the KUDOS star on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem***

  • How can i use "icloud backup" with ios 4.2.1?

    How can i use "icloud backup" with ios 4.2.1? I tried to update my ihpone 3G wih the newest IOs. Seems not to be possible.

    You cannot.
    It requires ios 5.
    Your iphone can only go to 4.2.1

  • Can I use Azure Backup and Windows Server Backup in a Windows Server ?

    Can I use Azure Backup and Windows Server Backup in a Windows Server ?
    I want to use both Azure Backup and Windows Server Backup for two senarios.
    For Disaster Recovery = Azure Backup to Azure Storage.
    For non-Disacter Recovery = Windows Server Backup to a on-premises disk.
    The non-Disaster Recovery mean a file or folder recovery, disk crash recovery, migrate to another servers.
    The non-Disaster Recovery need the speed of recovery just like 10 TB recovery as soon as possible.
    If I can use both Azure Backup and Windows Server Backup in a Windows Server,
    Are there any notes for using both ?
    Regards,
    Yoshihiro Kawabata 

    Hi Yoshihiro Kawabata,
    Thanks for posting here!
    Azure Backup to Azure Storage and Windows Server Backup to a on-premises disk. These are two different question and can be answered individually.
    Azure Backup to Azure Storage - Possible.
    Windows Server Backup to a on-premises disk - Possible.
    Can I use Azure Backup and Windows Server Backup in a Windows Server? Is a question.
    I will check on this and get back to you at the earliest.
    Thanks!
    Sadiqh

  • Can u use a backup from one iMac to restore pictures from my other iMac both currently snow leopard?

    Can u use a backup from one iMac to restore pictures to another iMac both currently on snow leopard?

    Yes you can use Migration Assistant to restore your library.  http://support.apple.com/kb/HT4889

  • Can I use the backups that I made with Leopard ?

    Hi,
    Can I use the backups that I made with Leopard or do I have to re-configure Time Machine again, like it never happened when SL is installed ?
    Sincerely.

    You should only have to worry about doing this, if you choose to erase and install Snow Leopard.
    Snow Leopard by default upgrades your system, and thus a restore would only be necessary in an emergency.

  • Can I use the backup of one iPod Touch on another?

             Hello,
    The other day, I accidentally dropped my 4th generation 32GB iPod Touch on concrete from a couple of feet.  The screen has many cracks and the top-right corner is missing a few chunks of screen. The corner is completely shattered and the "organs" are visible through this gash.  I backed up the iPod to my computer.  I was wondering if this iPod "crashes' or stops working due to the hole, can I use the back up of the data of the iPod on another 4th generation 32GB iPod Touch to have my previous data(from the original iPod) on the new iPod?
              Thanks in advance.
    P.S. The iPod is currently working fine as of the time this was posted(including the near-by camera), but I am very concerned it that it may become unusable.  And if you know of a place where I may be able to get it repaired for cheaper than Apple, please share.

    I was wondering if this iPod "crashes' or stops working due to the hole, can I use the back up of the data of the iPod on another 4th generation 32GB iPod Touch to have my previous data(from the original iPod) on the new iPod?
    Yes. That is completely correct and the expected result of having to replace an iPod.
    Given the damage you describe, it might not be cost effective to bring it to anyone other than Apple. They have a flat rate exchange program: http://www.apple.com/support/ipod/service/prices/
    Looks like $149 Could be worse, if you had not synced it with your computer.
    Now consider what would happen if your Windows computer broke. Given the prevalence of viruses and such, it is a very likely possibility. Research means to back up your computer and make it a habit to keep the backups updated.

  • [PROBLEM SOLVED] After last update, Can't use keyboard in Xorg

    Apparently the last system upgrade installed "xf86-input-keyboard-1.3.2-1-i686" but I reverted back to "xf86-input-keyboard-1.3.1-1-i686" and everything is working again.
    Lesson learned: put all xorg related packages to hold because my geforce2 mx440 won't need updates.
    This is just frustrating. After doing a system upgrade (which upgraded xorg to version 1.5) I can't use the keyboard anymore. In fact, my screen would freeze also, as long as I was using the latest Xorg version. This machine's card is a geforce2 mx440.
    So I downgraded xorg-server with pacman -Rd xorg-server and pacman -U /var/cache/pacman/pkg/xorg-server-yadayada1.4yadayada; Fine, I can use the mouse and open X just as normal as before. BUT the keyboard seems helpless.
    xorg.conf
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig:  version 1.0  (buildmeister@builder3)  Tue Jan 22 19:53:46 PST                                                                               2008
    # nvidia-settings: X configuration file generated by nvidia-settings
    # nvidia-settings:  version 1.0  (buildd@vernadsky)  Tue Mar  4 20:24:34 UTC 200                                                                              8
    #150708
    Section "Screen"
            Identifier      "Screen0"
            Device          "Videocard0"
            Monitor         "Monitor0"
            Option          "TwinView"      "0"
            Option          "TwinViewXineramaInfoOrder"     "CRT-0"
            Option          "metamodes"     "1024x768_85 +0+0; 1280x1024 +0+0; 1152x                                                                              864_75 +0+0; 800x600_100 +0+0; 640x480_100 +0+0"
            Option          "DisableGLXRootClipping"        "True"
            Option          "AddARGBGLXVisuals"             "True"
            SubSection "Display"
                    #Virtual        1280    1024
                    Virtual 1024    768
                    Depth   24
                    Modes           "1024x768@85"   "1152x864@75"   "1280x1024@60" "                                                                              800x600@100"    "640x480@100"
            EndSubSection
            Defaultdepth    24
    EndSection
    Section "Screen"
            Identifier      "screen1"
            Device          "device1"
            Monitor         "monitor1"
            SubSection "Display"
                    Depth   24
                    Modes           "1024x768@85"
    #Modes           "640x480@60"
            EndSubSection
            Option          "AddARGBGLXVisuals"     "True"
            #Option                 "AllowGLXWithComposite" "True"
            Defaultdepth    24
    EndSection
    Section "Device"
            Identifier      "Device0"
            Driver          "nvidia"
            Vendorname      "NVIDIA Corporation"
    EndSection
    Section "Device"
            Identifier      "Videocard0"
            Driver          "nvidia"
            Vendorname      "NVIDIA"
            Boardname       "NVIDIA GeForce2 Integrated (generic)"
            Busid           "PCI:1:0:0"
            Screen  0
            Option          "RenderAccel" "true"
    EndSection
    Section "Device"
            Identifier      "device1"
            Driver          "nvidia"
            Vendorname      "NVIDIA"
            Boardname       "NVIDIA GeForce2 Integrated (generic)"
            Busid           "PCI:1:0:0"
            Screen  1
    EndSection
    Section "InputDevice"
            # generated from default
            Identifier      "Mouse0"
            Driver          "mouse"
            Option          "Protocol"      "auto"
            Option          "Device"        "/dev/psaux"
            Option          "Emulate3Buttons"       "no"
            Option          "ZAxisMapping"  "4 5"
    EndSection
    Section "InputDevice"
            # generated from default
            Identifier      "Keyboard0"
            Driver          "kbd" #"keyboard"
            Option          "XkbLayout"   "br"
            Option          "XkbModel"    "abnt2"
    EndSection
    Section "ServerLayout"
            Identifier      "Layout0"
      screen 0 "Screen0" 0 0
            Inputdevice     "Keyboard0"     "CoreKeyboard"
            Inputdevice     "Mouse0"        "CorePointer"
    EndSection
    Section "Module"
            Load            "extmod"
    #       Load            "type1"
            Load            "freetype"
            Load            "GLX"
    #       Load            "v4l"
    EndSection
    Section "Monitor"
            Identifier      "Monitor0"
            Vendorname      "Samsung"
            Modelname       "Samsung SyncMaster 753DF(X)/703DF(X)/783DF(X)/CD173A(T)                                                                              "
            Horizsync       30.0    -       71.0
            Vertrefresh     50.0    -       160.0
            Gamma   1
      modeline  "640x480@60" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync
      modeline  "640x480@72" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync
      modeline  "640x480@75" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync
      modeline  "640x480@85" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync
      modeline  "800x600@56" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync
      modeline  "800x600@72" 50.0 800 856 976 1040 600 637 643 666 +hsync +vsync
      modeline  "800x600@75" 49.5 800 816 896 1056 600 601 604 625 +hsync +vsync
      modeline  "800x600@85" 56.3 800 832 896 1048 600 601 604 631 +hsync +vsync
      modeline  "800x600@60" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
      modeline  "832x624@75" 57.3 832 864 928 1152 624 625 628 667 -hsync -vsync
      modeline  "1024x768@85" 94.5 1024 1072 1168 1376 768 769 772 808 +hsync +vsync
      modeline  "1024x768@75" 78.8 1024 1040 1136 1312 768 769 772 800 +hsync +vsync
      modeline  "1024x768@70" 75.0 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
      modeline  "1024x768@60" 65.0 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
      modeline  "1024x768@43" 44.9 1024 1032 1208 1264 768 768 776 817 +hsync +vsync                                                                               interlace
      modeline  "1152x864@75" 108.0 1152 1216 1344 1600 864 865 868 900 +hsync +vsyn                                                                              c
      modeline  "1280x960@60" 102.1 1280 1360 1496 1712 960 961 964 994 -hsync +vsyn                                                                              c
      modeline  "1280x1024@60" 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync                                                                               +vsync
      modeline  "1400x1050@60" 122.6 1400 1488 1640 1880 1050 1051 1054 1087 -hsync                                                                               +vsync
    EndSection
    Section "Monitor"
            Identifier      "monitor1"
            Vendorname      "Plug 'n' Play"
            Modelname       "Plug 'n' Play"
            Gamma   1
      modeline  "1024x768@85" 94.5 1024 1072 1168 1376 768 769 772 808 +hsync +vsync
      #modeline  "640x480@60" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync
    EndSection
    Section "Extensions"
            Option          "Composite"     "Enable"
            Option          "NoPM"          "True"
    EndSection
    #Section "Files"
    #       Rgbpath         "/usr/X11R6/lib/X11/rgb"
    #       EndSection
    pacman -Q |grep -ir "xorg"
    xorg-apps 1.0.3-3
    xorg-font-utils 1.0.3-3
    xorg-fonts-100dpi 1.0.1-1
    xorg-fonts-75dpi 1.0.1-2
    xorg-fonts-alias 1.0.1-1
    xorg-fonts-encodings 1.0.2-2
    xorg-fonts-misc 1.0.0-3
    xorg-res-utils 1.0.3-2
    xorg-server 1.4.2-1
    xorg-server-utils 7.3-1
    xorg-twm 1.0.4-2
    xorg-utils 7.3-1
    xorg-xauth 1.0.3-1
    xorg-xinit 1.1.1-1
    xorg-xkb-utils 7.3-1
    Xorg.0.log:
    (II) NVIDIA(0): Initialized GART.
    (II) NVIDIA(0): Setting mode "1024x768_85+0+0"
    (II) Loading extension NV-GLX
    (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
    (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
    (==) NVIDIA(0): Backing store disabled
    (==) NVIDIA(0): Silken mouse enabled
    (II) Loading extension NV-CONTROL
    (==) RandR enabled
    (II) Setting vga for screen 0.
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-APPGROUP
    (II) Initializing built-in extension XAccessControlExtension
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension XFree86-Bigfont
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing built-in extension XEVIE
    (II) Initializing extension GLX
    (EE) No Input driver matching `kbd'
    (**) Option "Protocol" "auto"
    (**) Mouse0: Device: "/dev/psaux"
    (**) Mouse0: Protocol: "auto"
    (**) Option "CorePointer"
    (**) Mouse0: always reports core events
    (**) Option "Device" "/dev/psaux"
    (**) Option "Emulate3Buttons" "no"
    (**) Option "ZAxisMapping" "4 5"
    (**) Mouse0: ZAxisMapping: buttons 4 and 5
    (**) Mouse0: Buttons: 9
    (**) Mouse0: Sensitivity: 1
    (II) evaluating device (Mouse0)
    (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
    (--) Mouse0: PnP-detected protocol: "ExplorerPS/2"
    (II) Mouse0: ps2EnableDataReporting: succeeded
    What in hell means the (EE) No Input driver matching `kbd'? I have no idea what happened because no configs were changed whatsoever.
    Last edited by joqueza (2009-02-26 01:39:27)

    joqueza wrote:This is just frustrating. After doing a system upgrade (which upgraded xorg to version 1.5) I can't use the keyboard anymore. In fact, my screen would freeze also, as long as I was using the latest Xorg version. This machine's card is a geforce2 mx440..
    Perhaps you can find some help here http://wiki.archlinux.org/index.php/Xor … otplugging (or in one of the many threads about xorg 1.5 breaking input devices)
    No Idea about your problem after downgrading (expect just as a guess, there is some problem with xbinkeys when it is autostarted with the window manager -- http://bbs.archlinux.org/viewtopic.php?id=65468).

  • Can't use Story, Backup won't complete or cancel!

    So I went to back up a project and it won't stop trying to backup the project as result, no mater where I login when I login or what I do when I login it goes back to trying to back up the project and means I can't do anything.  Can someone tell me how to get it to stop or fix this.  Basicly I can't use story and am losing valuable script writing time.  I have only used story for htis project and I have been writing using Story since July 2012, and never had an issue.

    Hi,
    Can you please mail us your Story's login email id at AdobeStory-Support<at>adobe.com ?

  • My iPod had a problem, so apple give me a new one and i can´t use the backup of my iPod that had a problem, what can i do ?

    I had a problem with my iPod, so because of that apple gave me a new one. So i want to get all my infomation back using the bachup of icloud, but when i put in the iPod use a backup of icloud it said that there is no backup and in iTunes didn´t apear. What can i do ?

    That's the problem.  You can't restore a device to a backup made on a device that was running a higher iOS version than the device being restored.   You'll first have to update the replacement to iOS 6, then go to Settings>General>Reset and tap Erase All Content and Settings, go back through the setup screens again and when given the option select Restore From iCloud Backup.  Your backup should now be available to restore to.

  • Can I use multiple backup drives?

    Hi
    I currently use one external USB drive to back up my Mini (running Yosemite) using Time Machine.
    I would like to back up to two drives instead of just one, perhaps using a strategy where I alternate back up between drives, so that if one drive fails, I'm always one back up away from file recovery.
    This may sound excessive, but I always remember this: there are two kinds of people, those who have lost data and those who will lose data
    thanks
    nick

    Hi,
    You certainly can use two backup disks under Time Machine, and it is a smart idea to use two backup disks for added protection. When you have more than one disk chosen for Time Machine, it is smart enough to use both disks on an alternating basis. Just connect the new backup disk and choose "Use Both" and both of your disks will be used as backups. The 1st time you do a full backup (depending on how much data you have) can take a long time. Then it will take turns between each disk when Time Machine works it's magic. You can even have 3 disks if you want the extra protection?
    Regards,
    NS

  • After 4.2 can't use accentuation properly in Ipad

    Need help please.
    After upgrading to 4.2 software can't use the keyboard properly anymore. The accentuation in portuguese from Brasil doesn't work. I also tried French and Spanish keyboard too, without results.
    Has anybody from Brazil, or other country experienced the same problem after upgrading to the new software?
    I would appreciate if somebody could help me.
    tks

    Tom:
    Thank you for your reply.
    When using 3.2 and holding down the vowel keys in spanish and french keyboard, some vowels I could accent. The 3.2 soft didn´t have portuguese yet. After 4.2, using portuguese / Brazillian, In the popup menu with accented characters, When I hold down C, for example, pressing Ç, I have "cf" characters. The tilde "~" appears "ae", and the acute accent "'" doesnt´t appear. I have tried other languages, but they don´t work too. I will try a little more. If impossible, I will contact Apple for a help.
    Thank you again and sorry for my poor english.
    Obs.: When visiting USA in 1992, I had a chance to visit your city, Flagstaff.

  • Satellite L670-DX1 - after SP1 installation can't use memory card reader

    Hi
    Since I have upgraded my Satellite L670-DX1 from Win7 64Bits to Win7 64 bits SP1 (2 days ago) I can't use my memory card reader anymore, it always says it is a bad card and I should better reformat the card, with any card.
    Does anyone have a similar problem or even better a solution for me?
    Greetings

    yes i have installed sp1 using windows updater, i have tried to let the laptop search for new drivers, and i have the newest, i can't role it back because some virusscanning software makes it fail (allthough i made them inactive after cutting the wireless connection and before putting the old configurations back)

  • How do I recover notes after a "Restore iPhone" without using a backup?

    I have a bunch of notes on my iPhone in the "on My iPhone" account.  To fix the vanishing music problem on my iPhone, the Apple store had me hard restore my iPhone and told me not to restore from backup.  I can find how to replace my music, calendars, etc from iTunes, but I can't figure out how to restore my "notes".  Since I've been storing a lot of stuff in notes, I need to get the notes back.  There is no obvious place in iTunes.  There are no notes in my my "notes" app in OS 10.9.

    If they were in the "On my iPhone" account, they are gone now. You would have had to sync them to the Notes app on your Mac.
    Did you ever do a backup? If so, there are some programs that claim they can extract data from backups, so trying one of those may be worth doing.
    ~Lyssa

Maybe you are looking for