Windows 2003 - ntuser.dat corruption

Hi,
Is there a way on a windows 2003 std edition to know what adds / corrupts the NTUSER.DAT file ? This file keeps growing at amazing rate and once it reaches around 180 MB we start to get a ton of I/O on the registry and a few hours later it locks up.
Also, is there a way to clear (literally clear) the certificate store ? We have over 15 000 corrupted entries in it.
Thanks for any advice / help you can provide
Olivier

Hi
Please use processmonitor and check registry change/add. A process must lock the registry a lot. Compare the log with a correct machine.
Regards, Philippe
Don't forget to mark as answer or vote as helpful to help identify good information. ( linkedin endorsement never hurt too :o) )
Answer an interesting question ? Create a
wiki article about it!

Similar Messages

  • Huge ntuser.dat.LOG1 since upgrade to Windows 8.1 prohibits roaming of user profile

    Hello,
    a few days ago my PC (part of our domain) first started to have problems with my user profile. Our domain uses roaming profiles with a size limit of 30MB. My user.dat has a size of 12.5MB. Up to now this did not cause any problems (and does not cause any for
    most users of our domain having a user.dat of similar size). However, after upgrading to Windows 8.1 I repeadly have problems with my profile exceeding its maximum size. After checking my profile, I found a ntuser.dat.LOG1 with 12,5MB in size and a ntuser.dat.LOG2
    of 2MB. As far as I know these files are used to store temporary transactions for the user.dat. But why are they this large? Together they almost completely fill the profile. As an interesting side node the last modification of ntuser.dat.LOG1 dates back more
    then seven days.
    What is further puzzling me: ntuser.dat.LOG1 and ntuser.dat.LOG2 are not synchronized with the roaming profile on the server. At least they are not on the server. However there used to be much smaller versions of these files which could have been transfered
    before the profile size exceeded its limit. Since these file seem not to be part of the roaming part of the profile, they should not count for the roaming profile size. However, they definitely do. Neglecting the registry files the largest file in my profile
    is less than 500kb and there are very few files of this size. I checked locally as well as on our server.
    Deleting the local profile and starting fresh using the roaming profile from our server does work for a day or two but then I run into the same problem. Especially, loosing all local profile data is inconvenient. I could start a new with a completely new
    profile, but I am not convinced that it is a profile issue. In our organisation my computer is one of the first to move to Windows 8.1. Since my profile worked without problems for years now, I am worried that I ran into a Windows 8.1 issue. As users normally
    start to complain about a roaming profile not synchronizing only after their local copy broke, I'd like to make sure that this is a isolated issue.
    Anyone else experiencing similar issues? Any hint on how to solve the problem?
    Regards,
    Oliver

    No, I did not find a solution. However, we moved away from roaming profiles and rely on folder redirection only. That works for us. Since we can redirect the most important folders there is no more need for roaming profiles (at least in our case).

  • Data Execution Protection option in Windows 2003

    Does anyone know if enabling the Data Execution Protection option in Windows 2003 will have any negative effect on a SAP system?

    well it is as Eric already mentioned:
    1st recommendation: Go for 64 Bit!
    2nd recommendation:
    decrease the user address space carefully if you have to.
    start with /userva=2900, if the problem still happens change /userva step by step to lower values each time evaluating wether the new value has fixed the situation.
    the problem with /userva is, that it shortens the virtual address space (addressable memory for normal applications). with /userva=2700 your application is able to address 2.7 GB of virtual memory, the remaining 1.3 GB can only be used in kernel mode (operating system, drivers etc). In this case (/userva=2700) your application (ABAP Report, other memory consuming programs) can only utilize 300 MB less memory compared to /userva not set.
    Those ABAP reports currently utilizing 95 percent of the available address space will no longer run when /userva is set to 2700.
    It is much less pain to run on 64 Bit OS - you don't have to play around with all these funny parameters.
    peter

  • Problem opening ODBC data source in Windows 2003

    I am having difficulty opening a ODBC data source in SQL
    Server 2000 running on Windows 2003 using ColdFusion MX7 (it works
    cleanly on the same database on windows 2000 server). Anyone has
    any ideas.

    Here it is, there is an issue with our Search functionality with the new SDN:
    Symptom
    When setting location on a Crystal Reports XI Report using the Progress OpenEdge ODBC Driver in Crystal Reports 2008 or Crystal Reports 2011 get “Some tables could not be replaced, as no match was found in the new data source.  Please specify the table required for any unmodified tables.”
    Environment
    Crystal Reports 2008 or 2011 
    Progress OpenEdge ODBC Driver
      Reproducing the Issue 
    Open a Crystal Report created in CR XI Report using the Progress OpenEdge ODBC Driver in Crystal Reports 2008 or 2011 
    Set location to a new ODBC Data Source 
    Get error "some tables could not be replaced, as no match was found in the new data source.  Please specify the table required for any unmodified tables.”
    Cause
    Crystal Reports XI only creates aliases for tables with special characters or duplicate names.
    Crystal Reports 2008 introduces a change which requires aliases for all tables.
    Aliases are not created when doing a Set Location on the whole data source.
    If a Customer has hundreds of reports they cannot set location of each table and fix the aliases.
    Resolution
    Upgrade to Crystal Reports 2011 Support Pack 02 or higher 
    Under registry key [HKEY_LOCAL_MACHINE\SOFTWARE\SAP BusinessObjects\Suite XI 4.0\Crystal Reports\Database\ODBC] create string UseTableNameAsAlias and set it to PGPRO1019.DLL, PGOE1022.DLL. Registry file is attached.
      Keywords 
    Set Location 
    Progress ODBC 
    Crystal Reports 2008 2011

  • Oracleparameter changes date format on windows 2003 server

    Hi, i am using a stored procedure that contains a datetime-field. The date i am sending is formatted as "2007-05-30", but when it comes to the oracle-server, the date has been reformatted to "30-MAY-07".
    I am using ODP.NET within the VS.2005. In web.config i have set the uiculture and culture to sv-SE, the settings on the webserver to Swedish without any positive results.
    So, when i send away a date within the ODP commandparameter it rearrange the date from the component to the server. Any ideas to solve this problem? I have searched the net without any luck. Hopefully someone can help me in the right direction?
    I was looking at setting NLS_LANG = SWEDISH with a first call to the database, but i have not tried that yet. Also, the code works fine on my local computer - so the translation of date is just on the windows 2003 server.
    string ConnStr = "SERVER=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=XX)(PORT=1526))(CONNECT_DATA=(SERVICE_NAME=AAAA)));uid=A;pwd=B;";
    string returnData = "";
    OracleConnection myConnection = new OracleConnection(ConnStr);
    string selecteddate = "2007-05-20";
    string newspaper = "EX";
    try
    myConnection.Open();
    OracleCommand cmd = new OracleCommand("ROUTEXUSER.PKGROUTEX.F_SUB_ROUTEX_JOB", myConnection);
    cmd.CommandType = CommandType.StoredProcedure;
    OracleParameter prm1 = new OracleParameter("vd_datum_in", OracleType.DateTime);
    prm1.Direction = ParameterDirection.Input;
    prm1.Value = selecteddate.ToString();
    cmd.Parameters.Add(prm1);
    OracleParameter prm2 = new OracleParameter("vs_tidning_id_in", OracleType.VarChar);
    prm2.Direction = ParameterDirection.Input;
    prm2.Value = newspaper;
    cmd.Parameters.Add(prm2);
    OracleParameter prm3 = new OracleParameter("vn_seqnr_out", OracleType.Number);
    prm3.Direction = ParameterDirection.Output;
    cmd.Parameters.Add(prm3);
    // add record
    cmd.ExecuteNonQuery();
    // returnvalue
    returnData = cmd.Parameters["vn_seqnr_out"].Value.ToString();
    catch (Exception ex)
    throw new System.SystemException("Error: " + "-" + ex.Message);
    // stänger och avslutar connections
    myConnection.Close();

    Hi,
    I sucessfully installed oracle9i,Forms6i & reports6i on windows 2003 server but now where should i change the tns names and previously in my office i use to install in D FOLDER but now here i installed in F FOLDER pls where should i change those paths and the necessary things.After that where should i paste it in forms6i folder which is in F FOlderYou can copy the tnsnames.ora file in F:\<Oracle_home>\net80\admin
    Regards,
    Xaheer

  • Use a Windows 2003 Data vDisk

    Hi!
    I am migrating a VMWARE Data Server from Windows 2003 to Windows 2012. My idea is to use vdisk which contains all the data and add it to the new 2012 server, altough it as created in a 2003 Server. I can't think of any cons, but has anyone done this before?
    Can you think of possible problems? Thanks!

    Hi RAULPON,
    >>I am migrating a VMWARE Data Server from Windows 2003 to Windows 2012.
    Could you please tell us what "VMWare Data Server" is .
    If it is a software , I would suggest you to conntact to the software vender to confirm whether or not it can run on windows 2012 .
    (server 2012 supports virtual disk formats as VHD/VHDX )
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • I am getting the msg "data corrupted" from windows installer, attempting to install photoshop elements 12

    I am getting the msg "data corrupted" from windows installer, attempting to install photoshop elements 12. have wiped drive of file and redownloaded but get same results. have run regedit and removed Photoshop elements 12 also with no luck. Went back and installed photoshop elements 10 and prerimer and installed good, I have also installed prerimer elements 12 and the install was ok. I also ran trial version of photoshop 13 without any issues. I am at a lost to what is causing this issue. Any suggestions please.

    You can download the trial version of the software thru the page linked below and sidestep the download assistant.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    Photoshop/Premiere Elements 12: http://prodesigntools.com/photoshop-elements-12-direct-download-links-premiere.html

  • Data Integrator 11.7.x and VM WIndows 2003/2008 Servers

    Is Data Integrator 11.7.x supported in the following platform -
    VM Windows 2003 Server
    VM Windows 2008 Server
    ??? Thanks

    The first one yes, for the latter you need to upgrade to DI 12.2 ( DataServices 3.2)

  • Data pump and SGA, system memory in window 2003

    Hi Experts,
    I have a question for oracle 10g data pump. Based on oracle document,
    all data pump ".dmp" and ".log" files are created on the Oracle server, not the client machine.
    That means data pump need to used oracle server SGA or other system memory. is it true?
    Or data pump must be support by oracle server memory?
    we use oracle 10 G R4 in 32 bit window 2003 with memory issue. So we take care this point.
    at the present, we use exp to do exp job. we DB size is 280 G. SGA is 2G in window.
    for testing, i can saw data pump message in alert file. I does not saw taht a export job broken DB and data replication job.
    Does any experts have this point experience?
    Thanks,
    JIM

    Hi Jim,
    user589812 wrote:
    I have a question for oracle 10g data pump. Based on oracle document,
    all data pump ".dmp" and ".log" files are created on the Oracle server, not the client machine.Yes, they are but you can always give a shared location on to another server.
    That means data pump need to used oracle server SGA or other system memory. is it true?
    Or data pump must be support by oracle server memory?Irrespective, the SGA is used for Conventional Export. You can reduce the overhead to some extent by a Direct Export (direct=y), but still the server resources will be in use.
    we use oracle 10 G R4 in 32 bit window 2003 with memory issue. So we take care this point.If you have windiows enterprise edition, why don't you enable PAE to use more memory on provided you have memory beyond 3GB on the server.
    at the present, we use exp to do exp job. we DB size is 280 G. SGA is 2G in window.With respect to the size of the database, your SGA is too small.
    Hope it helps.
    Regards
    Z.K.

  • NTUSER.DAT in every TS profile locked by system process

    I have a 32 bit 2008 Enterprise server (not R2) running terminal services that is continually generating profile errors.  Users are receiving "Your user profile was not loaded correctly! You have been logged on with a temporary profile...". 
    This is accompanied by the following errors in System log:
    1502, User Profile Service - The process cannot access the file because it is being used by another process.
    1515, User Profile Service - Windows has backed up this user profile. Windows will automatically try to use the backup profile the next time this user logs on.
    1511, User Profile Service - Windows cannot find the local profile and is logging you on with a temporary profile. Changes you make to this profile will be lost when you log off.
    This is followed by several successful 501, Folder Redirection events to various folders in the roaming profile location and successful 4101, WinLogon - Windows License Validated
    On logoff, there is a 1530, User Profile Service - Windows detected your registry file is still in use by other applications or services. The file will be unloaded now. The applications or services that hold your registry file may not function properly afterwards. 
     DETAIL -  2 user registry handles leaked from \Registry\User\S-1-5-21-945263920-3218329962-3619911775-1162:
    Process 9304 (\Device\HarddiskVolume2\Windows\System32\winlogon.exe) has opened key \REGISTRY\USER\S-1-5-21-945263920-3218329962-3619911775-1162
    Process 1316 (\Device\HarddiskVolume2\Windows\System32\svchost.exe) has opened key \REGISTRY\USER\S-1-5-21-945263920-3218329962-3619911775-1162\Printers\DevModePerUser
    Of course, the user GUID varies depending on who is doing the logging off, but the behavior is consistent.
    I initially suspected corrupt profile, but recreating from scratch does not resolve the problem.  
    I have seen and tried numerous potential solutions, for example:
    http://cherrybyte.blogspot.com/2007/07/fixing-user-profiles-in-vista.html
    http://support.microsoft.com/kb/947215/en-us
    http://social.answers.microsoft.com/Forums/en-US/vistasecurity/thread/1aaa1799-f29e-4d13-905e-6fee09b3a658
    I have determined that the SYSTEM process is keeping 6 files open after logoff and never relinquishing the handle until reboot: NTUSER.DAT, NTUSER.DAT.LOG1, NTUSER.DAT.LOG2, NTUSER.DAT.{GUID}.TM.blf, NTUSER.DAT{GUID}TMContainer000...001.regtrans-ms and NTUSER.DAT{GUID}TMContainer000...002.regtrans-ms. 
    The handles cannot be closed even with HANDLE or Process Explorer.  I have tried setting HKLM\Software\Microsoft\WindowsNT\ProfileList\(UserGUID)\RefCount to 0 and State to 0, but this has not helped.  UPHClean is NOT an option since this is a 2008
    server.  Disabling Symantec Endpoint on the server does not resolve the problem, disabling BackupExec does not resolve the problem.  At present the only things that work are bouncing the server or manually unloading user hives on a daily basis, which
    is simply not acceptable.
    I've scoured forums looking for the answer and found lots of interesting possibilities but nothing that works; does anyone here have the answer?

    Hi,
    Steps for Windows Server 2003:
    1.   
    Click
    Start, click Run, type msconfig in the
    Open box, and then click OK.
    2.   
    Click the
    General tab, click Selective Startup.
    3.   
    Under
    Selective Startup, click to clear the following check boxes:
    Process SYSTEM.INI File
    Process WIN.INI File
    Load Startup Items
    4.   
    Click the
    Services tab, click to select the Hide All Microsoft Services check box, and then click
    Disable All.
    5.   
    Click
    OK, and then click Restart.
    This posting is provided "AS IS" with no warranties, and confers no rights. 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.

  • In place upgrade Windows 2003 to Windows 2008 R2 fails, how to troubleshoot?

    Hello,
    I'm upgrading in place Windows 2003 R2 to Windows 2008 R2 and upgrades rolls back on it's own with no indication for reasoning. 
    Below is setuterr.log which is full of errors but I can not figure out which specific one is curlpit. Any ideas?
    2014-07-21 15:44:29, Error Number of Enumerated Devices = 6[gle=0x00000103]
    2014-07-21 15:44:30, Error Failed to find driver file path. Error=00000002x[gle=0x80092004]
    2014-07-21 15:44:30, Error Failed to find driver file path. Error=00000002x[gle=0x80092004]
    2014-07-21 15:44:30, Error Failed to find driver file path. Error=00000002x[gle=0x80092004]
    2014-07-21 15:44:30, Error Failed to find driver file path. Error=ffffffffx[gle=0x00000003]
    2014-07-21 15:44:30, Error Failed to find driver file path. Error=ffffffffx[gle=0x00000003]
    2014-07-21 15:44:30, Error Failed to find driver file path. Error=ffffffffx[gle=0x00000003]
    2014-07-21 15:44:30, Error Failed to find driver file path. Error=00000002x[gle=0x00000003]
    2014-07-21 15:44:30, Error Failed to find driver file path. Error=ffffffffx[gle=0x00000003]
    2014-07-21 15:44:30, Error Failed to find driver file path. Error=ffffffffx[gle=0x00000003]
    2014-07-21 15:44:30, Error Failed to find driver file path. Error=00000002x[gle=0x80092004]
    2014-07-21 15:44:30, Error Failed to find driver file path. Error=ffffffffx[gle=0x00000003]
    2014-07-21 15:44:30, Error Failed to find driver file path. Error=ffffffffx[gle=0x00000003]
    2014-07-21 15:47:51, Error [0x08081e] MIG Failed to load manifest at C:\$WINDOWS.~BT\Sources\dlmanifests\security-ntlm-lmc.man: XmlException: hResult = 0x0, Line = 18, Position = 31; . void __cdecl UnBCL::XmlDocument::Load(class UnBCL::String *)
    2014-07-21 15:47:53, Error [0x08085e] MIG UpgHost: CMigPluginSurrogate::LoadDllServer: Invalid argument: BinaryPath=[C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll] does not exist.[gle=0x00000003]
    2014-07-21 15:47:53, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll, {8179C2CA-2B60-49D6-BC81-D796378B024E}, 0) failed, hr=[0x80070003].
    2014-07-21 15:47:53, Error [0x08085e] MIG UpgHost: CMigPluginSurrogate::LoadDllServer: Invalid argument: BinaryPath=[C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll] does not exist.[gle=0x00000003]
    2014-07-21 15:47:53, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll, {8179C2CA-2B60-49D6-BC81-D796378B024E}, 0) failed, hr=[0x80070003].
    2014-07-21 15:47:53, Error [0x08085e] MIG UpgHost: CMigPluginSurrogate::LoadDllServer: Invalid argument: BinaryPath=[C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll] does not exist.[gle=0x00000003]
    2014-07-21 15:47:53, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll, {8179C2CA-2B60-49D6-BC81-D796378B024E}, 0) failed, hr=[0x80070003].
    2014-07-21 15:47:55, Error [0x08085e] MIG UpgHost: CMigPluginSurrogate::LoadDllServer: Invalid argument: BinaryPath=[C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll] does not exist.[gle=0x00000003]
    2014-07-21 15:47:55, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll, {8179C2CA-2B60-49D6-BC81-D796378B024E}, 0) failed, hr=[0x80070003].
    2014-07-21 15:47:55, Error [0x08085e] MIG UpgHost: CMigPluginSurrogate::LoadDllServer: Invalid argument: BinaryPath=[C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll] does not exist.[gle=0x00000003]
    2014-07-21 15:47:55, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll, {8179C2CA-2B60-49D6-BC81-D796378B024E}, 0) failed, hr=[0x80070003].
    2014-07-21 15:48:44, Error [0x08085e] MIG UpgHost: CMigPluginSurrogate::LoadDllServer: Invalid argument: BinaryPath=[C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll] does not exist.[gle=0x00000003]
    2014-07-21 15:48:44, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll, {8179C2CA-2B60-49D6-BC81-D796378B024E}, 0) failed, hr=[0x80070003].
    2014-07-21 15:48:44, Error [0x08085e] MIG UpgHost: CMigPluginSurrogate::LoadDllServer: Invalid argument: BinaryPath=[C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll] does not exist.[gle=0x00000003]
    2014-07-21 15:48:44, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll, {8179C2CA-2B60-49D6-BC81-D796378B024E}, 0) failed, hr=[0x80070003].
    2014-07-21 15:48:44, Error [0x08085e] MIG UpgHost: CMigPluginSurrogate::LoadDllServer: Invalid argument: BinaryPath=[C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll] does not exist.[gle=0x00000003]
    2014-07-21 15:48:44, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll, {8179C2CA-2B60-49D6-BC81-D796378B024E}, 0) failed, hr=[0x80070003].
    2014-07-21 15:48:44, Error [0x08085e] MIG UpgHost: CMigPluginSurrogate::LoadDllServer: Invalid argument: BinaryPath=[C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll] does not exist.[gle=0x00000003]
    2014-07-21 15:48:44, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll, {8179C2CA-2B60-49D6-BC81-D796378B024E}, 0) failed, hr=[0x80070003].
    2014-07-21 15:48:49, Error [0x08085e] MIG UpgHost: CMigPluginSurrogate::LoadDllServer: Invalid argument: BinaryPath=[C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll] does not exist.[gle=0x00000003]
    2014-07-21 15:48:49, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll, {8179C2CA-2B60-49D6-BC81-D796378B024E}, 0) failed, hr=[0x80070003].
    2014-07-21 15:48:49, Error [0x08085e] MIG UpgHost: CMigPluginSurrogate::LoadDllServer: Invalid argument: BinaryPath=[C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll] does not exist.[gle=0x00000003]
    2014-07-21 15:48:49, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll, {8179C2CA-2B60-49D6-BC81-D796378B024E}, 0) failed, hr=[0x80070003].
    2014-07-21 15:48:49, Error [0x08085e] MIG UpgHost: CMigPluginSurrogate::LoadDllServer: Invalid argument: BinaryPath=[C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll] does not exist.[gle=0x00000003]
    2014-07-21 15:48:49, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll, {8179C2CA-2B60-49D6-BC81-D796378B024E}, 0) failed, hr=[0x80070003].
    2014-07-21 15:48:49, Error [0x08085e] MIG UpgHost: CMigPluginSurrogate::LoadDllServer: Invalid argument: BinaryPath=[C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll] does not exist.[gle=0x00000003]
    2014-07-21 15:48:49, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll, {8179C2CA-2B60-49D6-BC81-D796378B024E}, 0) failed, hr=[0x80070003].
    2014-07-21 15:48:49, Error [0x08085e] MIG UpgHost: CMigPluginSurrogate::LoadDllServer: Invalid argument: BinaryPath=[C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll] does not exist.[gle=0x00000003]
    2014-07-21 15:48:49, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll, {8179C2CA-2B60-49D6-BC81-D796378B024E}, 0) failed, hr=[0x80070003].
    2014-07-21 15:48:49, Error [0x08085e] MIG UpgHost: CMigPluginSurrogate::LoadDllServer: Invalid argument: BinaryPath=[C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll] does not exist.[gle=0x00000003]
    2014-07-21 15:48:49, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer\MediaPlayer-DLMigPlugin.dll, {8179C2CA-2B60-49D6-BC81-D796378B024E}, 0) failed, hr=[0x80070003].
    2014-07-21 15:48:53, Error [0x08071d] MIG Mig::CDownlevelOCStore::AddOCsFromManifests: Failed to load C:\$WINDOWS.~BT\Sources\dlmanifests\security-ntlm-lmc.man.: XmlException: hResult = 0x0, Line = 18, Position = 31; . void __cdecl UnBCL::XmlDocument::Load(class UnBCL::String *)
    2014-07-21 15:48:56, Error [0x08081e] MIG Failed to load manifest at C:\$WINDOWS.~BT\Sources\dlmanifests\security-ntlm-lmc.man: XmlException: hResult = 0x0, Line = 18, Position = 31; . void __cdecl UnBCL::XmlDocument::Load(class UnBCL::String *)
    2014-07-21 15:48:56, Error [0x08085f] MIG UpgHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, LOAD_WITH_ALTERED_SEARCH_PATH) failed gle=0x7e.[gle=0x0000007e]
    2014-07-21 15:48:56, Error [0x080863] MIG UpgHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007e.[gle=0x0000007e]
    2014-07-21 15:48:56, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, {743B7FD2-8427-4B7D-B330-A95618DE2BFC}, 0) failed, hr=[0x8007007e].
    2014-07-21 15:48:56, Error [0x08085f] MIG UpgHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, LOAD_WITH_ALTERED_SEARCH_PATH) failed gle=0x7e.[gle=0x0000007e]
    2014-07-21 15:48:56, Error [0x080863] MIG UpgHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007e.[gle=0x0000007e]
    2014-07-21 15:48:56, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, {743B7FD2-8427-4B7D-B330-A95618DE2BFC}, 0) failed, hr=[0x8007007e].
    2014-07-21 15:48:56, Error [0x08085f] MIG UpgHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, LOAD_WITH_ALTERED_SEARCH_PATH) failed gle=0x7e.[gle=0x0000007e]
    2014-07-21 15:48:56, Error [0x080863] MIG UpgHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007e.[gle=0x0000007e]
    2014-07-21 15:48:56, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, {743B7FD2-8427-4B7D-B330-A95618DE2BFC}, 0) failed, hr=[0x8007007e].
    2014-07-21 15:50:14, Error [0x0808fe] MIG Plugin {e0cbf06c-cd8b-4647-bb8a-263b43f0f974}: BthMig: Failed to migrate bthport keys, bailing out
    2014-07-21 15:50:14, Error [0x08085f] MIG UpgHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, LOAD_WITH_ALTERED_SEARCH_PATH) failed gle=0x7e.[gle=0x0000007e]
    2014-07-21 15:50:14, Error [0x080863] MIG UpgHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007e.[gle=0x0000007e]
    2014-07-21 15:50:14, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, {743B7FD2-8427-4B7D-B330-A95618DE2BFC}, 0) failed, hr=[0x8007007e].
    2014-07-21 15:50:14, Error [0x08085f] MIG UpgHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, LOAD_WITH_ALTERED_SEARCH_PATH) failed gle=0x7e.[gle=0x0000007e]
    2014-07-21 15:50:14, Error [0x080863] MIG UpgHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007e.[gle=0x0000007e]
    2014-07-21 15:50:14, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, {743B7FD2-8427-4B7D-B330-A95618DE2BFC}, 0) failed, hr=[0x8007007e].
    2014-07-21 15:50:17, Error [0x08085f] MIG UpgHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, LOAD_WITH_ALTERED_SEARCH_PATH) failed gle=0x7e.[gle=0x0000007e]
    2014-07-21 15:50:17, Error [0x080863] MIG UpgHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007e.[gle=0x0000007e]
    2014-07-21 15:50:17, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, {743B7FD2-8427-4B7D-B330-A95618DE2BFC}, 0) failed, hr=[0x8007007e].
    2014-07-21 15:50:17, Error [0x08085f] MIG UpgHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, LOAD_WITH_ALTERED_SEARCH_PATH) failed gle=0x7e.[gle=0x0000007e]
    2014-07-21 15:50:17, Error [0x080863] MIG UpgHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007e.[gle=0x0000007e]
    2014-07-21 15:50:17, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, {743B7FD2-8427-4B7D-B330-A95618DE2BFC}, 0) failed, hr=[0x8007007e].
    2014-07-21 15:50:17, Error [0x08085f] MIG UpgHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, LOAD_WITH_ALTERED_SEARCH_PATH) failed gle=0x7e.[gle=0x0000007e]
    2014-07-21 15:50:17, Error [0x080863] MIG UpgHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007e.[gle=0x0000007e]
    2014-07-21 15:50:17, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, {743B7FD2-8427-4B7D-B330-A95618DE2BFC}, 0) failed, hr=[0x8007007e].
    2014-07-21 15:50:17, Error [0x08085f] MIG UpgHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, LOAD_WITH_ALTERED_SEARCH_PATH) failed gle=0x7e.[gle=0x0000007e]
    2014-07-21 15:50:17, Error [0x080863] MIG UpgHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007e.[gle=0x0000007e]
    2014-07-21 15:50:17, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, {743B7FD2-8427-4B7D-B330-A95618DE2BFC}, 0) failed, hr=[0x8007007e].
    2014-07-21 15:53:14, Error [0x08085f] MIG UpgHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, LOAD_WITH_ALTERED_SEARCH_PATH) failed gle=0x7e.[gle=0x0000007e]
    2014-07-21 15:53:14, Error [0x080863] MIG UpgHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007e.[gle=0x0000007e]
    2014-07-21 15:53:14, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, {743B7FD2-8427-4B7D-B330-A95618DE2BFC}, 0) failed, hr=[0x8007007e].
    2014-07-21 15:53:14, Error [0x08085f] MIG UpgHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, LOAD_WITH_ALTERED_SEARCH_PATH) failed gle=0x7e.[gle=0x0000007e]
    2014-07-21 15:53:14, Error [0x080863] MIG UpgHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007e.[gle=0x0000007e]
    2014-07-21 15:53:14, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, {743B7FD2-8427-4B7D-B330-A95618DE2BFC}, 0) failed, hr=[0x8007007e].
    2014-07-21 15:53:14, Error [0x08085f] MIG UpgHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, LOAD_WITH_ALTERED_SEARCH_PATH) failed gle=0x7e.[gle=0x0000007e]
    2014-07-21 15:53:14, Error [0x080863] MIG UpgHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007e.[gle=0x0000007e]
    2014-07-21 15:53:14, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, {743B7FD2-8427-4B7D-B330-A95618DE2BFC}, 0) failed, hr=[0x8007007e].
    2014-07-21 15:53:14, Error [0x08085f] MIG UpgHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, LOAD_WITH_ALTERED_SEARCH_PATH) failed gle=0x7e.[gle=0x0000007e]
    2014-07-21 15:53:14, Error [0x080863] MIG UpgHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007e.[gle=0x0000007e]
    2014-07-21 15:53:14, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, {743B7FD2-8427-4B7D-B330-A95618DE2BFC}, 0) failed, hr=[0x8007007e].
    2014-07-21 15:53:14, Error [0x08085f] MIG UpgHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, LOAD_WITH_ALTERED_SEARCH_PATH) failed gle=0x7e.[gle=0x0000007e]
    2014-07-21 15:53:14, Error [0x080863] MIG UpgHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007e.[gle=0x0000007e]
    2014-07-21 15:53:14, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, {743B7FD2-8427-4B7D-B330-A95618DE2BFC}, 0) failed, hr=[0x8007007e].
    2014-07-21 15:53:14, Error [0x08085f] MIG UpgHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, LOAD_WITH_ALTERED_SEARCH_PATH) failed gle=0x7e.[gle=0x0000007e]
    2014-07-21 15:53:14, Error [0x080863] MIG UpgHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007e.[gle=0x0000007e]
    2014-07-21 15:53:14, Error [0x0808ff] MIG COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-MediaPlayer-DRM-DL\drmmgrtn.dll, {743B7FD2-8427-4B7D-B330-A95618DE2BFC}, 0) failed, hr=[0x8007007e].
    2014-07-21 15:57:06, Error [0x0803db] MIG IndirectKeyMapper: Cannot find the currently loaded location for hive X:\Documents and Settings\sankap\NTUSER.DAT; giving up (2).[gle=0x00000003]

    Hi,
    Most probably these kind of errors pop up if the drivers are not compatible. Do you find any .dmp files under folder C:\$WINDOWS.~BT\Sources ? If so
    open it with debugger and check for the affected .sys file name.
    Check the DVD media, or try a different media.
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/691bb048-f63f-41fd-a152-e502671fb27e/upgrade-to-from-windows-server-2003-r2-x64-to-windows-server-2008-x64-failed-4-times-so-far?forum=winserverMigration
    Regards,
    Rafic
    If you found this post helpful, please give it a "Helpful" vote.
    If it answered your question, remember to mark it as an "Answer".
    This posting is provided "AS IS" with no warranties and confers no rights! Always test ANY suggestion in a test environment before implementing!

  • Oracle EBS R12 installation problem in Windows 2003

    Hi,
    I am trying to install Oracle EBS R12 on Windows 2003 R2. I have installed cygwin along with required packages and also Visual studio 2005 as specified in the prerequisites of installation document.
    All the validations are successful before installation but I am facing error during installation in Step3 at about 53 percent. When i checked the log file, I found that some of the files required for installation are not found in my staging area. Now I want to run MD5sum on the Staged Files.
    I had downloaded md5sum_windows.txt and also run this command :
    md5sum --check md5sum_Windows.txt > md5sum_result.txt
    In md5sum_result.txt, I am getting error for all files. Error message is as :
    oraAppDB\Disk1\data\driver\Disk1.drv
    : FAILED open or read
    This is repeating for all files. But i can see that the files are present in My Staging area. Do i need to set some permission for this. Please help. Desperately want to install EBS as part of perparation for my planned certification.
    Edited by: 855292 on Nov 26, 2011 1:58 AM
    A simple detailed Step by Step Installation Document or any good reference for the same would by really appreciated.
    Edited by: 855292 on Nov 26, 2011 2:00 AM

    I have downloaded all the 33 files in oracle edelivery site. I have seen a post of yours regarding Oracle R12 installation on Windows XP. It mentions only some 25 files. Please do not rely on the that thread as it was for 12.0.x installation.
    For R12 (12.1.1) you need to download the following files:
    From: Oracle E-Business Suite Release 12.1.1 Rapid Install Start Here (Part 1 of 4)
    To: Oracle E-Business Suite Release 12.1.1 for Microsoft Windows (32-bit) Rapid Install APPL_TOP - Disk 2 (Part 2 of 2)
    Is it possible that contents of the zip file are lost during download because my stage area is about 39 GB . and also I have verfied all the files in edelivery site is downloaded too.
    Also the error i mentioned in my last post, I can see the file in the directory but still its showing read error. Is it due to corruption of data. That would mean that I will have to download all 40 GB again :-(It is easy to verify the contents of the stage area directory without running md5sum, so please do so and post the results here.
    Thanks,
    Hussein

  • Data Corrupted when using CREATE AS SELECT * FROM over DB LINK

    Hi ,
    I wonder if anyone has suffered a simillar issue as this:
    I have a DB Link Between a 10gR1 (Base install not patched) database on Windows 2003, and a 10gR2 (with latest Patch Database ) on Sun Solaris. The 10.1 DB is the SOURCE 10.2 is TARGET
    When using a statement like the following on the Target :
    CREATE TABLE a AS SELECT * FROM TABLE a@SOURCE
    The statement completes, however for some (not all) tables, the data content is seriously corrupted, I noticed this when trying to apply a UKey on the newly created table in TARGET. The data was completely messed up for around 600 out of 450000 rows, I could not easily tell which rows were messed up as it was the columns that build the UKey that were affected :-(
    The same happens if I precreate the table and use INSERT /*+APPEND*/ INTO AS SELECT.... etc
    I realise that using an unpatched 10.1 is not nessasarily advisable, however currently it is difficult for us to patch or upgrade the DB...
    If anyone has seen this before an/or has any ideas what might be the cause , I would appreciate any help I can get.
    Cheers
    JAmes

    The Problem Manifest itsself in that some fileds are created with incorrect Values, specificaly in easy to identify cases NULL where the original values where not NULL.
    These field do not contain special chars like ä or ß , so it does not seem to indicate a charset issue.
    JAmes

  • Windows 2003 File Share 4 node Cluster: Does Cluster Resources need to be brought offline prior removing / unmapping any LUN's from SAN end?

    Hello All,
    Recently, on a 4 node Windows 2003 File Share Cluster, we encountered a problem where when trying to remove few shares (that were no longer in use) directly from SAN end crashed the entire Cluster (i.e., other shares also lost their SAN connectivity). I
    suppose the Cluster resources need to be brought offline prior removing it from SAN but I've been advised that these shares were not the root and instead a 'mount point' created within the share; and hence there is no need of bringing down any Cluster resources
    offline.
    Please can someone comment on the above and provide me detailed steps as to how we go about reclaiming SAN space from specific shares on a W2003 Cluster?
    p.s., let me know if you need any additional information.
    Thanks in advance.

    Hi Alex,
    The problem started when SAN Support reclaimed few storage LUNs by unmapping them from our clustered file servers.  When they reclaimed the unused LUNs, other SAN drives which were there also disappeared causing the unavailability of file shares.
    Internet access is not enabled on these servers. Servers in question are running 64-bit Windows Server 2003 Sp2. This is a four node file share cluster. When the unsued LUN's were pulled, the entire Cluster lost its SAN connectivity. Windows cluster service
    was not starting on any of  the cluster nodes. To resolve the problem all the four cluster nodes were rebooted after which cluster service started on all the cluster nodes and resources came online.
    Some of the events at the time of problem occurrence were,
    Event ID     : 57                                                      
    Raw Event ID : 57                                                      
    Record Nr.   : 25424072                                                
    Category     : None                                                    
    Source       : Ftdisk                                                  
    Type         : Warning                                                 
    Generated    : 19.07.2014 10:49:46                                     
    Written      : 19.07.2014 10:49:46                                     
    Machine      : ********                                             
    Message      : The system failed to flush data to the transaction log.   
    Corruption may occur.                                                  
    Event ID     : 1209   
    Raw Event ID : 1209                                                    
    Record Nr.   : 25424002                                                
    Category     : None                                                    
    Source       : ClusDisk                                                
    Type         : Error                                                   
    Generated    : 19.07.2014 10:49:10                                     
    Written      : 19.07.2014 10:49:10                                     
    Machine      : ***********                                             
    Message      : Cluster service is requesting a bus reset for device      
    \Device\ClusDisk0.                                                     
    Event ID     : 15     
    Raw Event ID : 15                                                      
    Record Nr.   : 25412958                                                
    Category     : None                                                    
    Source       : Disk                                                    
    Type         : Error                                                   
    Generated    : 11.07.2014 10:54:53                                     
    Written      : 11.07.2014 10:54:53                                     
    Machine      : *************                                            
    Message      : The device, \Device\Harddisk46\DR48, is not ready for access yet.                                                            
    Let me know if you need any additional info, many thanks.

  • Windows 2003 server?

    Sorry for the silly question.. does iTunes work under windows 2003 server? I installed it and I had no problems or error messages, but when I try to make the program run nothing happens. The cursor stays on wait for 10 seconds then nothing. Even putting a CD in does not produce effects of any sort. Strange thing. Seems the hardware is fully compatible and the itunes software is up to date.
    Many thanks to anybody willing to give me a clue.
    FreeANT
      Other OS  

    thankyou very much for replying
    there are some problems associated with a conflict
    between Windows update KB908531 and QuickTime
    on Server 2003 ... but you're not currently reporting
    the typical symptoms of that issue.
    let me just do some preliminary explicit
    doublechecking before we proceed.
    are you getting an error message? if so, what
    does it say? include error message numbers if you're
    getting any.
    or are you getting no error messages
    whatsoever when you try to launch itunes?
    no error messages, nor in installation, neither in launching
    if you're getting no error messages
    whatsoever, do you just see the wee hourglass for
    a few seconds, and then nothing? if so, do you also
    have Norton Internet Security 2005 installed
    on that PC?
    I see the hourglass for some seconds (5-10, depending on what the machine is doing) and then the cursor gets back to normal.
    Apparently no NIS2005 on it. If it is, doesnt seem running. If you can tell me the name of the executable I can check again but doesnt seem even installed actually. Checked both Norton and Symantec things.
    or are you seeing a brief "flash" of the itunes
    license screen (and then nothing)? if so, do you also
    see similar behavior when you try to launch your
    QuickTime? (check on whether or not you get a
    flash of the screen with QT just in case, even if you
    don't get the flash with itunes.)
    not with itunes, unless it's so fast my eye cant catch it
    OMG. OK. I swear that no attempts have been made and no reboots in the middle but TAH DAH it works. WHY! The only thing I did in the middle is opening QT (checking for your previous question) but about the rest nothing changed. Maybe this is the key: install itunes, if it doesnt work, open QT (not the one you had but the new one) then itunes will work itself. bah. I hate this you are not always aware of what's going on or what happened. maybe this is why Im a linux user since years.. but this one is gf's computer so Im forced to get back to windows somehow she would kill me if I was to install linux from scratch on her computer
    There's just a problem of corrupted file in \ipod_control\itunes\temp and it suggests to use the old-fashioned chkdsk utility.
    OK trying to work it out, will let you know later.
    Thank you again and sorry for the thing, but I would have been happy to avoid disturbing if it was working at first..
    ANT

Maybe you are looking for