A strange restore scenario

Hi,
I have a really small 10.2.0.4 database with only one user tablespace called USERS. This tablespace has only one datafile: "/datafiles/users.dbf". The database is not in archive log mode. Two months ago I performed a cold backup of the only file "/datafiles/users.dbf" (I don't have other backups or files). Now I need to restore the old content of tablespace. The problem is that the old file users.dbf has an old SCN respect on other files. My question now is:
What are the actions (supported and not) I can perform to get back data from the old file?

Insaponata wrote:
Hi,
I have a really small 10.2.0.4 database with only one user tablespace called USERS. This tablespace has only one datafile: "/datafiles/users.dbf". The database is not in archive log mode. Two months ago I performed a cold backup of the only file "/datafiles/users.dbf" (I don't have other backups or files). Now I need to restore the old content of tablespace. The problem is that the old file users.dbf has an old SCN respect on other files. My question now is:
What are the actions (supported and not) I can perform to get back data from the old file?Without having any archived redo log files generated after the USERS tablespace backed up, you have no chance to recover it
Kamran Agayev A.
Oracle ACE
My Oracle Video Tutorials - http://kamranagayev.wordpress.com/oracle-video-tutorials/

Similar Messages

  • Restore Scenarios when backup was taken on Standby exadata cluster through zfs

    I have a question here.
    We have a dataguard environment in our exadata clusters.  Primary resides on full Rack and standby on half rack. Both x4 and backup are disks to disks through zfs.
    The backups are full once a week and incremental afterwards , happens on the standby side per oracle  best practice.
    However we try to test restore scenarios now and how do we restore the backups to primary?
    Thanks in advance.

    Hi..
    To validate the RMAN backup you need to restore it at some new host server.You can go through
    [http://download.oracle.com/docs/cd/B19306_01/backup.102/b14191/rcmrecov.htm#BRADV908]
    You can even use the RMAN validation command.
    Anand

  • Backup and Restores scenario

    Are my thoughts correct that in the event of a failure, there will always be data loss?
    Scenario:
    Full backup of database every day at 11:00pm.
    Log backup of database every hour.
    1/8/2015 full backup completed successfully at 11:00pm, log backup 1/9/2015  at 12:00am, 1:00am, 2:00am completed successfully as well.
    If the server goes down on 1/9/2015 2:45am; I can only restore up to 1/9/2015 2:00am, correct? All the data between 2:00am - 2:45am will be lost, correct?
    Is there to restore the data?
    Thanks.

    Are my thoughts correct that in the event of a failure, there will always be data loss?
    Scenario:
    Full backup of database every day at 11:00pm.
    Log backup of database every hour.
    1/8/2015 full backup completed successfully at 11:00pm, log backup 1/9/2015  at 12:00am, 1:00am, 2:00am completed successfully as well.
    If the server goes down on 1/9/2015 2:45am; I can only restore up to 1/9/2015 2:00am, correct? All the data between 2:00am - 2:45am will be lost, correct?
    Is there to restore the data?
    Thanks.
    Would there be data loss or not depends on whether log file is intact or not . If you can take tail log backup and other backups files are valid chances of data loss is very less
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Backup and Restore Scenarios

    Hello Everyone,
    I want to estimate how much stuff I have,  in BACKUP &RESTORE concepts.
    so please ask normal as well as scenario based questions regarding this.
    so what's late let us start... please! 
    Thank you. 

    so please ask normal as well as scenario based questions regarding this.
    so what's late let us start... please! 
    Do you think people have time here to ask questions ? Please read online you would find lot of links and scenario based question.
    How much data has changed since last full backup
    Trending growth from backup
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Strange Urgent scenario please help!

    Hello Friends,
    I am having one strange problem in InfoCube loading.
    I am loading from 0FI_GL_4 extractor to BW InfoCube with full load.
    I have start routine  logic in my update rules.I debugged routine several times simulated update from PSA plenty of times.
    In debugging and simulation it gives expected results, but when I actually load data to InfoCube it misses some data.
    Some data are not showing up in InfoCube.
    Please help with your suggestions.
    Thanks,
    John.

    Ajax,
    What do you mean by key of the IS.There is no end routine as this is 3.x
    Jr Roberto,
    The records are cuting down in the start routine, I can see it clearly into the monitor.
    But the strange thing to notice is when I debugg code for error records it gives right result and when I load actually it cuts some records.
    Thanks for looking into it.

  • Backup restore scenario problem

    Hi Experts,
    One of the user accidentally truncated a table(exp_data) in morning. that table is in exp_tab01 tablespace. that tablespace only contains exp_data table. we want to recover that table. backup was taken yesterday.
    Flashback doesnt work as table truncated. it says definition changed. we dont want to recover whole database, because database size is more than 1 TB.
    our backup mount point doesnt have sufficient space to hold complete database backup at one time. we run are backups in chunks because of space issue.
    Is there any way i can just only recover a tablespace?
    Thanks in advance.
    Dave

    Hi,
    If you have space constraints on your current production server might be a partial restore and recover on a second server could help out.
    Than use data pump to re insert the lost data.
    The datafiles needed for the partial restore would be:
    select file#
    from v$datafile
    where ts# in (select ts#
    from v$tablespace
    where name in ( 'SYSTEM','SYSAUX','EXP_TAB01')
    or name like 'UNDO%');
    Regards,
    Tycho

  • DBCA backup/restore scenario

    Greetings Oracle Experts,
    I am trying to use DBCA to duplicate database on another machine. Here are the commands used:
    # To backup database
    dbca -silent -createCloneTemplate -sourceSID $DB_NAME \
        -templateName $DB_NAME -sysDBAPassword $PASSWORD -maintainFileLocations false
    # To restore database
    dbca -silent -createDatabase -templateName $BACKUP_DB \
        -cloneTemplate -gdbName $SID -sid $SID \
        -sysPassword $PASSWORD -systemPassword $PASSWORD \
        -datafileJarLocation /u01/app/oracle/product/10.2.0/db_1/assistants/dbca/templates \
        -characterSet AL32UTF8 -nationalCharacterSet AL16UTF16Here's a few questions I have come across:
    1. After restoring the database, all users accounts except SYS and SYSTEM are locked. Is there any way to make user account_status same as the original database in silent mode?
    2. When doing restore, I can specify the NLS_CHARACTERSET and NLS_NCHAR_CHARACTERSET. Is there any way to make it keep the character set of original database? If I specify the same character set, will there be any conversion (and possibly data loss due to conversion) occurring?
    3. What else is different between duplicated database and original database? (ie. File locations, user privileges, etc.)
    Appreciate your input and help.
    Edited by: user10134531 on Jan 19, 2009 11:40 AM

    For backup, we create a template based on source database including all data with dbca. During restore, we create a new database from the template.
    The actual command:
    Backup:
    dbca -silent -createCloneTemplate -sourceSID srcdb -templateName srcdb -sysDBAPassword password -maintainFileLocations falseRestore:
    dbca -silent -createDatabase -templateName srcdb -cloneTemplate -gdbName srcdb.domainname -sid srcdb -sysPassword password -systemPassword password -datafileJarLocation $DBCA_TEMPLATE_DIR -characterSet $NLS_CHARACTERSET -nationalCharacterSet $NLS_NCHAR_CHARACTERSET

  • RMAN restore scenario

    I am not using catalog. control file record set to 31days but retain only 1 full backup in disk.
    took a backup on 23-may which got deleted from disk as of 28-may. all archive logs taken on 23-may got deleted from disk as well.
    Goal : I want to restore validate for 23-may.
    I restored the files from tape (both image copies and archive logs).
    rman doesn't recognize the archive logs. What is needed to make rman recognize the files restored from tape.
    Thanks

    Thanks for all your replies. At first I want to validate the backups taken on 23-may and make sure they are recoverable.
    rman shows 27-may , 28-may backup as recoverable and archivelogs dated on 27-may and 28-may
    RMAN> list backup recoverable;
    using target database control file instead of recovery catalog
    List of Backup Sets
    ===================
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    18 Full 7.08M DISK 00:00:01 27-MAY-08
    BP Key: 18 Status: AVAILABLE Compressed: NO Tag: TAG20080527T175134
    Piece Name: /orabackup/boepcm/rman/online/c-3049278399-20080527-01
    Control File Included: Ckp SCN: 462524 Ckp time: 27-MAY-08
    SPFILE Included: Modification time: 26-MAY-08
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    19 Full 7.08M DISK 00:00:01 28-MAY-08
    BP Key: 19 Status: AVAILABLE Compressed: NO Tag: TAG20080528T175117
    Piece Name: /orabackup/boepcm/rman/online/c-3049278399-20080528-00
    Control File Included: Ckp SCN: 501491 Ckp time: 28-MAY-08
    SPFILE Included: Modification time: 28-MAY-08
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    20 Full 7.08M DISK 00:00:00 28-MAY-08
    BP Key: 20 Status: AVAILABLE Compressed: NO Tag: TAG20080528T175136
    Piece Name: /orabackup/boepcm/rman/online/c-3049278399-20080528-01
    Control File Included: Ckp SCN: 501519 Ckp time: 28-MAY-08
    SPFILE Included: Modification time: 28-MAY-08
    RMAN> list archivelog all;
    List of Archived Log Copies
    Key Thrd Seq S Low Time Name
    61 1 51 A 27-MAY-08 /orabackup/boepcm/rman/online/arch_D-BOEPCM_id-3049278399_S-51_T-1_A-655222143_2tjhh9d1
    62 1 52 A 27-MAY-08 /orabackup/boepcm/rman/online/arch_D-BOEPCM_id-3049278399_S-52_T-1_A-655222143_2ujhh9d3
    58 1 53 A 27-MAY-08 /orabackup/boepcm/rman/online/arch_D-BOEPCM_id-3049278399_S-53_T-1_A-655222143_2qjhh9co
    59 1 54 A 27-MAY-08 /orabackup/boepcm/rman/online/arch_D-BOEPCM_id-3049278399_S-54_T-1_A-655222143_2rjhh9ct
    60 1 55 A 28-MAY-08 /orabackup/boepcm/rman/online/arch_D-BOEPCM_id-3049278399_S-55_T-1_A-655222143_2sjhh9cv
    63 1 56 A 28-MAY-08 /orabackup/boepcm/rman/online/arch_D-BOEPCM_id-3049278399_S-56_T-1_A-655222143_2vjhh9d6
    64 1 57 A 28-MAY-08 /var/opt/oracle/oradata/boepcm/arch/arch_1_57_655222143.arc
    65 1 58 A 28-MAY-08 /var/opt/oracle/oradata/boepcm/arch/arch_1_58_655222143.arc
    Recovery Manager complete.
    $
    here are the files that has be restored from tape that belongs to may 23. It has datafiles, arch files, control file and spfile. how do I make these files rman aware of it and then validate it
    $ ll
    total 3259250
    -rw-r----- 1 oracle dba 17454080 May 23 10:34 arch_D-BOEPCM_id-3049278399_S-30_T-1_A-655222143_0bjh17b8
    -rw-r----- 1 oracle dba 17184768 May 23 10:34 arch_D-BOEPCM_id-3049278399_S-31_T-1_A-655222143_0cjh17ba
    -rw-r----- 1 oracle dba 11603968 May 23 10:34 arch_D-BOEPCM_id-3049278399_S-32_T-1_A-655222143_0djh17bf
    -rw-r----- 1 oracle dba 2048 May 23 10:34 arch_D-BOEPCM_id-3049278399_S-33_T-1_A-655222143_0ejh17bh
    -rw-r----- 1 oracle dba 7143424 May 23 10:34 c-3049278399-20080522-04
    -rw-r----- 1 oracle dba 7143424 May 23 10:34 c-3049278399-20080522-05
    -rw-r----- 1 oracle dba 7143424 May 23 10:34 c-3049278399-20080522-06
    -rw-r----- 1 oracle dba 7143424 May 23 10:34 c-3049278399-20080523-00
    -rw-r----- 1 oracle dba 209723392 May 23 10:34 data_D-BOEPCM_I-3049278399_TS-BOE_DATA_FNO-4_08jh17a3
    -rw-r----- 1 oracle dba 209723392 May 23 10:35 data_D-BOEPCM_I-3049278399_TS-BOE_DATA_FNO-4_0ijh395r
    -rw-r----- 1 oracle dba 125837312 May 23 10:35 data_D-BOEPCM_I-3049278399_TS-SYSAUX_FNO-3_09jh17ai
    -rw-r----- 1 oracle dba 125837312 May 23 10:35 data_D-BOEPCM_I-3049278399_TS-SYSAUX_FNO-3_0jjh396k
    -rw-r----- 1 oracle dba 251666432 May 23 10:35 data_D-BOEPCM_I-3049278399_TS-SYSTEM_FNO-1_06jh178q
    -rw-r----- 1 oracle dba 251666432 May 23 10:35 data_D-BOEPCM_I-3049278399_TS-SYSTEM_FNO-1_0gjh3948
    -rw-r----- 1 oracle dba 209723392 May 23 10:35 data_D-BOEPCM_I-3049278399_TS-UNDO_TS_FNO-2_07jh179k
    -rw-r----- 1 oracle dba 209723392 May 23 10:35 data_D-BOEPCM_I-3049278399_TS-UNDO_TS_FNO-2_0hjh3952
    -rw-r--r-- 1 oracle dba 499 May 23 10:35 rman_hb_boepcm052220081525.log
    -

  • RMAN: restore scenario failed

    Hi!
    The problem occur when trying to restore original database on another test server
    Original server - Windows 2008 x64bit, Oracle Database *10.2.0.5* w/o patch,ASM configured.
    Database - Archivelog mode. RMAN performs weekly database incremental level 0 backup, daily level 1 backup.
    Contorl file backup occurs immediately after incremental level 0/1 database backup
    The backup incremental level 0 RMAN copy restoing on:
    Server - Windows 2008 x32bit, Oracle Database *10.2.0.5* w/o patch, ASM configured
    input Data "on hands":
    - Incremental level 0 database backup (Chkpt SCN 2978611044)
    - Control file backup (controlfile_change# 2988231505 , checkpoint change# 2987947892)
    - There is no oracle datafiles on test server, only instance started with appropriate parameters (SPFILE);
    0) start instance
    1) Restoring control file from backup (appropriate dbid has been set)
    2) mount database
    3) Crosscheck backup,archivelog..
    4) delete expired backup,archivelog..
    5) catalog backuppiece with incremental level 0 backup
    6) "list backup" command display contents of backuppiece with all datafiles (Chkpt SCN 2978611044)
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    589 Incr 0 35.59G DISK 02:13:31 07-MAR-11
    BP Key: 597 Status: AVAILABLE Compressed: YES Tag: INCREMENTAL LEVEL 0 BACKUP
    Piece Name: C:\BACKUP\DB0_EMCOR_1814183562_20110311_589_1_IDM6JCIS.BKP
    List of Datafiles in backup set 589
    File LV Type Ckp SCN Ckp Time Name
    1 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/system.262.732897467
    2 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/undotbs1.271.732882203
    3 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/sysaux.260.732896913
    4 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/undotbs2.272.732882195
    5 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_tab.274.732882177
    6 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_tab.278.732882143
    7 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_tab.261.732897211
    8 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_tab.277.732882151
    9 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_tab.276.732882159
    10 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_tab.275.732882169
    11 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_ind.269.732888789
    12 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_ind.268.732890649
    13 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_ind.267.732891909
    14 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_ind.258.732895369
    15 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_ind.259.732895663
    16 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_ind.266.732892429
    17 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/usertbsp.264.732897773
    18 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_ind.265.732893801
    19 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_tab.270.732887581
    20 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/system.263.732897753
    21 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_tab.273.732882187
    22 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_ind.257.732894149
    23 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_tab.295.734795693
    24 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_tab.297.736591245
    25 0 Incr 2978611044 07-MAR-11 +DATA/emcor/datafile/emcos_ind.298.736593189
    7) restore database validate
    RMAN-03002: failure of restore command at 03/16/2011 15:35:42
    RMAN-06026: some targets not found - aborting restore
    RMAN-06023: no backup or copy of datafile 25 found to restore
    RMAN-06023: no backup or copy of datafile 1 found to restore
    8) list incarnation of database
    List of Database Incarnations
    DB Key Inc Key DB Name DB ID STATUS Reset SCN Reset Time
    1 1 EMCOR 1814183562 PARENT 1577251660 06-OCT-10
    2 2 EMCOR 1814183562 CURRENT 1578030113 09-OCT-10
    3 3 EMCOR 1814183562 ORPHAN 1578047894 20-OCT-10
    So, the DBPITR not possible.
    I've tried to restore on windows 2008 x64 - result is the same.

    According to the SCNs your backups (controlfile,datafiles) belong to orphaned incarnation 3, NOT current incarnation 2. But you run the restore process in incarnation 2.
    There was obviously a point in time recovery with resetlogs to 09-OCT-10 (Reset_SCN 1578030113), but you want to restore to SCN 2978611044.
    Try
    reset database to incarnation 3;
    Werner

  • Restore RMAN Backup

    Dear All,
    I am practicing Oracle Restore scenarios on my Oracle 9i database. Once I complete my tests in Oracle 9i I will move up to 10g and then finally to 11g.
    Following is my recovery scenario:
    1) I did NOT configure Recovery Catalog
    2) I would like to restore my databse from a 15 days old backup
    3) control_file_record_keep_time is set to 7 days.
    4) Backups are on tape.
    Can you guys please shed some light on how to I proceed?
    - P

    In oracle 9i , check , which situation you can perform complete recovery and in which situations you have to select incomplete recovery.
    check the notes by Alejandro Vargas, BACKUP AND RECOVERY SCENARIOS
    http://www.google.co.in/#hl=en&q=oracle+backup+and+recovery+scenarios&aq=0&aqi=g10&aql=&oq=oracle+backup+and+reco&gs_rfai=&fp=aa24f2b3591f5f42
    [PDF]
    Backup and Recovery Scenarios - Backup & Recovery Check List
    - 4:11am
    File Format: PDF/Adobe Acrobat - Quick View
    Oracle Support Israel. User Managed Recovery Scenarios And Configuration .... 4. recover automatic database using backup controlfile; ...
    static7.userland.com/oracle/gems/.../BackupAndRecoveryChecklist.pdf
    refer this, this will helps you.
    Can one restore RMAN backups without a CONTROLFILE and RECOVERY CATALOG?_
    http://www.orafaq.com/wiki/Oracle_database_Backup_and_Recovery_FAQ#Can_one_restore_RMAN_backups_without_a_CONTROLFILE_and_RECOVERY_CATALOG.3F
    Edited by: rajeysh on Jun 20, 2010 6:36 PM

  • Complex Product Costing Scenario- Separate overhead rates to same material

    Hello- I have a strangely complex scenario at my current client.
    They wish to apply different overhead rates to the same raw material (one material number in SAP) which is a part of two different BOMs to the same Semi-Finished product (one material number in SAP). This semi-finished product needs to be costed 2 different ways with 2 different BOMs, routings and overhead rates and then i need to use mixed costing to come up with a blended rolled-up cost to update in the material master of the semi-finished product. I am able to get past all challenges but the only open item is to be able to apply different overhead rates to the same material.
    Limitations:
    1- We have to use Standard price, not moving average.
    2- Split valuation idea thrown out the window.
    3- Using 2 different material numbers for the raw materials thrown out of the window.
    4- Business area idea thrown out of the window.
    basically, coming back to the original issue at hand, the challenge is to be able to apply different overhead rates to one material number in SAP.

    Hi
    There are available,, But you have thrown them out of the window already
    I believe you need to rampup your overhead absorption mechanism... if ovh is dependant on the component, then it should remain fixed/.. however, if it is getting changed bsaed on the parent material, then driver is not the component, but the Parent material
    hence, your overhead should be based on Parent material... Assign an overhead group to the Parent material say, 100 and 110 to the 2 Parent materials.... Now you maintain separate % of overhead per overhead group.... BASE would be the raw material consumption cost element
    @ Subodh: Do you think above suggestion will work?? I think exit need not be used if I have understood his requirement clear
    br, Ajay M

  • Moving a Photoshop Elements 3.0 Catalog -- Restore Fails

    I have tried to use the back-up / restore-to-new-location method to move a PSE 3.0 (Windows XP) catalog from my hard drive to a mounted network drive (Seagate Black Armor NAS 220).  The backup works correctly, but the restore doesn't quite work.  The files do get copied to the new network drive location appropriately, both using and not using the full former directory structure, but the catalog file that is created still references the original hard drive locations of the files.  I also tried this after (finally) adding the PSE 3.0.1 patch as well, with the same results.
    It is hard to believe that an issue like this wouldn't have ever been  fixed.  Has anyone successfully moved a catalog in 3.0/3.0.1 via this method, or has anyone else seen this issue?  Are there any fixes or alternate methods out there?
    Being that the .psa catalog files are Access databases (in the old versions of PSE), I'm about to try directly updating the catalog file for the correct locations, since I can do it fairly easily (i.e. via SQL instead of file-by-file location updates)., but I still think there has to be a way to do this without resorting to modifying the catalog file directly.
    Thanks,
    Doug Newton
    [email protected]

    Doug,
    First I want to say that I have no idea how effectively PSE 3 will process a catalog or the photo files residing on a Network drive. I mention this explicitly to that you do not interpret any other comments that I make as encouraging you to run from the Network drive with PSE 3.
    I have more expereince with this in PSE 4 when periodically using a Backup and Restore scenario to take a catalog and photo files from a desktop machine to an old laptop. 
    What I did experience was that if photo files were still referenceable at the previous folder location then the PSE 4 Restore command did not update the PSE Catalog pointers to the new folder location. This symptom does appear to be similar to your current problem with PSE 3.
    Therefore I changed my process to make the previous folder location not referenceable (even with any automatic adjustments that for userid differences on different machines that PSE Restore would make) before doing the Restore command.  That did solve the problem of the catalog pointers to the photo files of the restore not being updated.
    In your case, since you say you know how to do the SQL to adjust the catalog database, that might be a good option. Otherwise you could delete what was placed on the Network drive, make the original photo file folders not addressable and then do the PSE 3 Restore again.
    A general but I think important comment.
    Usually I do not recommend people upgrading to a new version just for the sake of upgrading. However in your case, you are running version 3 (which was the very first version which had the Organizer combined in to Photoshop Elements) and yet you are expanding your use of Windows operating system functions to practices common now but not common for consumers back in 2004 when PSE v3 was first available.  
    Therfore I suggest that you consider upgrading your version of Photoshop Elements.
    I am not saying go to PSE v8. PSE 7 does seems to be still available from reliable sources.  Some people still run PSE 5.

  • Can iphone ios get virus and will system restore fix it

    there has being discussions and news stating that there few ios viruses lurking in the internet, I was wondering if Iphone ios can get virus and if it can, will system restore solve the problem
    Im suspicious because I went to a site that i cant remember and it took a long time to load, then was a aadvertisement that look like a app introduction in app store, i accidenally clicked the download button so i quickly closed the window after 2 seconds of loading.
    Thankyou for your support
    Also bonus question-please tell me why cant i start the Game Total war battles:shogun with out an internet connection, with out it will crush

    There are no known viruses that can affect or infect a non-jailbroken iOS device.  If it has not been jailbroken you cannot alter or write to the operating system.  So that should not be a worry for you.
    There are websites that have some nasty behavior and will try and capture information or leave things like cookies behind that affect your web browser.  With iOS, again, there isn't much to worry about.  And stopping a download before it finished should leave you in good condition.
    You can always, if things get strange, restore your system from a clean backup if you have backed up to iCloud or iTunes on a computer.  You can go to Settings > General > Reset > Reset Settings which will leaver your apps intact but clear your settings, which you will have to go back and make sure you have your WiFi, etc set correctly, but that isn't necessary unless you start seeing a lot of strange behavior.
    Clean up operation easily by doing a reboot - hold both the power and home buttons until the apple logo appears and it restarts, ignoring the red slider if it appears.
    The bonus question - I don't do gaming so cannot offer any help with that issue.

  • Restore BizTalk Servers on the same SQL Server

    Hi
    If I need to do a recovery of the BizTalk databases to a point in time before a hardware failure on the same SQL Server, how do I achive this?I have seen the only recommended method is to use log shipping, but is this to restore Databases onto another SQL
    Server? If I just want to restore all Databases onto the same server, how would I achive this.
    Thanks in advance

    The only supported Backup/Restore scenario for BizTalk Server, is using the SQL Agent job: 
    Backup BizTalk Server (BizTalkMgmtDb)
    If you had this job running before the hardware failure, it will have backed up your databases both Full and Log (Differential). 
    Use these backup files for restore, just as you normally would when restoring SQL Server databases.
    Morten la Cour

  • TS4036 iCloud restore problems

    Got a replacement phone and iCloud keeps telling me it lost the Internet connection and won't back up. Is it a phone setting or defect? There is no problem with the wifi signal.

    I fixed this issue after a lot of time and pain (see below)
    Seems to have come up on various threads so it seems to be an issue and should be escalated by Apple. They were none the wiser at the genius bar apart from telling me the iCloud backup is probably corrupted and I should call Apple care (as if that is going to do anything)
    https://discussions.apple.com/message/18829957#18829957
    https://discussions.apple.com/message/17988389#17988389
    https://discussions.apple.com/message/17887940#17887940
    https://discussions.apple.com/message/18811914#18811914
    https://discussions.apple.com/message/18688593#18688593
    https://discussions.apple.com/message/19426061#19426061
    https://discussions.apple.com/message/19203831#19203831
    https://discussions.apple.com/message/18390030#18390030
    I experienced the same problem with the iCloud restore not working properly. I had my iPhone 4 replaced as the home button was defective. When attempting to restore an 9.5GB iCloud backup from the day before it just would not work properly. Firstly, half my apps did not restore, they would begin to download showing the progress indicator then just disappear, leaving my home screen naked. No big deal as apps can be downloaded again.
    However, what was a big deal for me was the 1,625 photos on my camera roll, including many of the first year of my kid's life. The camera roll would say downloading x of 1,625 photos, download a few of them, then simply stop downloading any new shots. When I would restart the phone it did not show any downloading message, it believed the restore was complete. I tried about ten different restore scenarios, listed below, all of which gave me varying results (some resulting in all my apps restoring) but all of which would only give me some of my photos back.
    What was a comfort was that I once got about 700 of the shots back. So the photos were still in the cloud rather than gone and this indicated that it was the restore process or the iCloud backup on my phone that was the problem. These are the things I tried in sequence as I despairingly tried to get my photos back...
    Things I tried that DID NOT work
    1) Erase all settings and attempt to restore again from scratch (four times)
    2) Tried the restore from a different WiFi network (once)
    3) Tried the restore from one WiFi network then switched to another once the restore 'hung' (once)
    4) Tried the restore from an Apple store WiFi network (once)
    5) Tried the restore from a previous iCloud backup (twice)
    6) Had Apple replace the iPhone 4 (once)
    With all of these I got a varying amount of my photos and apps back before it stopped restoring. I was also making the mistake (I learnt afterwards) of opening and moving between apps during the download to check progress.
    Thing I tried that DID work
    1) Did not plug the phone into my MacBook, I used the wall charger only to prevent any iTunes sync activity
    2) Erase all settings and data, restore from the iCloud backup and input passwords in all the pop up windows once it reboots.
    2) Open photos app gallery to see photos downloading and show the progress message "downloading xx of x,xxx"
    3) Left it on this photo screen and did not touch the phone at all for the entire restore. I did not close the photo galley/camera roll app once, open any other apps.
    Finally this time round it work and all my photos and apps restored in full. I am going to go back to syncing with iTunes as I don't trust iCloud for restores. It seems that iCloud does not handle photo restores that well, especially if the gallery is large. In short: Wall charger only, restore from iCloud, open Photos app, don't touch. Really hope this works for you too if you've had the same issue.

Maybe you are looking for

  • MacBook Air will not power on after going to sleep

    I have a 13" MacBook Air (2012) that has been giving me some issues on and off lately. The past month or two, it has had a few instances where it would take a lot of time and work to get it to "wake up" after the lid was opened. A few times I had to

  • ZBUS2032 not shown in workflow and status in SWEL- no receiver entered

    I am trying to change an existing workflow(This one has the standard BO- BUS2032 linked). Now I am trying to link the same workflow to a custom BO(ZBUS2032) copied from BUS2032. This custom BO is generated, released, delegated. I have maintained the

  • Is 24" iMac really any good?

    I know this is a vague question but hang with me. I am about to buy a 24" iMac and decided to look on these forums first to check if there are any problems with them. I have now read all sorts of horror stories regarding the screen (too bright/dead p

  • Plz tell me What is in the OSS

    Hi      plz give me the document that wht is in OSS note send me the document to thanks Message was edited by:         skk

  • Bridge CC crashes when I try to rate certain pictures

    I have a file contining about 100 pictures. All taken around same time on same camera. I can rate most pictures ok, but with some pictures it causes Bridge to crash. Looking at the metadata it seems ot be only pictures that have been edited and therf