RMAN tablespace recovery is a failure

Hello

I'm testing a scenario of passing my Test database table space and try to retrieve it using RMAN. I am getting below error while trying to recover from the storage space.



Target DB is GGSRC

With the help of catalogue: TOOLSB

Recovery Manager: release 11.2.0.3.0 - Production on Fri Aug 2 07:42:49 2013

Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

connected to target database: GGSRC (DBID = 3056046518)

connected to the recovery catalog database

RMAN> ###################################################

2 > #.

3 > # run_restore_tablespace.rman

4 > #.

5 > # use this script for all data files in one or more storage space

6 > # to their location on the original disc.

7 > #.

8> ###################################################

9 > run

10 > {}

11 > # < < RULE_OPTIMIZER > >

12 > run the script allocate_3_channel;

13 >

14 > the VALUE of NEWNAME for DATAFILE ' / u02/oradata/GGSRC/system01.dbf' to ' / u02/oradata/system01.dbf';

15 > the VALUE of NEWNAME for DATAFILE ' / u02/oradata/GGSRC/sysaux01.dbf' to ' / u02/oradata/sysaux01.dbf';

16 > the VALUE of NEWNAME for DATAFILE ' / u06/oradata/GGSRC/undotbs01.dbf' to ' / u06/oradata/undotbs01.dbf';

17 > RECOVER TABLESPACE AYYO until the SNA 19103062 auxiliary destination "/ u02/oradata ';

18 >

19 > run the script release_3_channel;

{20 >}

21 >

the script: allocate_3_channel

allocated channel: DTPUX3t1

channel DTPUX3t1: SID = 23 device type = SBT_TAPE

channel DTPUX3t1: for Oracle Data Protection: version 5.5.2.0

allocated channel: DTPUX3t2

channel DTPUX3t2: SID = 159 device type = SBT_TAPE

channel DTPUX3t2: for Oracle Data Protection: version 5.5.2.0

allocated channel: DTPUX3t3

channel DTPUX3t3: SID = 17 device type = SBT_TAPE

channel DTPUX3t3: for Oracle Data Protection: version 5.5.2.0

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

From back in August 2, 2013 07:42:52

Creation of automatic instance with SID = "rxAh."

initialization parameters for automatic instance:

db_name = GGSRC

db_unique_name = rxAh_tspitr_GGSRC

compatible = 11.2.0.0.0

DB_BLOCK_SIZE = 8192

DB_FILES = 200

SGA_TARGET = 280M

process = 50

db_create_file_dest = / u02/oradata

Log_archive_dest_1 = ' location = / u02/oradata.

Auxiliary parameter file #No used

turn on automatic instance GGSRC

Oracle instance started

Total System Global Area 292278272 bytes

Bytes of size 2227744 fixed

100663776 variable size bytes

184549376 of database buffers bytes

Redo buffers 4837376 bytes

Auto instance created

content of Script memory:

{

# the requested value point in time

until the SNA 19103062.

# restore the controlfile

Restore clone controlfile;

# mount the controlfile

SQL clone "alter database database mount clone";

Current online journal archive #.

SQL 'alter system archive log current';

# avoid needless save structural changes during the TSPITR

SQL ' start dbms_backup_restore. AutoBackupFlag (FALSE); end;';

Resync catalog #.

Catalogue of resynchronization;

}

execution of Script memory

executing command: SET until clause

From restoration to August 2, 2013 07:43:05

Delete an automatic instance

closing automatic instance

Instance Oracle to close

Automatic instance deleted

output channel: DTPUX3t1

output channel: DTPUX3t2

output channel: DTPUX3t3

RMAN-00571: ===========================================================

RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.

RMAN-00571: ===========================================================

RMAN-03002: failure of the command recover at 02/08/2013 07:43:09

RMAN-03015: an error has occurred in the script stored memory Script

RMAN-06034: at least 1 channel must be distributed to run this command

Please help me on how to solve it.

Thank you

Mahi

Hello

All by making a TSPITR, do not affect the RMAN channels explicitly. Let the RMAN allocate channel by itself.

