Start recovery process on standby database after Windows reboot

Hi all,
I have a data guard configuration on Oracle 10.2.0.4 for Windows.
What I need is to mount and start recovery process automatically after Windows Server restart.
How can I do that ?
Thanks in advance.

Here's what I found :
sleep 60
REM Start the database
%ORACLE_HOME%\bin\sqlplus -s "/ as sysdba" @startup.sql
exit
startupmount.sql -- Copy this under ORACLE_HOME/bin directory
-- start the database
startup mount
alter database recover managed standby database disconnect from session;
exitSorry, no way to test on my end.
The other thought is to hack oradim
But I'm thinking this might only do the startup mount.
Best Regards
mseberg
Edited by: mseberg on Feb 15, 2012 1:10 PM
This would need some work but it may help
@echo off
sc query "OracleOraDb11g_home1TNSListener" | findstr /i running
IF "%ERRORLEVEL%"=="0" (GOTO :RUNNING) ELSE (GOTO :STOPPED)
:STOPPED
ECHO NOT RUNNING
net start "OracleOraDb11g_home1TNSListener" | sc query "OracleServiceSCT" | findstr /i running | if NOT "%errorlevel%"=="0" net start oracleservicesct
GOTO :END
:RUNNING
ECHO RUNNING
net stop "OracleOraDb11g_home1TNSListener" | sc query "OracleServiceSCT" | findstr /i running | if "%errorlevel%"=="0" net stop oracleservicesct
GOTO :END
:ENDEdited by: mseberg on Feb 15, 2012 1:17 PM

