Check disk for errors caused data lost

in the past few weeks i was hearing some weired sounds coming from my laptop, so a friend recommended using "check disk local for errors"
it took a few hours. but when it finished, i found out that i lost 7GB of data (movies,images,pdf.....) from my USER folder but disk c; didn't gain any free space, which means that i still have my files but they are hidden somewhere.
    -could someone please tell me how to retrieve them?¿?¿¡¡¡

This is an indication your HDD has bad sectors.  This is the loss of the magnetic properties of the platter and cannot be fixed by Windows.  Suggest you replace you HDD As Soon As Possible (ASAP).
You may be able to rescue the existing data by using a professional HDD data recovery utility or service but there is no guarantee your HDD data can be rescued.
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

Similar Messages

  • RSA3 check generated datasource error, ODS data can't be updated into cube

    Hi Experts,
    I create an ODS( T_ODA01 ), and loaded data from flat file into this ODS. Of course, I activated the ODS after the loading process.
    Now Created an Infocube( T_CUBE01 ) similiar with the ODS.
    Next I want to update the data from ODS T_ODS01 into T_CUBE01.
    Following are my steps:
    1, Create Update rule from the InfoCube T_CUBE01, input the ODS T_ODS01 as the datasource.
    2, Activate the update rule
    3, Selected the 'Update ODS data in data target' in the context menu of ODS T_ODS01
    I checked the status of this process in the monitor. But it failed informed me that 'No IDoc generated in BW', and sent 0 records.
    Then I wanted to check the Generated DataSource 8T_ODS01 in RSA3. But when executed the check process, it noted me that Runtime Error.
    Syntax error in program "SAPLXRSA ".
    What happened?
    ------------
    The following syntax error occurred in the program SAPLXRSA : "The type "RSR_T_RANGESID" is unknown." Error in ABAP application program.
    The current ABAP program "SAPLRSAP" had to be terminated because one of the statements could not be executed.
    This is probably due to an error in the ABAP program.
    Error analysis
    The following syntax error was found in the program SAPLXRSA : "The type "RSR_T_RANGESID" is unknown."
    Information on where termination occurred
    The termination occurred in the ABAP program "SAPLRSAP" in  "CALL_DATA_CUSTOMER_FUNCTION". The main program was "RSFHGEN2 ".
    The termination occurred in line 117 of the source code of the (Include)  program "LRSAPF06" of the source code of program "LRSAPF06" (when calling the editor 1170).
    Source code extract
    001140   * Call Customer-Exit
    001150     message s299 with 'BEGIN EXIT' sy-uzeit.
    001160     clear sy-subrc.
    >     call customer-function '001'
    001180          exporting
    001190               i_datasource             = l_datasource
    001200               i_isource                = l_12b_source
    001210               i_updmode                = p_updmode
    001220          tables
    001230               i_t_select               = p_t_select
    001240               i_t_fields               = p_t_fields
    001250               c_t_data                 = p_t_data
    001260               c_t_messages             = l_t_messages
    001270          exceptions
    001280               rsap_customer_exit_error = 1
    001290               others                   = 2.
    001300     message s299 with 'END EXIT' sy-uzeit.
    Would you pls guide me how to crorrect this error?
    Many thanks for your help.

    Hi Kenneth,
    this user exit is called everytime you request transactional data, as you said, system wide.
    Then in the exit you have usually a CASE WHEN I_SOURCE = .... where you code your enhancement for a particular datasource.
    Needless to say that if you enable the exit, even for testing, you shall write something in; at least
    CASE I_SOURCE.
       WHEN 'your_data_source'.
    ENDCASE.
    hope that sheds light
    Olivier

  • Need input for error caused while trggering a output type

    I had created a custom program and assigned it to a custom output type. while processing this output type through VF01(billing doc) it is generating an error saying commit_in_posting. can anyone suggest in this regard........

    1Check for VF01 is there any control routine written for this output type which blocks it from triggering this output.
    2. are there any condition records maintained which are creating problems.
    3 check the out put poecedures aslo....

  • Check disk utility error message----itunes.exe- Corrpt File

    Isn't this a MAC error message not sure why i'm recieving this message. This happen when I attempt to move music from the library to ipod....Please help

    Are you saying that you have songs on your iPod that are not in iTunes? If you have been relying on iPod as the sole backup for your music, I think you now understand why it's important to backup your library in some fashion, such as burning data CD/DVD's. When you have to restore your iPod because of an iPod problem, your music is gone.
    You can use the following instructions from MacMuse to move the contents of your iPod back into iTunes.
    http://discussions.apple.com/thread.jspa?threadID=159372&start=0&tstart=0
    Once you are backup & running, PLEASE BACKUP YOUR FILES!

  • Exception Handling for errors caused by Remote tables

    Hello
    I am trying to run a process that retrieves data from a remote table. Unfortunately occasionally the process fails because I exceed the number of simultaneous sessions allowed for the relevant table. I want to be able to handle this by directing the user to an errors page that I have built.
    Unfortunately I cannot seem to be able to handle the exception. I have included an EXCEPTION WHEN OTHERS section but this does not seem to work.
    Is it possible to handle these sort of errors? If it is possible I want to transfer this process into an asynchronous process so that the query can run in the background.
    Cheers Ian

    The code within my PLSQL DBMS JOB process is;
    declare
    CURSOR curTest IS
    SELECT DISTINCT PREMISE_ID FROM RWN_OOA_IMPORT WHERE PREMISE_ID IS NOT NULL;
    recTest curTest%ROWTYPE;
    l_value NUMBER :=1;
    l_process NUMBER;
    begin
    l_process := GET_CURRENT_PROCESS(1030);
    UPDATE IMPORT_PROCESS SET VOLUME_EXPECTED = (SELECT COUNT(PREMISE_ID) FROM (SELECT DISTINCT PREMISE_ID FROM RWN_OOA_IMPORT WHERE PREMISE_ID IS NOT NULL), PROCESS_STARTED = 1 WHERE PROCESS_ORDER = l_process;
    commit;
    FOR recTest IN curTest
    LOOP
    INSERT INTO CD_IMPORT (PREMISE_ID, LINK_REF, AT_CODE, TABLE_ID)
    (SELECT PRO_NUMBER, LINK_REFERENCE, CD_CPA.AT_CODE, 1 FROM CD_CPA
    WHERE PRO_NUMBER = rectest.PREMISE_ID AND ACCOUNT_NAME IS NOT NULL);
    UPDATE_STATUS(l_process, l_value);
    l_value := l_value + 1;
    END LOOP;
    EXCEPTION
    WHEN err_type.REMOTE_OBJECT_FAILURE THEN
    UPDATE_PROCESS_ERROR(DBMS_UTILITY.FORMAT_ERROR_STACK,l_process);
    WHEN err_type.RECURSIVE_SQL_LEVEL THEN
    UPDATE_PROCESS_ERROR(DBMS_UTILITY.FORMAT_ERROR_STACK,l_process);
    WHEN err_type.SIMULTANEOUS_SESSIONS THEN
    UPDATE_PROCESS_ERROR(DBMS_UTILITY.FORMAT_ERROR_STACK,l_process);
    WHEN err_type.PRECEDING_ERROR THEN
    UPDATE_PROCESS_ERROR(DBMS_UTILITY.FORMAT_ERROR_STACK,l_process);
    WHEN OTHERS THEN
    UPDATE_PROCESS_ERROR('Unhandled Error message' ,l_process);
    end;
    The table CD_CPA is the synonym to the DBlink table. The other processes used in this process is the UPDATE_PROCESS_ERROR shown below;
    create or replace procedure "UPDATE_PROCESS_ERROR"
    (in_error IN VARCHAR2, in_process_id IN NUMBER)
    is
    begin
    EXECUTE IMMEDIATE 'UPDATE IMPORT_PROCESS SET ERROR_MESSAGE = ' || chr(39) || in_error || chr(39) || ', ERROR = 1 WHERE PROCESS_ORDER = ' || in_process_id;
    commit;
    end;
    There is also the package err_type which holds the 4 error messages I get when I run or compile this process;
    create or replace PACKAGE err_type
    IS
    REMOTE_OBJECT_FAILURE EXCEPTION;
    PRAGMA EXCEPTION_INIT(REMOTE_OBJECT_FAILURE,-4052);
    RECURSIVE_SQL_LEVEL EXCEPTION;
    PRAGMA EXCEPTION_INIT(RECURSIVE_SQL_LEVEL,-604);
    SIMULTANEOUS_SESSIONS EXCEPTION;
    PRAGMA EXCEPTION_INIT(SIMULTANEOUS_SESSIONS,-2391);
    PRECEDING_ERROR EXCEPTION;
    PRAGMA EXCEPTION_INIT(PRECEDING_ERROR,-2063);
    end err_type;
    Hope this helps.

  • Check Form for Errors When Digitally Signing?

    Greetings,
    I am using LiveCycle Designer ES3.  The target version of my form is Adobe version 8. 
    My form is initially completed by a document generator, then forwarded to a reviewer.  The reviewer will then use the form to document his/her determinations (approved, disapproved, etc) of the material the document generator submitted for review.  Once the reviewer is done with his/her determinations, he/she digitally signs the document using the signature field created in LiveCycle.  Once the document is signed, it is locked down and unable to be edited further.
    Is it possible to have my form check for oustanding errors when the reviewer attempts to sign?  Also, is it possible to not allow the reviewer to sign if errors are present?
    Thank you in advance for your help.

    To clarify, the document generator only fills out a few fields.  The reviewer completes the rest of the form, so the reviewer would be the one making the errors.

  • How To Check Disk For Failures

    It's more of a two part question.
    1. Is there a way to check and see if either of my two internal SATA drives are failing?
    2. How can I check and see if either disks have filesystem failures?
    [root@ghost ~]# fdisk -l
    Disk /dev/sdb: 250.1 GB, 250058268160 bytes
    255 heads, 63 sectors/track, 30401 cylinders, total 488395055 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x0005b294
    Device Boot Start End Blocks Id System
    /dev/sdb1 63 488395054 244197496 83 Linux
    Disk /dev/sda: 250.1 GB, 250058268160 bytes
    255 heads, 63 sectors/track, 30401 cylinders, total 488395055 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x00048e7c
    Device Boot Start End Blocks Id System
    /dev/sda1 63 8000369 4000153+ 82 Linux swap / Solaris
    /dev/sda2 * 8000370 8385929 192780 83 Linux
    /dev/sda3 8385930 488395054 240004562+ 83 Linux
    One or both drives are becoming more noticeably noisy. Thanks for any info / help!

    Try gsmartcontrol, it's a graphical frontend to smartmontools, which in turn display the SMART status of your hard drives.
    https://en.wikipedia.org/wiki/S.M.A.R.T.
    Post the log here, if you can't understand the values.

  • How to check code for errors

    how can I read code from a .java file and return whether it is compilable or if there are errors in the code?

    I wrote this code:
    public boolean Compilable ()
    try
    Process process = Runtime.getRuntime ().exec ("javac Test.java");
    catch (Exception e)
    return false;
    return true;
    but it throws this exception:
    java.io.IOException: CreateProcess: javac Test.java error=2
         at java.lang.ProcessImpl.create(Native Method)
         at java.lang.ProcessImpl.<init>(ProcessImpl.java:81)
         at java.lang.ProcessImpl.start(ProcessImpl.java:30)
         at java.lang.ProcessBuilder.start(ProcessBuilder.java:451)
         at java.lang.Runtime.exec(Runtime.java:591)
         at java.lang.Runtime.exec(Runtime.java:429)
         at java.lang.Runtime.exec(Runtime.java:326)
         at Test.main(Test.java:7)
         at __SHELL27.run(__SHELL27.java:6)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at bluej.runtime.ExecServer$3.run(ExecServer.java:855)
    what am I doing wrong?

  • Check required for Required Delivery date not to be copied in Billing date

    Hi Friends,
    We have a requirement by the client that if we change the required delivery date in the order,the billing date should not be changed at the sales order item level.
    Requirement comes from the fact that management decides a day on personal negotiation, when should be the billing date and the delivery date is independent of billing date.
    As of now ,we are billing based on the sales order therefore the billing date is changed if we change the required delivery date.
    I would be grateful,if anybody can help me.
    Regards,
    Amit Kashyap

    Hi Amit,
    You have to maintain the invoicing dates in payer master {billing document tab}, which in turn will control the billing dates. As per the agreement with the customer you will create a calender which needs to be filled in the above mentioned field in the customer master.
    Reward points if you are satisfied with my view.
    Hrishi

  • Unplugging headphone disconnect usb drives and sd slot causing data lost

    Hi i'm Michele from Italy
    On my macbook pro, when i unplug headphone and there is a usb drive connected i have problems an system give me message of unsure eject and sometimes the drive became unreadble forcing me to reformat.
    Same problem with sd slot but my sd card became corrupted and i can not use it anymore.
    Very bad first experience for me just caming from windows/pc notebook.
    Michele
    [email protected]

    Welcome to Apple Discussions!
    It sounds like you have been unplugging these before ejecting them. To eject something, click on Finder at the lower left of your display. In the Finder window, you will see your USB device with a symbol to the right that looks like a triangle with a line under it. Click on this symbol to eject the device, and once the icon has disappeared from the desktop and the drive has spun down, you can safely turn off the device and unplug it.
    Hope this helps!

  • I am trying to open my Nightmare 2.jar file but java will not open. It says check console for error messages but there appears to be none. I have the latest version of java and I have both the 64 bit and 34 bit se6 set to the top of the list.

    Just like in the title of this discussion the file will not open. Any suggestions? That would be grrreat.

    Hi,
    The D810 requires Camera Raw 8.6 or later - the latest version that is compatible with Photoshop Elements 12 is Camera Raw 8.5 as far as I can see.
    You need to either buy a new version of Photoshop Elements or use the free Adobe DNG converter.
    DNG  Converter 8.8
    Win – http://www.adobe.com/support/downloads/detail.jsp?ftpID=5888
    Mac – http://www.adobe.com/support/downloads/detail.jsp?ftpID=5887
    Useful Tutorial
    http://www.youtube.com/watch?v=0bqGovpuihw
    Brian

  • Could anyone check this code for errors for me??

    Hi! Could someone please tell me if you see any problems with this code?? a friend wants me to check it for errors, but can't find any. I just wanted to make sure, because there are probably a lot of better scripters than me reading this. Please answer soon!!
    heres the code:
    stop();
    addEventListener(Event.ENTER_FRAME, preLoad);
    function  preLoad(e:Event):void{
    var bytestoLoad):Number = loaderInfo.bytesTotal; 
    var numberLoaded:Number = loaderInfo.bytesLoaded;
    if (bytestoLoad ==  numberLoaded) {
    removeEventListener)Event.ENTER_FRAME, preLoad) 
    gotoAndStop(2);
    }else {
    preLoader.preLoaderFill.scaleX =  numberLoaded/bytestoLoad;
    preLoader.bytePercent.text = Math.floor  (numberLoaded/bytestoLoad*100) + "%";
    Thanks!!
    -Sammy

    I ran it on debug mode and changed it to this? see any problems now? or are they fixed? It looks to me like it took some actions out, I hope that doesn't
    effect it....
    stop();
    addEventListener(Event.ENTER_FRAME, preLoad);
    function preLoad(e:Event):void{
    var bytestoLoad):Number = loaderInfo.bytesTotal;
    var numberLoaded:Number = loaderInfo.bytesLoaded;
    if (bytestoLoad == numberLoaded) {
    removeEventListener)Event.ENTER_FRAME, preLoad)
    gotoAndStop(2);
    i'm kinda new to flash ((I started as a lua scripter (on Roblox)) so I'm a little confused about this. Thanks for the help!!

  • OraRRP Error with "Unable to copy data file;Error code 2, check disk space"

    Hi,
    Some users get this message -"Unable to copy data file;Error code 2, check disk space" when run report with orarrp, but most users do not get it.
    I check free space at both server and client side, they are very sufficient.
    I also checked directory exists for REPORTXX_TMP variable.
    My user call reports via URL (rwservlet) and it occur for all reports.
    How I can solve this problem?
    Thanks in advance.
    Tawatchai R.

    Hi,
    have the same problem now. One user has temporarily problems to download .rrpa files via URL (rwservlet) request. Error code: -"Unable to copy data file;Error code 2, check disk space". Did you get a solution??
    Thanks in advance. Axel

  • Wait on the Database Engine recovery handle failed. Check the SQL server error log for potential causes in SQL Server 2012 Developer Edition

    I m using SQL Server 2012 Developer Edition. Even I tried 2012 express and enterprise edition but all
    gave same error. I browsed msdn blog. But nothing help me out.
    Below is the error log details--
    Overall summary:
      Final result:                  Failed: see details below
      Exit code (Decimal):           -2061893606
      Start time:                    2013-10-21 12:58:05
      End time:                      2013-10-21 13:52:30
      Requested action:              Install
    Setup completed with required actions for features.
    Troubleshooting information for those features:
      Next step for RS:              Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
      Next step for SQLEngine:       Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
      Next step for DQ:              Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
      Next step for FullText:        Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
      Next step for Replication:     Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
    Machine Properties:
      Machine name:                  CROY-TOSH
      Machine processor count:       4
      OS version:                    Windows 7
      OS service pack:               Service Pack 1
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                    Feature                
                     Language             Edition              Version         Clustered 
    Package properties:
      Description:                   Microsoft SQL Server 2012 Service Pack 1
      ProductName:                   SQL Server 2012
      Type:                          RTM
      Version:                       11
      SPLevel:                       0
      Installation location:         C:\Users\CRoy\Downloads\SQL Server 2012 Developer Edition (x86 and x64) - DVD (English)\x64\setup\
      Installation edition:          Developer
    Product Update Status:
      None discovered.
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      false
      AGTSVCACCOUNT:                 NT Service\SQLSERVERAGENT
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Manual
      ASBACKUPDIR:                   C:\Program Files\Microsoft SQL Server\MSAS11.MSSQLSERVER\OLAP\Backup
      ASCOLLATION:                   Latin1_General_CI_AI
      ASCONFIGDIR:                   C:\Program Files\Microsoft SQL Server\MSAS11.MSSQLSERVER\OLAP\Config
      ASDATADIR:                     C:\Program Files\Microsoft SQL Server\MSAS11.MSSQLSERVER\OLAP\Data
      ASLOGDIR:                      C:\Program Files\Microsoft SQL Server\MSAS11.MSSQLSERVER\OLAP\Log
      ASPROVIDERMSOLAP:              1
      ASSERVERMODE:                  MULTIDIMENSIONAL
      ASSVCACCOUNT:                  NT Service\MSSQLServerOLAPService
      ASSVCPASSWORD:                 <empty>
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            CRoy-TOSH\CRoy
      ASTEMPDIR:                     C:\Program Files\Microsoft SQL Server\MSAS11.MSSQLSERVER\OLAP\Temp
      BROWSERSVCSTARTUPTYPE:         Disabled
      CLTCTLRNAME:                   ROY
      CLTRESULTDIR:                  C:\Program Files (x86)\Microsoft SQL Server\DReplayClient\ResultDir\
      CLTSTARTUPTYPE:                Manual
      CLTSVCACCOUNT:                 NT Service\SQL Server Distributed Replay Client
      CLTSVCPASSWORD:                <empty>
      CLTWORKINGDIR:                 C:\Program Files (x86)\Microsoft SQL Server\DReplayClient\WorkingDir\
      COMMFABRICENCRYPTION:          0
      COMMFABRICNETWORKLEVEL:        0
      COMMFABRICPORT:                0
      CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20131021_125116\ConfigurationFile.ini
      CTLRSTARTUPTYPE:               Manual
      CTLRSVCACCOUNT:                NT Service\SQL Server Distributed Replay Controller
      CTLRSVCPASSWORD:               <empty>
      CTLRUSERS:                     CRoy-TOSH\CRoy
      ENABLERANU:                    false
      ENU:                           true
      ERRORREPORTING:                true
      FEATURES:                      SQLENGINE, REPLICATION, FULLTEXT, DQ, AS, RS, RS_SHP, RS_SHPWFE, DQC, BIDS, CONN, IS, BC, SDK, BOL, SSMS, ADV_SSMS, DREPLAY_CTLR, DREPLAY_CLT, SNAC_SDK, MDS
      FILESTREAMLEVEL:               2
      FILESTREAMSHARENAME:           MSSQLSERVER
      FTSVCACCOUNT:                  NT Service\MSSQLFDLauncher
      FTSVCPASSWORD:                 <empty>
      HELP:                          false
      IACCEPTSQLSERVERLICENSETERMS:  false
      INDICATEPROGRESS:              false
      INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server\
      INSTANCEID:                    MSSQLSERVER
      INSTANCENAME:                  MSSQLSERVER
      ISSVCACCOUNT:                  NT Service\MsDtsServer110
      ISSVCPASSWORD:                 <empty>
      ISSVCSTARTUPTYPE:              Automatic
      MATRIXCMBRICKCOMMPORT:         0
      MATRIXCMSERVERNAME:            <empty>
      MATRIXNAME:                    <empty>
      NPENABLED:                     0
      PID:                           *****
      QUIET:                         false
      QUIETSIMPLE:                   false
      ROLE:                          <empty>
      RSINSTALLMODE:                 DefaultNativeMode
      RSSHPINSTALLMODE:              SharePointFilesOnlyMode
      RSSVCACCOUNT:                  NT Service\ReportServer
      RSSVCPASSWORD:                 <empty>
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  SQL
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  Latin1_General_CI_AI
      SQLSVCACCOUNT:                 NT Service\MSSQLSERVER
      SQLSVCPASSWORD:                *****
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           CRoy-TOSH\CRoy
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  false
      TCPENABLED:                    0
      UIMODE:                        Normal
      UpdateEnabled:                 true
      UpdateSource:                  MU
      X86:                           false
      Configuration file:            C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20131021_125116\ConfigurationFile.ini
    Detailed results:
      Feature:                       Management Tools - Complete
      Status:                        Passed
      Feature:                       Client Tools Connectivity
      Status:                        Passed
      Feature:                       Client Tools SDK
      Status:                        Passed
      Feature:                       Client Tools Backwards Compatibility
      Status:                        Passed
      Feature:                       Management Tools - Basic
      Status:                        Passed
      Feature:                       SQL Server Data Tools
      Status:                        Passed
      Feature:                       Reporting Services - Native
      Status:                        Failed: see logs for details
      Reason for failure:            An error occurred for a dependency of the feature causing the setup process for the feature to fail.
      Next Step:                     Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
      Component name:                SQL Server Database Engine Services Instance Features
      Component error code:          0x851A001A
      Error description:             Wait on the Database Engine recovery handle failed. Check the SQL Server error log for potential causes.
      Error help link:               http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.3128.0&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026
      Feature:                       Database Engine Services
      Status:                        Failed: see logs for details
      Reason for failure:            An error occurred during the setup process of the feature.
      Next Step:                     Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
      Component name:                SQL Server Database Engine Services Instance Features
      Component error code:          0x851A001A
      Error description:             Wait on the Database Engine recovery handle failed. Check the SQL Server error log for potential causes.
      Error help link:               http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.3128.0&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026
      Feature:                       Data Quality Services
      Status:                        Failed: see logs for details
      Reason for failure:            An error occurred for a dependency of the feature causing the setup process for the feature to fail.
      Next Step:                     Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
      Component name:                SQL Server Database Engine Services Instance Features
      Component error code:          0x851A001A
      Error description:             Wait on the Database Engine recovery handle failed. Check the SQL Server error log for potential causes.
      Error help link:               http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.3128.0&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026
      Feature:                       Full-Text and Semantic Extractions for Search
      Status:                        Failed: see logs for details
      Reason for failure:            An error occurred for a dependency of the feature causing the setup process for the feature to fail.
      Next Step:                     Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
      Component name:                SQL Server Database Engine Services Instance Features
      Component error code:          0x851A001A
      Error description:             Wait on the Database Engine recovery handle failed. Check the SQL Server error log for potential causes.
      Error help link:               http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.3128.0&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026
      Feature:                       SQL Server Replication
      Status:                        Failed: see logs for details
      Reason for failure:            An error occurred for a dependency of the feature causing the setup process for the feature to fail.
      Next Step:                     Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
      Component name:                SQL Server Database Engine Services Instance Features
      Component error code:          0x851A001A
      Error description:             Wait on the Database Engine recovery handle failed. Check the SQL Server error log for potential causes.
      Error help link:               http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.3128.0&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026
      Feature:                       Master Data Services
      Status:                        Passed
      Feature:                       Distributed Replay Client
      Status:                        Passed
      Feature:                       Distributed Replay Controller
      Status:                        Passed
      Feature:                       Integration Services
      Status:                        Passed
      Feature:                       Data Quality Client
      Status:                        Passed
      Feature:                       Analysis Services
      Status:                        Passed
      Feature:                       Reporting Services - SharePoint
      Status:                        Passed
      Feature:                       Reporting Services Add-in for SharePoint Products
      Status:                        Passed
      Feature:                       SQL Browser
      Status:                        Passed
      Feature:                       Documentation Components
      Status:                        Passed
      Feature:                       SQL Writer
      Status:                        Passed
      Feature:                       SQL Client Connectivity
      Status:                        Passed
      Feature:                       SQL Client Connectivity SDK
      Status:                        Passed
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20131021_125116\SystemConfigurationCheck_Report.htm

    Hi,
    This 3rd time I followed this link. But nothing new, same error.
    Can you please tell me how to do follow, I cannt do the 1st step, how to change the local system to windows level account, vice-versa. It is shown mine as
    Server Configuration Manager(Local) 
    From here I folllowed the steps ---[I cannt insert link/image :-(]
    SQL 2008/R2 setup fails with "Wait on the database engine recovery handle failed" 
    If I right clicked on SQL Server Service, there is no option to change the account. 
    Hello,
    Thanks for your patience,did you tried stesp mentioned in below article
    http://blogs.msdn.com/b/sqljourney/archive/2012/03/16/sql-2008-r2-setup-fails-with-quot-wait-on-the-database-engine-recovery-handle-failed-quot.aspx
    To resolve it, follow these steps:-
    When the installation throws this error, click on OK and allow it to proceed. It will fail for Database Engine, but the SQL Server service should have
    been created. Check the Services console.
    If the service is present, perform the following steps:-
    1. Go to SQL Server Configuration manager, right click on the SQL Server service, and change the service account (if it is local system, give
    it a windows level account, and vice-versa). It might throw a WMI error but you will see the account getting updated anyway. If not, then use the Services console. Change the account for SQL Agent as well.
    Use this link to change sql server service account
    http://technet.microsoft.com/en-us/library/ms345578.aspx
    2. Next, try to start the service. It should come online.
    3. However, you will not be able to log in to the SQL Server
    4. Now stop the service and start it from the command prompt using -m -c -T3608 parameters.
    5. Now try logging in to the server using admin connection from sqlcmd (sqlcmd admin:<server name>\<instance name> ...)
    6. Once logged in, use the sp_addsrvrolemember '<domain\username>','sysadmin'.
    Also add the builtin/administrators to the sysadmin role
    7. Now stop the service from the command prompt and start it from SQL Server configuration manager
    You should be able to log in to the server now.
    Hope this helps someone.
    Please revert if it helps or even if it does not
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Oracle Error occured, while checking for Already Committed data

    Hi,
    In my 1 day old workspace I see more than 3000 errors logged in the owb_error_log_table with text as shown below , can someone from Oracle please advise what the problem seems to be ?
    Oracle Error occured, while checking for Already Committed data : 76291.DBObject.TABLE_1.2.en_GB
    Oracle Error occured, while checking for Already Committed data : 76291.DBObject.TABLE_1.1.en_GB
    Oracle Error occured, while checking for Already Committed data : 42483.PlatformConfiguration.ORACLE.1.en_GB
    Oracle Error occured, while checking for Already Committed data : 42483.PlatformConfiguration.ORACLE.2.en_GB
    There are many more examples of other errors as well. Google returns nothing for these error....am I the first one to face these errors. We are using 11gRelease2 on RHEL.
    They all have a error text of ORA-01403: no data found
    tks in advance.

    I haven't been able to pin it down to a specific action that causes these errors. I have been having various other problems when importing tables ...the screen just freezes and nothing happens. When I queried this table from sql developer to check if I can spot anything and I found these errors.
    The screen freezes when I add a new oracle location - the test works fine - but when I click OK to the add oracle location screen it just freezes and nothing happens.

Maybe you are looking for

  • How to refresh the reports in excel using macros ?

    Hi All, I am generating a report using MS Excel to connecting the Sql Server 2008 Database. In the Sql Server the reporting table is a transaction table. When open the Excel report and click the Refresh All button under the Data tab. Then the report 

  • Is there a better way to do this transformation

    I have the following code where I create a DOM and I transform it to text. My question since Im new to all this is if theres a cleaner way to capture the transformation and convert to a string that I need to include within the body of an email. Curre

  • GO URL with Session Variable

    I want to use interaction between two reports in different dashboards, which do not share the same tables but the same values. When clicking on column A values in Report A, I want to create action link with option to open Report B, presenting column

  • Java to DB2 Errors

    1) We have DB2 9.1.2 Express C server on SUSE Linux 10.2 kernel v2.6 2) We have JBoss 4.0 application server & Apache web server on other 2 linux boxes. 3) We are using Eclipse for Java development with Hibernate as intermediate layer. 4) While doing

  • How do you edit date/time title slide???

    I've used date/time title slides in my movie, but I can't edit the date/time. I want the time of the clip, instead it just shows the date/time I inserted the title into the movie. On other title slides, you just click on the info to edit but it doesn