Please see the note below.

RMAN-06034 for TSPITR (Doc ID 467189.1)

Thank you!!

Tags: Database

Similar Questions

  • RMAN BACKUP/RECOVERY OF DATA

    Hi friendz,.

    I have a legacy of or copied from earlier sources, RMAN backup scripts, which is the ff:

    (on the PROD server)
    rman
    run {
         CONFIGURE CONTROLFILE AUTOBACKUP ON;
         CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/u03/rman/%F';
         crosscheck archivelog all;
         backup format '/u03/rman/%d_LVL0_%T_%u_s%s_p%p' database plus archivelog;
         delete obsolete;
         delete expired archivelog all;
         }
    Then, I got the following output in/u03/rman:
    [root@oracleprod rman]# ls -l
    total 75200672
    -rw-rw----  1 oraprod oraprod    16089088 Feb 18 19:40 c-4174489363-20110218-01
    -rw-rw----  1 oraprod oraprod 76882624512 Feb 18 19:39 OAPROD_LVL0_20110218_0gm50de6_s16_p1
    -rw-rw----  1 oraprod oraprod    31554048 Feb 18 19:40 OAPROD_LVL0_20110218_0hm50fks_s17_p1
    I copied the files above to/u03/rman to the TEST server. I have also the same Oracle Home.
    How can I recover these files on our TEST Server?

    I tried:
    rman
    run {
         startup mount;
         restore database;
         recover database;
        alter database open;
    }
    but I got error:
    [oraprod@oel5 ~]$ rman target /
    
    Recovery Manager: Release 9.2.0.6.0 - Production
    
    Copyright (c) 1995, 2002, Oracle Corporation.  All rights reserved.
    
    connected to target database (not started)
    
    RMAN> startup mount;
    
    Oracle instance started
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of startup command at 02/21/2011 22:31:09
    ORA-00205: error in identifying controlfile, check alert log for more info
    
    RMAN>
    Help, please...


    Thank you

    You must restore the controlfile first.

    STARTUP NOMOUNT
    RESTORE CONTROLFILE FROM '/u03/rman/c-4174489363-20110218-01' ;
    sql 'alter database mount';
    RESTORE DATABASE;
    RECOVER DATABASE;
    

    Hemant K Collette

  • RMAN Tablespace Transportable between different patch level?

    Hello

    I've got question about RMAN Tablespace Transportable. Can I use this feature between databases with different patch level? To be exact, I want to pass the SCT DB with a superior version of the power supply (11.2.0.4.2) for DB with lower version of power supply (11.2.0.4.0). Endian and OS version are the same on both environments

    Please see the official documentation, which gives very detailed information about the limitations and requirements:

    https://docs.Oracle.com/CD/E18283_01/server.112/e17120/tspaces013.htm

    Patch-levels are not important, but the character sets and endian type of source and target.

    For version compatibility, please see also transportable tablespace possible with several different Oracle versions

  • RMAN-04004: recovery catalog database error: ORA-12170: TNS: connect the ti

    Hello:

    Last night ' RMAN backup error: ' RMAN-04004: recovery catalog database error: ORA-12170: TNS: Connect timeout.

    I can sqlplus to the target database and the catalog database. The listener is in place. What is the problem? What should I check?

    Thanks in advance for your help.

    in the oratest/orapass@rmandb1 CATALOG,.

    rmandb1 is the name of the service. normally the name of the service and the name of db are kept same.

    check rmandb1 tnsping where you try to run ' RMAN TARGET / CATALOG oratest/orapass@rmandb1 "command.

    as optput will get the ip address of the server on which db is resident, no port, Protocol

    as

    ---------

    [Oracle@RAC3 ~] $ tnsping orcl

    AMT Ping utility for Linux: Version 10.2.0.5.0 - Production on December 23, 2011 21:12:20

    Copyright (c) 1997, 2010, Oracle. All rights reserved.

    Use settings files:
    /opt/app/Oracle/product/DB/10.2.1/network/admin/SQLNET.ora

    TNSNAMES adapter used to resolve the alias
    Try to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = rac3.rajesh.com) (PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = orcl)))
    OK (10 ms)
    -------------------------------

    Here the HOST = rac3.rajesh.com is the present db Server

    Published by: Rajesh.Rathod on December 23, 2011 07:43

  • restore the rman tablespace

    Hello world.

    IM using a 11.0.6.0 database running on RHEL 5.

    I have a complete backup every Saturday and every day a backup of the archivelogs.
    I could restore a 2 days with rman tablespace or I can only restore from last Saturday? How?
    If I had 2 full save, how to choose where an I want to restore the storage space?

    Thanks in advance

    Published by: user13748341 on June 14, 2011 06:52

    I have a complete backup every Saturday and every day a backup of the archivelogs.
    I could restore a 2 days with rman tablespace or I can only restore from last Saturday? How?

    If you restore the tablespace, it will render since the last FULL backup.

    If you want to restore to the other the last backup and then mention the backup piece.

  • RMAN-06054: recovery of media asking unknown journal: thread 1 seq 23888

    version 10203

    Can I change the time or the SNA and re - run recovery without restoring all db files?
    How do I know exact time/scn? where rman can perform recovery...

    RMAN wasn't able to restore automatic backup controlfile;
    I had to restore controlfile from "c-2568036611-20100912-13.
    &
    run
    {
    until the time = 2010 - 09 - 12 18:30 ';
    restore the database;
    recover the database;
    ALTER database open resetlogs;
    }

    RMAN recovery ends with this error
    RMAN-06054: recovery of media asking unknown journal: thread 1 seq 23888 lowscn 4473176866475

    DBA2008 wrote:
    version 10203

    Can I change the time or the SNA and re - run recovery without restoring all db files?

    No, recovery average is you have to restore before database/data file according to this time/SNA and
    need to recover this database/data file

    How do I know exact time/scn? where rman can perform recovery...

    You can use rman back catalogue or views of performance Dynamics controlfiles(v$backup_*).

    RMAN wasn't able to restore automatic backup controlfile;
    I had to restore controlfile from "c-2568036611-20100912-13.

    When you try to restore controlfile what error do you have?
    Or have you tried restore controlfile to 'your_controlfile_backup' command via rman

    run
    {
    until the time = 2010 - 09 - 12 18:30 ';
    restore the database;
    recover the database;
    ALTER database open resetlogs;
    }

    RMAN recovery ends with this error
    RMAN-06054: recovery of media asking unknown journal: thread 1 seq 23888 lowscn 4473176866475

    It seems that this error occur because of you actually restored controlfile sauvegardΘ but in controlfile are not
    any information on your logs archiving offer you have to catalogue start with "archive_log_location" through rman. After you run this command, please perform recover database and alter database open resetlogs

  • DATAGUARD-RMAN-tablespace restore recovery n

    Hello

    I have configured the DG with a primary and standby,

    I created a tablespace in the primary,

    I took rman backup standby

    I dropped the tablespace in the primary...

    I want to restore this tablespace in the standby mode,

    How can I achieve this?

    Thanks in advance

    RAS

    sachinpawan wrote:
    I stop DBs primary and standby

    I go to sleep, since deleted from the data file header is in the old control, I'll bring backup control file, I'll bring tablespace...

    What is it works...?

    What ever you restore controlfile, it will only restore storage space... Even new or old... what ever
    So if this information of places/tablespace datafile, controlfile last you should be able to restore;

  • RMAN Tablespace restoration

    Hi guys,.

    I tried to restore the tablespace using RMAN full backup.

    I couldn't restore tablespace,

    I've added DB and DB auxiliary also

    C:\Windows\System32 > rman target sys@test catalog rman@catdb auxiliary sys@dup

    Recovery Manager: release 11.1.0.6.0 - Production on Tue Apr 1 16:14:03 2014

    Copyright (c) 1982, 2007, Oracle.  All rights reserved.

    target password database:

    connected to target database: TEST (DBID = 2141887982)

    Catalog database recovery password:

    connected to the recovery catalog database

    database Assistant password:

    connected to the auxiliary database: DUP (DBID = 214554882)

    RMAN > recover tablespace test until time ' to_date (April 1, 2014 13:54 ',' DD - MON).

    (-'AAAA HH24:MI:SS) ' DESTINATION AUXILIARY = a: \testDB\clone';

    RMAN-00571: ===========================================================

    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.

    RMAN-00571: ===========================================================

    RMAN-00558: error occurred during parsing of order entry

    RMAN-01009: syntax error: found 'test': expected an a: 'double-quoted-string,

    identifier, single-quoted-string ".

    RMAN-01007: in the file column 20 line 1: entry standard

    Thanks in advance

    > I have demolished tablespace at 17:54

    Do you mean you deleted the data file?  Or you deleted the tablespace?  A tablespace coward belongs more to the database.

    Hemant K Collette

  • SYSTEM Tablespace recovery

    Hello

    I just tried to clarify something regarding the restoration and recovery and SYSTEM tablespace to myself. So I did the following steps

    1. two logon session. A first title SYS, the other as SCOTT.

    2. with the SCOTT user create a table named test with a single data column called x.

    3. do you have a full backup with RMAN.

    4 use a shell and the os user oracle connection, I deleted the file system data by using 'rm '.

    5. with the session of SCOTT, I inserted a line in the existing test table. Then I created another table called test2 with a single column.

    In my opinion, the DB should have thrown some kind of error, because creating a table in the SCOTT schema has to create a kind of entry in the data dictionary in the system tablespace, which I removed in step 4.

    6. once I did a restore and recovery of the space of SYSTEM tables, but the test2 table created (which was created after the SYSTEM data file has been deleted) is still there.

    Can someone please clarify why the table is always there, even if it was created at a time when the space of SYSTEM tables data file was deleted already. And why is-user SCOTT can create this table, although there is no data on the disk dictionary?

    Concerning

    I deleted the file system data by using 'rm '.

    NO you do not "deleted the file system data.
    Simply change you an entry in the directory file.
    Data from the file SYSTEM open is stuck & use as if you never issued "rm" command
    The data file is DELETED after Oracle stop & releases the OPEN file handle.

    Published by: sb92075 on December 12, 2010 12:32

  • RMAN incomplete recovery

    Jin
    I use oracle10g (10.2.0.4.0) in windows service pack 2 32-bit. with RMAN, I took a backup of a tablespace. Then, I created a table and the database is closed. Off, I deleted the file data in this table. Now I started the database in the editing phase, started the RMAN. I restored the tablespace by RMAN and then I got to a point where I did not create the table. But the RMAN performs a complete recovery. When I check the table there is always. How is it possible? can someone help me please... I am totally confused.

    Here are the commands I used in the above scenario

    RMAN > BACKUP TABLESPACE USERS (BACKUP 13:00 HRS)


    SQL > CREATE TABLE TEST AS SELECT * FROM EMPLOYEES; (CREATED AT 17:00 HRS)
    SQL > IMMEDIATE SHU

    physically remove the data from the users table space file.

    SQL > STARTUP MOUNT

    RMAN > CONNECT TARGET SYS/password

    RMAN > RESTORE TABLESPACE USERS

    RMAN >RECOVER DATAFILE 4 until time ' to_date ('2010-11-23 16:00 ',' ' YYYY-MM-DD HH24:MI:SS) "

    SQL > ALTER DATABASE OPEN RESETLOGS (DISPLAYS AN ERROR THAT RESETLOG CAN SE DO AFTER INCOMPLETE RECOVERY)

    SQL > ALTER DATABASE OPEN

    SQL > SELECT * FROM TEST (THE TABLE EXISTS)


    Please tell me what is wrong in the above scenario? I use wrong queries?


    Thanks in advance

    You cannot recover a Tablespace (or Datafile) to a point in time that is not consistent with the rest of the database, unless you use an auxiliary Instance. TSPITR (TablespacePointInTimeRecovery) uses an Auxiilary Instance where SYSTEM, UNDO and the required storage space are recovered to the point passed in time without affecting the current instance of the current database. The tablespace can then transported the auxiliary to the active database instance - you can have RMAN automatically do this but, personally, I would manually.

    Hemant K Collette

  • RMAN restore/recovery

    Is it possible to restore a RMAN full backup on a different/db machine?

    I have a DB of Prod (800 f) running 10.2.0.4 and launch the RMAN backup strategy. I am to perform full backups on tape and need to prove that the backups are viable for the restoration. The problem I have is that I can't do any test on the Prod db. My original plan was to create a tablespace and a data file - get the rman backup, delete the data file and restore from the backup. I'm not allowed to do this simple test, while he was susggested we use RMAN to recover from Prod backup set to a different database on another server. Is it still possible? I proved functionaly RMAN can restore in a test environment, but management wants to prove we can restore/recovery of data from production wo affecting primary production of db.

    Thank you!!!

    Hello.
    If you have access to metalink take a look at the Doc.
    388431.1 (creation database duplicated on a new host). RMAN
    * T

  • Equium A60: Impossible recovery - HARD drive failure?

    I have an Equium A60 (PSA67E-001004NO), which is about 3 years.
    Due to a lot of hanging and the full suite of failure at startup, I decided to use the recovery followed with her CD.
    Recovery procedure is followed as prescribed but the progress bar in the recovery process doesn't move at all and after a while, it shows a black screen with warning of failure and goes to a screen with X: / > which doesn't react to exit or leave an order.

    You need to restart. Have you tried the procedure several times and sometimes it shows cannot find EDISK
    Now, he doesn't even respond to the restore CD and pressing of C very beginning... it s just a black screen with nothing to do.

    Is it possible that the hard drive is faulty or something with the recovery procedure?
    I n t tried with Windows OEM but there any help and how to do with it.

    Toshiba has been a trustworthy companion in the last 3 years and it would be nice if it can be restored with the real amount of monetary resources.

    Any help

    First of all, try to use an original installation disk to Windows. Insert the disc and boot from the CD, and then follow the instructions provided by the installation routine.

    Maybe your recovery CD is not working more properly, so this method should say whether or not he is the recovery media.

  • TouchSmart tx2-1370us Recovery Disc Set failure

    I am writing on behalf of my sister.  Here is his story:

    Screen of her laptop TouchSmart tx2-1370us broke earlier.  It's under warranty where she bought in so he was expelled to be repaired.  When he returned, the screen has been set, but there was a note indicating that they had lost its Windows 7.  The computer loaded and executed perfectly, but it was the pop-up "is not a genuine copy of windows.  She claims that she was unable to read the sticker product key the computer good enough to get it to accept anything, she entered.  When she called the store, they said that HP would be able to help get it back.  HP sold its recovery disks which were to restore the computer.  It is a 3 disc set, marked 2 System Recovery DVD Windows 7 Home Premium and 1 additional CD labeled Application & Driver recovery CD.  CDs ran several times still to come as fruitless after the first 2 CDs.  I won't get in his experience of the customer support, but she claims that she spoke on the phone with HP 6 times in the course of a week and nothing they had to say or to offer.  Always unsuccessful recovery message.  She abandoned, almost crying at this time, and I said I'll try.

    After a bit of searching I found a patch on the HP website that would supposedly solve the problem of recovery disks.  The patch was properly installed, green checkmark and all, and all 3 CDs was successfully.  The computer restarts, the screen of the Installation of the HP software ran for a while before another restart then the usual recovery failure message.  I tried many times with the same result every time.  I saved the newspaper from the last go to it and post it below.  It seems the States BIOS Vista as OS, but she bought the computer pre-loaded with Windows 7.  Could there be something in that fact cause a problem?

    Someone suggested to reset the BIOS to factory default, but that didn't work either.

    When you save the log to USB, I could see all of the files, there are 3 readers listed SDV (C Local disk (D & BOOT (X))

    For any help or suggestion would be appreciated.

    Here is the log:

    --------------------------------------------------
    [2:30:01.41] enter audit OS Edition...
    ----------------------------------------
    [2:30:01.41] check RStone.ini file to determine the required edition.
    [2:30:01.44] out of checking OS Edition...
    --------------------------------------------------

    --------------------------------------------------
    [2:30:01.46] controls if the upgrade to Windows 7 is required.
    ----------------------------------------
    [2:30:01.47] current edition is [HomeBasic]...
    [2:30:01.47] [start] necessary. Don't need to upgrade...
    [2:30:01.47] [Starter] needed...
    [2:30:05.17] necessary [Starter] edition. But is not the case of the [Starter] OS...
    [2:30:05.17] OS edition upgrade might have a problem...

    Management and maintenance of deployment images tool
    Version: 6.1.7600.16385

    Image Version: 6.1.7600.16385

    The current edition is:

    Current edition: HomeBasic
    The operation completed successfully.

    Component: TDC Preinstall diagnosis Tools for Windows 7 - TDC
    Error found: you have set the flag of Vista on an image of Win 7, please use EEPROM to set ~ OS SKU ~ value = 2
    ---------------------------------------------------------------------------------

    [ 2:38:37.07] ------------------------------------------------------------------------------------------
    ...
    Failed to update factory! ***
    [2:38:37.07] Suggest create PIN-journal and send to TWN PDC NB-PreinPM for further analysis...
    ...
    [ 2:38:37.07] ------------------------------------------------------------------------------------------
    [2:29:20.80] Start BBOffline.cmd...
    UPDrv = [C:]
    [2:29:21.35] value UIA 951 error Code
    [2:29:21.68] start [corrections].
    [ 2:29:21.68] ---------------------------------------------------------------------
    [2:29:21.68] FixUps.cmd...
    [2:29:21.68] create overall progress information...
    [2:29:21.72] complete FixUps.cmd...
    [ 2:29:21.72] ---------------------------------------------------------------------
    [2:29:21.72] start [Tweaks for SDRD].
    [ 2:29:21.72] ---------------------------------------------------------------------
    [2:29:21.72] SDRD Tweaks to change the regional settings default user...
    [2:29:21.72] copy C:\System.sav\Util\TDC\MCPP\FBIRES\FBIUSRES. DLL.
    [2:29:21.76] Run "IntlCfg.exe - skudefaults: US-image: C:
    [ 2:29:27.64] ---------------------------------------------------------------------
    Housing starts [2:29:27.64] [Sleep 10 sec].
    Starting price [2:29:37.68] [creation RStoneFUpdate.INI].
    [2:29:47.78] start [create 1 GB Pagefile for offline].
    Volume in drive C has no label.
    Volume serial number is 60E6-4F60

    Directory of C:\system.sav\bbv

    01/01/2001 02:29 1 073 741 824 pagefile.sys
    1 file (s) 1 073 741 824 bytes
    0 26,019,311,616 dir bytes free
    [2:29:47.85] start PININST.exe for offline...
    [2:30:13.27] Start SysID Check...
    [2:30:16.34] Start Option control code...
    [2:30:18.37] Start PIN Tweaks...
    [ 2:30:19.44] ---------------------------------------------------------------------
    [2:30:19.44] PIN Tweaks to hide all for BurnBoot PBO and BBV2 on restored image...
    [2:30:19.44] update PININST_BBV.ini...
    [2:30:19.46] update PININST_BBV2.ini...
    [2:30:19.48] update PININST_BBV2POST. INI...
    [2:30:19.49] update PININST_BBVClean.INI...
    [ 2:30:19.52] ---------------------------------------------------------------------
    [2:30:20.40] starting factory updates...
    [2:30:27.43] installation start QFE offline...
    [2:38:36.81] PININST_OFF: PAST...

    [2:38:36.91] Type C:\System.sav\Logs\BBFindEr.log...

    [2:38:36.93] Type C:\System.sav\Logs\BBFindE0.log...

    -C:\SYSTEM. SAV\LOGS\BBFIND4QFE. JOURNAL
    [2:38:36.93] FUList.log to check if there are double Desc...
    No duplication.
    [2:38:37.05] duplicated No. Desc is located... PAST.
    [2:38:37.05] there was no update from the factory...

    Lets take a chance it's for W7

    Go here and download the correct version of W7 (home or pro, they have not a starter edition), version 32 or 64 bit and the language, it's going to be a file iso very large, once downloaded, burn it to a blank disc DVD + R as an Image, this can be done on a Windows 7 PC, right-click on the iso file and select 'Open with' > 'windows disc image burner.

    http://www.mydigitallife.info/official-Windows-7-SP1-ISO-from-Digital-River/

    This will make a regular windows 7 installation disc allows you to get Windows installed, use the key to see if it will be ignited.

    Then, you will need to download the drivers for your specific model on the HP site and install it.

    http://h10025.www1.HP.com/ewfrf/wc/product?product=4041813&LC=en&cc=us&DLC=en&task=&lang=en&cc=us

  • Recovery, the system failure - using the Command Prompt

    Windows vista OS and windows does not load. Automatic recovery system active at startup upward. No solution known thanks to this tool, and when I try to use one of the system recovery tools, none of them don't function. I went in F2 start and checked to see if he recongnized HD for this.  I don't have a windows vista startup disk system has been preloaded on acer laptop. can't even go back to a previous restore point. I checked the memory and it is 100% good. I have firewall and norton 2011 full security virus, so I think not only computer has been infected.

    I started in 'safe' mode and tried to use the restore point - no luck. tried to go in windows in safe mode - no luck.

    How do you use 'command prompt' computer startup tool and get in windows vista? What can I do using command prompt to check on this failure?  Thanks, ej.

    Windows vista OS and windows does not load. Automatic recovery system active at startup upward. No solution known thanks to this tool, and when I try to use one of the system recovery tools, none of them don't function. I went in F2 start and checked to see if he recongnized HD for this.  I don't have a windows vista startup disk system has been preloaded on acer laptop. can't even go back to a previous restore point. I checked the memory and it is 100% good. I have firewall and norton 2011 full security virus, so I think not only computer has been infected.

    I started in 'safe' mode and tried to use the restore point - no luck. tried to go in windows in safe mode - no luck.

    How do you use 'command prompt' computer startup tool and get in windows vista? What can I do using command prompt to check on this failure?  Thanks, ej.

    Hey eacepay

    Download and create an ERD for starting a Startup Repair restoring the system etc.

    the link below is how to download and get a vista disk startup repair, which you can start from the

    http://NeoSmart.net/blog/2008/Windows-Vista-recovery-disc-download/

    Here's how to use startup repair system restore command prompt, etc. to bleepingcomputers link below

    http://www.bleepingcomputer.com/tutorials/tutorial148.html

    to boot from the dvd drive to be able to you will see a way to get into the bios Setup at the bottom of the screen or command menu start

    It would be F2 or delete etc to enter the BIOS or F12 etc. for the start menu

    Change boot order it do dvd drive 1st in the boot order

    and if all else fails and you need to reinstall vista are the normal methods for computers preinstalled vista portable

    Contact the computer manufacturer and ask them to send vista recovery discs

    they do it for a nominal cost of $

    also ask them if you have a recovery partition on your hard drive to get back to the way you bought

    you would normally press F10 or F11 or Alt + F10, 0 at startup to start the recovery process according to the manufacturer

    Ask them of the exact key sequence

    Walter, the time zone traveller

  • Need support for recovery after power failure

    I had an emachine for awhile and finally a thunderstorm came around and he pulled my TV and my computer, that my computer does not problem but it goes to the installation as the hard drive has been cleaned that there is a lot of junk on it somehow so I decided to reinstall and at first he said "no device drivers were found. Make sure that the installation media contains the correct drivers, and then click ok. "im stuck and don't know what to do.

    Powre failures will often damage hardware, but also software.

    http://www.eMachines.com/support/product_support.html

    Contact Support for their eMachines recovery media.

    This isn't their recovery process, Microsoft.

    See you soon.

    Mick Murphy - Microsoft partner

Maybe you are looking for