Similar Messages

  • Error in starting MRP process in Standby database.

    Hi All,
    OS:Windows server 03
    DB:11g
    I am creating a Standby database, everything is fine until i fire the below command to start the MRP process to start the recovery of the database.
    alter database recover managed standby database disconnect from session;MRP0 started with pid=27, OS id=6640
    2013-02-07 17:59:48.515000 +05:30
    started logmerger process
    Managed Standby Recovery not using Real Time Apply
    Errors in file d:\app\oracle\diag\rdbms\testdr\testdr\trace\testdr_dbw0_6000.trc:
    ORA-01157: cannot identify/lock data file 1 - see DBWR trace file
    ORA-01110: data file 1: 'D:\APP\ORACLE\ORADATA\TEST\TEST\SYSTEM01.DBF'
    ORA-27086: unable to lock file - already in use
    OSD-00002: additional error information
    O/S-Error: (OS 32) The process cannot access the file because it is being used by another process.
    Errors in file d:\app\oracle\diag\rdbms\testdr\testdr\trace\testdr_dbw0_6000.trc:
    ORA-01157: cannot identify/lock data file 2 - see DBWR trace file
    ORA-01110: data file 2: 'D:\APP\ORACLE\ORADATA\TEST\TEST\SYSAUX01.DBF'
    ORA-27086: unable to lock file - already in use
    OSD-00002: additional error information
    O/S-Error: (OS 32) The process cannot access the file because it is being used by another process.
    Errors in file d:\app\oracle\diag\rdbms\testdr\testdr\trace\testdr_dbw0_6000.trc:
    ORA-01157: cannot identify/lock data file 3 - see DBWR trace file
    ORA-01110: data file 3: 'D:\APP\ORACLE\ORADATA\TEST\TEST\UNDOTBS01.DBF'
    ORA-27086: unable to lock file - already in use
    OSD-00002: additional error information
    O/S-Error: (OS 32) The process cannot access the file because it is being used by another process.
    Errors in file d:\app\oracle\diag\rdbms\testdr\testdr\trace\testdr_dbw0_6000.trc:
    ORA-01157: cannot identify/lock data file 4 - see DBWR trace file
    ORA-01110: data file 4: 'D:\APP\ORACLE\ORADATA\TEST\TEST\USERS01.DBF'
    ORA-27086: unable to lock file - already in use
    OSD-00002: additional error information
    O/S-Error: (OS 32) The process cannot access the file because it is being used by another process.
    MRP0: Background Media Recovery terminated with error 1110
    Errors in file d:\app\oracle\diag\rdbms\testdr\testdr\trace\testdr_pr00_7984.trc:
    ORA-01110: data file 1: 'D:\APP\ORACLE\ORADATA\TEST\TEST\SYSTEM01.DBF'
    ORA-01157: cannot identify/lock data file 1 - see DBWR trace file
    ORA-01110: data file 1: 'D:\APP\ORACLE\ORADATA\TEST\TEST\SYSTEM01.DBF'
    Recovery Slave PR00 previously exited with exception 1110
    Errors in file d:\app\oracle\diag\rdbms\testdr\testdr\trace\testdr_mrp0_6640.trc:
    ORA-01110: data file 1: 'D:\APP\ORACLE\ORADATA\TEST\TEST\SYSTEM01.DBF'
    ORA-01157: cannot identify/lock data file 1 - see DBWR trace file
    ORA-01110: data file 1: 'D:\APP\ORACLE\ORADATA\TEST\TEST\SYSTEM01.DBF'
    Completed: alter database recover managed standby database disconnect from session
    Can anyone tell me why is this comming?
    Regards,
    Sphinx

    Hi ,
    Yes, it is on the same server.
    I have used the below mentioned parameters to rename the files
    At Primary Pfile:
    *.db_file_name_convert=('D:\app\oracle\oradata\test\test\','D:\app\oracle\testdr\oradata\datafiles\')
    *.log_file_name_convert=('D:\app\oracle\oradata\test\test\','D:\app\oracle\testdr\oradata\redologs\')
    At Standby:
    *.db_file_name_convert=('D:\app\oracle\testdr\oradata\datafiles\','D:\app\oracle\oradata\test\test\')
    *.log_file_name_convert=('D:\app\oracle\testdr\oradata\redologs\','D:\app\oracle\oradata\test\test\')
    But the output of v$datafile at standby is showing the path of Primary datafiles
    I manually tried recovering them but it is prompting me the same error.
    Regards
    Edited by: $phinx19 on Feb 7, 2013 6:23 AM

  • Restart on primary database restarts the recovery process on standby

    We have a dataguar broker configuration running in maximum perfromance mode.
    Every time we start the primary database, the recovery process on standby gets restarted.
    I can consistently reproduce teh problem. Looks like expected behaviour.
    Even if standby is in read only mode and restart the primary database it bring the database back in recovery mode.
    Any explanation why oracle needs to do it?

    Neil_Arul wrote:
    We have a dataguar broker configuration running in maximum perfromance mode.
    Every time we start the primary database, the recovery process on standby gets restarted.
    I can consistently reproduce teh problem. Looks like expected behaviour.
    Even if standby is in read only mode and restart the primary database it bring the database back in recovery mode.
    Any explanation why oracle needs to do it?Yes, When you enable broker it very common behaviour.
    When ever you bounce the database also MRP process will be started automatically.
    By disabling broker you can avoid automatic startup, BTW Standby should be in recovery mode, i think no need to worry on this.
    If you want to disable as per time, you can disable it as below
    ALTER SYSTEM SET DG_BROKER_START=FALSE ;
    Total Questions:      3 (3 unresolved)
    Close the threads when you feel its answered, Keep the forum clean.
    Edited by: CKPT on Feb 15, 2012 12:57 PM

  • Relocating datafiles on standby database after mount point on stanby is ful

    Hi,
    We have a physical standby database.
    The location of datafiles on primary database are at /oracle/oradata/ and the location of datafiles on standby database are at /oracle/oradata/
    Now we are facing a situation of mount mount getting full on standby database so we need to move some tablespaces to another location on standby.
    Say old location is /oracle/oradata/ and new location is /oradata_new/ and the tablespaces to be relocated are say tab1 and tab2.
    Can anybody tell me whether following steps are correct.
    1. Stop managed recovery on standby database
    alter database recover managed standby database cancel;
    2. Shutdown standby database
    shutdown immediate;
    3. Open standby database in mount stage
    startup mount;
    4. Copy the datafiles to new location say /oradata_new/ using os level command
    4. Rename the datafile
    alter database rename file
    '/oracle/oradata/tab1.123451.dbf', '/oracle/oradata/tab1.123452.dbf','/oracle/oradata/tab2.123451.dbf',''/oracle/oradata/tab2.123452.dbf'
    to '/oradata_new/tab1.123451.dbf', '/oradata_new/tab1.123452.dbf','/oradata_new/tab2.123451.dbf',''/oradata_new/tab2.123452.dbf';
    5. Edit the parameter db_file_name_convert
    alter system set db_file_name_convert='/oracle/oradata/tab1','/oradata_new/tab1','/oracle/oradata/tab2','/oradata_new/tab2'
    6. Start a managed recovery on standby database
    alter database recover managed standby database disconnect from session;
    I am littelbit confused in step 5 as we want to relocate only two tablespaces and not all tablespaces so we have used.
    Can we use db_file_name_convert like this i.e. does this work for only two tablespaces tab1 and tab2.
    Thanks & Regards
    GirishA

    http://download.oracle.com/docs/cd/B19306_01/server.102/b14239/manage_ps.htm#i1010428
    8.3.4 Renaming a Datafile in the Primary Database
    When you rename one or more datafiles in the primary database, the change is not propagated to the standby database. Therefore, if you want to rename the same datafiles on the standby database, you must manually make the equivalent modifications on the standby database because the modifications are not performed automatically, even if the STANDBY_FILE_MANAGEMENT initialization parameter is set to AUTO.
    The following steps describe how to rename a datafile in the primary database and manually propagate the changes to the standby database.
    To rename the datafile in the primary database, take the tablespace offline:
    SQL> ALTER TABLESPACE tbs_4 OFFLINE;
    Exit from the SQL prompt and issue an operating system command, such as the following UNIX mv command, to rename the datafile on the primary system:
    % mv /disk1/oracle/oradata/payroll/tbs_4.dbf
    /disk1/oracle/oradata/payroll/tbs_x.dbf
    Rename the datafile in the primary database and bring the tablespace back online:
    SQL> ALTER TABLESPACE tbs_4 RENAME DATAFILE 2> '/disk1/oracle/oradata/payroll/tbs_4.dbf'
    3> TO '/disk1/oracle/oradata/payroll/tbs_x.dbf';
    SQL> ALTER TABLESPACE tbs_4 ONLINE;
    Connect to the standby database, query the V$ARCHIVED_LOG view to verify all of the archived redo log files are applied, and then stop Redo Apply:
    SQL> SELECT SEQUENCE#,APPLIED FROM V$ARCHIVED_LOG ORDER BY SEQUENCE#;
    SEQUENCE# APP
    8 YES
    9 YES
    10 YES
    11 YES
    4 rows selected.
    SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;
    Shut down the standby database:
    SQL> SHUTDOWN;
    Rename the datafile at the standby site using an operating system command, such as the UNIX mv command:
    % mv /disk1/oracle/oradata/payroll/tbs_4.dbf /disk1/oracle/oradata/payroll/tbs_x.dbf
    Start and mount the standby database:
    SQL> STARTUP MOUNT;
    Rename the datafile in the standby control file. Note that the STANDBY_FILE_MANAGEMENT initialization parameter must be set to MANUAL.
    SQL> ALTER DATABASE RENAME FILE '/disk1/oracle/oradata/payroll/tbs_4.dbf'
    2> TO '/disk1/oracle/oradata/payroll/tbs_x.dbf';
    On the standby database, restart Redo Apply:
    SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE
    2> DISCONNECT FROM SESSION;
    If you do not rename the corresponding datafile at the standby system, and then try to refresh the standby database control file, the standby database will attempt to use the renamed datafile, but it will not find it. Consequently, you will see error messages similar to the following in the alert log:
    ORA-00283: recovery session canceled due to errors
    ORA-01157: cannot identify/lock datafile 4 - see DBWR trace file
    ORA-01110: datafile 4: '/Disk1/oracle/oradata/payroll/tbs_x.dbf'

  • Steps To Create Physical Standby Database In Windows 7

    Hi All,
    I want to create a physical standby database in my windows 7 system. I have created one service stdby in my machine with all your help and now I need your help to configure standby configuration.
    I am using Oracle 10G version 10.2.0.1.0.
    Please suggest.
    Regards,
    Arijit

    [on primary]
    step-1 check if archiving is enable
    SQL> archive log list;
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            /PGHProdDB/archive/paceview/
    Oldest online log sequence     52
    Next log sequence to archive   54
    Current log sequence           54
    step-2
    sqlplus> ALTER DATABASE force logging;step-3
    connect to rman
    take an full backup
    RMAN RUN {
    allocate channel d1 type disk;
    backup format '/u01/backups/PRIMARY/df_t%t_s%s_p%p' database;
    sql 'alter system archive log current';
    backup format '/u01/backups/PRIMARY/al_t%t_s%s_p%p' archivelog all;
    backup current controlfile for standby format '/u01/backups/PRIMARY/sb_t%t_s%s_p%p';
    release channel d1;
    step-4
    now copying initpfile,pwdfile on appropriate destination and rename it.
    step 5
    now create listener on standby db side::
    and restart it by ----
    lsnrctl reload
    and login to primary db and register listener information in tnsfile.ora---
    standby=
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.13)(PORT = 1521))
        (CONNECT_DATA =
          (SERVICE_NAME = standby)Step 6 Startup the standby
    SQL> startup nomount pfile='/u01/app/oracle/admin/PRIMARY/pfile/init.ora';step 7
    though our primary db is ready to connect with standby db
    [oracle@PGH-DB ~]$ rman target / auxiliary sys/tiger@standby
    Recovery Manager: Release 10.2.0.4.0 - Production on Mon Aug 6 12:16:08 2012
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    connected to target database: primary (DBID=2092349485)
    connected to auxiliary database (not started)
    RMAN> run {
    allocate channel C1 device type disk;
    allocate auxiliary channel C2 device type disk;
    duplicate target database for standby nofilenamecheck;
    }When this completes
    Make sure you shutdown the database and then switch the ORACLE_SID=STANDBY
    when you perform that much let me know :)
    Edited by: abdul_ora on Sep 12, 2012 11:37 AM

  • Related to recovery in Physical standby database in RAC

    In Physical Standby database all instance involved in recovery processes or any one instance will be their in in recovery mode
    If is like this another instance will be for high availabily can any one in forum explain me it will be help full

    With your Primary database being RAC, the Physical Standby does not have to be RAC, although, obviously it would be preferred to have scalability as required at a DR site.
    Whether your Standby is RAC or non-RAC, the automatic Recovery that is done at the Standby is done by one instance only. It would be applying the ArchiveLogs from all the threads (i.e. instances) of the Primary.
    Database Recovery is always done by a single instance.
    Hemant K Chitale
    http://hemantoracledba.blogspot.com

  • OC4J_BI_Forms Fails To Start After Windows Reboot

    Hi,
    After upgrading the metadata repository database to 9.2.0.6 and updating the compatible parameter and creating a new pfile, my OC4J_BI_Forms server fails to start automatically after a reboot.
    I can start the OC4J_BI_Forms server manually and it works fine, but would like it to start automatically after a reboot like it used to.
    I checked the server.xml file and verified autostart is set to true.
    I also checked the server's log files and opmn log files, but couldn't find any error messages saying OC4J tried to start and failed.
    I noticed that OID is taking a little longer to start than it used to. Is it possible this lag is causing the OC4J_BI_Forms to fail starting automatically?
    All other servers start fine after a reboot - only OC4J_BI_Forms is not working correctly.
    Thanks,
    Jim
    Message was edited by: Jim
    434963

    <p>As a workaround for this problem, I created a simple batch file containing the command:</p>
    <p><tt>d:\orahome2\opmn\bin\opmnctl startproc ias-component=OC4J</tt></p>
    <p>I then created a scheduled task in Windows Task Scheduler to run the batch file on server startup. So far it seems to work fine.</p>
    <p>Would still like to know why the OC4J_BI_Forms instance is failing to autostart, if anyone has any ideas.</p>

  • Use standby-database as standby-database after creating primary database

    First I will tell what we have and what I did.
    We have a standby database on server B that was not started. We did a cold copy to server A and opened the database on server A as primary database. Now we wonder if we can use the standby database on server B to apply archives without creating a new copy to server B. The standby database on server B is waiting for sequence 2900, while the database on server A started with a new sequence.
    Is it possible somehow to start the recovery again on the standby databsae on server B without creating a new copy?
    Forgot to mention: db-version is 9.2.0.7.0, OS is SunOS 5.10

    Writing seperate code is not needed, Oracle will copy the files if the log_archive_dest is set to the right value.
    However, it is solved!
    What I did:
    - create standby controlfile on the primary
    - copy standby controlfile to standby database
    - on standby: startup nomount / alter database mount standby database
    - on primary: set log_archive_dest_2 to trigger the copying of archivelogs to the standby
    Right now the standby database is recovering.

  • Number of parallel recovery processes in standby

    Hi,
    How to find the number of parallel recovery processes that the standby is started with..MRP parallel???

    user13179227 wrote:
    Hi,
    How to find the number of parallel recovery processes
    that the standby is started with..MRP parallel???what is "MRP parallel"?

  • Check actual apply log time on standby database after synchronization

    Hi All,
    I want to check the date and time stamp of applied archived logs on stanby database. How should I check that??
    My dataguard link was broken for sometime and meanwhile lot of transactions happened on primary database. Now When the link came up the synchronisation happened within few hours and ultimatly transport and appliy lag became 0. But now I want to check actual time taken for tranporting the logs and applying them on standby database. Is there any way I could do that easily..
    Thanks

    This script written by Yousef Rifai I found here http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34772&DestinationA=RSS might be just what you need (run on standby database):
    set ver off
    alter session set nls_date_format='dd-mon-yy hh24:mi:ss'
    select app_thread, seq_app, tm_applied,
    nvl(seq_rcvd,seq_app) seq_rcvd, nvl(tm_rcvd,tm_applied) tm_rcvd
    from
    (select sequence# seq_app, FIRST_TIME tm_applied, thread# app_thread
    from v$archived_log where applied = 'YES'
    and (first_time, thread#) in (
    select max(FIRST_TIME ), thread#
    from v$archived_log where applied = 'YES'
    group by thread# )
    (select sequence# seq_rcvd, FIRST_TIME tm_rcvd, thread# rcvd_thread
    from v$archived_log where applied = 'NO'
    and (first_time, thread#) in (
    select max(FIRST_TIME ), thread#
    from v$archived_log where applied = 'NO'
    group by thread# )
    where rcvd_thread(+)= app_thread
    Best regards,
    Robert
    http://robertvsoracle.blogspot.com

  • Recover standby database after primary failed

    Hi,
    I'm having 11g setup with 2 standby databases.  My scenario is i'm doing failover on one standby[new primary] and converting old primary as a standby.  Question is what is the status of another standby? have to create new standby or can recover using flash option?
    regards,
    jp

    '11g' is not a version, it is a marketing label. You need to post your version in the format <x>.<x>.<x>.<x>
    Yes, I know this is asked much.
    Also your question sadly lacks on details, as in this version of Oracle you can cascade standby databases (standby 1 can cascade to standby 2)
    This begs the simple question:
    Did you try?
    If so, what happened?
    If you didn't try, why didn't you try? What can happen?
    Sybrand Bakker
    Senior Oracle DBA

  • I tried to power up my MB Pro yesterday and got the usual start up screen displaying the apple logo and the indicator that the start up process was proceeding.  After 5 minutes, the logo disappears with a grey circle with line thru it and nothing.  ???

    I tried to power up my MacBook Pro yesterday and got the suual grey screen, Apple logo, and the start up indicator circling gear.  After 5 minutes of this, the logo disappears replaced with a grey circle with a line thru it.  This is the first time this has happened. 

    hi Melophage,
         Please Help!!!! https://discussions.apple.com/message/25645888#25645888

  • Oracle XE: Database does not mount automatically after Windows reboot

    Hi,
    after rebooting a Windows 2003 Server, the Oracle Services seem to start properly, but the database is not mounted.
    However the database can be mounted manually via that SQL console.
    How do I achieve that the database is mounted automatically?
    Best regards, Erhard

    Hi,
    sorry I forgot to mention that I am new to Oracle.
    Here's the reg key, so you can see all parms yourself:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE]
    @=""
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_XE]
    "StmtCacheSize"="0"
    "NLS_LANG"="GERMAN_GERMANY.WE8MSWIN1252"
    "ORACLE_HOME_NAME"="XE"
    "ORACLE_BASE"="C:\\oraclexe\\"
    "VERSION"="10.2.0.1.0"
    "ORACLE_HOME_KEY"="SOFTWARE\\ORACLE\\KEY_XE"
    @=""
    "ORAMTS_CP_TRACE_LEVEL"="0"
    "Type"=dword:00000057
    "ORACLE_SID"="XE"
    "ORACLE_HOME"="C:\\oraclexe\\app\\oracle\\product\\10.2.0\\server"
    "ORAMTS_CP_TRACE_DIR"="C:\\oraclexe\\app\\oracle\\product\\10.2.0\\server\\oramts\\trace"
    "StatementCacheSize"="0"
    "OLEDB"="C:\\oraclexe\\app\\oracle\\product\\10.2.0\\server\\oledb\\mesg"
    "ORA_XE_AUTOSTART"=hex(2):54,00,52,00,55,00,45,00,00,00
    "ORA_XE_SHUTDOWN"=hex(2):54,00,52,00,55,00,45,00,00,00
    "ORA_XE_SHUTDOWNTYPE"=hex(2):69,00,6d,00,6d,00,65,00,64,00,69,00,61,00,74,00,\
    65,00,00,00
    "ORA_XE_SHUTDOWN_TIMEOUT"=hex(2):39,00,30,00,00,00
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_XE\ODP.NET]
    @=""
    "TraceFileName"="C:\\ODPNET.trc"
    "TraceLevel"="0"
    "TraceOption"="0"
    "StatementCacheSize"="10"
    "Version"="10.2.0.100"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_XE\OLEDB]
    @=""
    "CacheType"="Memory"
    "ChunkSize"="100"
    "DistribTX"="1"
    "FetchSize"="100"
    "OSAuthent"="0"
    "PLSQLRset"="0"
    "PwdChgDlg"="1"
    "SchRstLng"="10000"
    "UserDefFn"="0"
    "DisableRetClause"="1"
    "VCharNull"="1"
    "TraceCategory"="0"
    "TraceFileName"="c:\\OraOLEDB.trc"
    "TraceLevel"="0"
    "TraceOption"="0"
    "SPPrmDefVal"="0"
    "StmtCacheSize"="10"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\OracleMTSRecoveryService]
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\OracleMTSRecoveryService\Protid_0]
    "Name"="HTTP"
    "Host"="ep-srv-01"
    "Port"="2030"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\OracleMTSRecoveryService\Setup]
    "NumberOfInstalls"=dword:00000001
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\OracleMTSRecoveryService\Setup\All Versions]
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\OracleMTSRecoveryService\Setup\All Versions\1]
    "Version"="10.2.0.1.0"
    "Home"="C:\\oraclexe\\app\\oracle\\product\\10.2.0\\server"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\OracleMTSRecoveryService\Setup\Current Version]
    "Version"="10.2.0.1.0"
    "Home"="C:\\oraclexe\\app\\oracle\\product\\10.2.0\\server"

  • NB100 doesnt starts recovery process

    Hi, my model is NB 105-SP2802R, I tried to recovery using "press 0 when you turn on" but doesnt works. It displays LOADING DISKRAM... the bar complete and then appear "if I want to install a SCSI RAid of other manufactures" and then goes to a black screen with the mouse pointer. Hard disk light blink as if it working and seconds later... machine power off.... :(
    Sometime ago I could do it with out any trouble, but this (it would be the second time I recover the OS) doesnt works.
    I would appreciate any contribution!!
    Greetings from Argentina...
    Mario!

    A year ago, I sent the computer to toshiba service. I dont remember if they changed something on the motherboard because it doesnt boot. They fixed the problem, before this I recover the system. This is the first time that I try to recover after the problem, and now the machine is useless.

  • Firefox 18 will not open for until it unsuccessfully tries to load an update after Windows reboot every time.

    Each time I reboot my computer, Firefox 18 will be working in the background after I double click the icon. It does not show up in the task manager. If I double click the icon several times some minutes later, it will finally open up all the windows. The first window will say that an update was unsuccessfully loaded, and it will try again. When that fails, then I close that window and I am good until I reboot again.
    I have already tried resetting to default. I also completely uninstalled it with all my personal settings and then reinstalled it.
    The trouble remains.

    Hey i have this problem on my laptop. Its a very annoying but usually these solution fixes it http://mzl.la/Mqh7m3.

Maybe you are looking for

  • Autofill for email no longer works with ios 6

    iphone 4s does not autofill email addresses after iphone ios 6 update

  • Z2 vs Z3

    Hi Sony i bought my sony z2 from 2 months and i believe this is a superb phone.. WHICH SHOULD LAST AS SONY's 2014 FLAGSHIP UNTIL I BUY UPCOMING Z4 2015's FLAGSHIP today after z3 family announcement i can see that my z2 is getting old somehow while bo

  • My website only previews correctly in Chrome

    Thanks to Old Toad and Roddy, I was able to preview my website in different browsers.  Unfortunately, the error I was having before (the site comes up completely jumbled, the words stretched down the page, but the links still work) occurs in both saf

  • I can find update for my iphoto 8.1.2

    My computer crash i hade to re-install ilife but since its version 8.1.2 there is not update to get to version 9.0 to continue the updates and use my present library any one can help?

  • Adobe 9.2 - Comments transferring across PDF documents

    Has anyone had the problem of opening PDF documents for review online and comments were pulled from another document stored in the same database?? This only started happening with version 9.2 Professional installed and happens more often in IE then F