Whats creating memorydump.dmp?

i have a file, in the root, of my Server 2008 (not R2) and its huge, and i cant delete it!
c:\memorydump.dmp ----- 2.5GB
Whats creating it? and Why cant i delete it?
i've fiddled with Startup and Recover - dump file options, but that makes no difference. (i've left it on Small(64k) and rebooted after each change i tried).
i've tried using ProcessExplorer, but that just tells me its a file, References:3 Handles:1.  I even tried CloseHandle to kill off this file, and it does disappear - until next reboot.
Any tips please...
UPDATE one year later, still no answer...
This file "memorydump.dmp" is created on restart.
It cannot be deleted - because it is "open in another program".
This happens in normal- and safe- modes.
It cannot be unlocked - using various 3rd party software.
It cannot be looked at - using BlueScreenView or similar, as its 'in use'
The minidump settings and location are default "%systemroot%/minidump"
I see nothing in SystemProperties, nor EnviromentVariables, that refers to this
location or filename.
It is NOT created during BSOD, it is created EVERY boot.
I#ve never come across this before, and i'd like to know whats causing it, and how to remove it.

Since you have mentioned the below things 
Whats creating it?
Memory dump file records the set
of useful information that may help to identify why your computer has stopped unexpectedly. ( For an example your computer might suddenly reboot,shutdown without any prior notice or displays a blue screen. Before shutting windows writes the log in .dmp which
will later help to analyze the root cause of the problem.)
Please create a boot logging with using process monitor this will give you clear hints while the system is booting
http://www.msigeek.com/6231/how-to-enable-system-boot-time-logging-using-process-monitor-tool
 and Why cant i delete it?
Technically speaking you should not get any issues while deleting. How ever you the process monitor to find the root cause of the problem. or restart your computer in the safe mode and delete it.
Again Please run the Process Monitor and see whats blocking it to delete
http://www.arabitpro.com

Similar Messages

  • Create a dmp file

    I have a case open with Microsoft on a 2012 DC.  They want a dmp file.  I made a snapshot to include the VM memory.  I ran the vmss2core tool but can not get the dmp file to create. I also tried the -W8 option with the same results.  I am able to create the vmss.core file using the -M option
    C:\2012 issue>vmss2core_win.exe -W VM12S-DCTEST-Snapshot153.vmsn
    vmss2core version 3156346 Copyright (C) 1998-2013 VMware, Inc. All rights reserved.
    region[0]: start=0 end=c0000000.
    region[1]: start=100000000 end=140000000.
    Cannot recognize Windows VM.
    Error parsing Windows data.
    Cannot create memory.dmp
    Finished writing core.
    C:\2012 issue>

    I don't think there is an API for this. If your concern is export import only, you can simply spawn a process from Java that runs exp or imp. (Using the Runtime class: http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Runtime.html)
    Thomas

  • In the Extended Classic scenario, what creates the PO on the SRM side?

    Hi Experts,
    This sounds like a simple question, however, I've been unable to find the answer.
    What I am looking for is the process (report, workflow or function module etc etc) that actually creates the PO on the SRM side once the shopping cart has been approved (before it is replicated to ECC).
    The reason for this is, after a support stack upgrade, the creation of the PO seems to have slowed down once the shopping cart has been created.  I'm trying to track down where the PO gets created and what triggers that to happen, in order to work out why it isn't as quick as it was prior to the upgrade, but can't piece together the full end to end process.
    I can see the "Workflow Without Approval Shopping Cart" workflow that obviously Releases the shopping cart and sets the status to Approved...  I can then see the equivalent workflow for the PO (Workflow Without Approval for PurchOrder), but I can't work out the bit inbetween -
    - How does the PO actually gets created in SRM and what triggers that to happen?
    Any help will be gratefully received - thanks in advance.

    its an event related to the shopping cart business object- BUS2121.
    your approval workflow should be of status set released, which will trigger the methor BBP_REQREQ_TRANSFER, finished approval is the event which will be triggered by the workflow, based on this event, system will trigger reqreq_transfer.

  • What creates this test.txt file that keeps appearing in my Home Folder?

    Seems to have first appeared on 12/10, and was updated each day since, until I deleted it yesterday and a new document was created this morning.
    It's just a simple TextEdit document, with a 0 as the only character of text.
    Anyone know about this?
    Thanks.

    never seen this but it's pretty clear that one of your programs creates it as a temp file for whatever reason and doesn't clean up after itself. I'm not sure if it's worth trying to figure out which one is doing it. you can try if you like. did you install any apps recently? delete the file and next time it's created look at the creation time and try to determine what was running at the time. if the file is created on login you can try removing your login items one at a time and see if that affects the file creation.

  • Whats the purpose of materialized view log?whats create view log with rowi

    Why we create materialized view log ?????whats the use???
    what do you mean by "create view log with rowid"
    Regards
    Gagan

    A materialized view log stores the change vectors made to a particular table in order to allow materialized views that reference that table to be incrementally refreshed rather than re-materializing the data every time. It's a much more efficient way to refresh a materialized view.
    WITH ROWID specifies that the materialized view log should store the ROWID of a row with the change vector, which is one way of identifying which row(s) in the materialized view should be updated by which change vector. You can also use the primary key value for this.
    Justin

  • What create docking container on a subscreen?

    Hi Experts,
    How to create docking container on a subscreen?
    What parametr "parent" in constructor CL_GUI_DOCKING_CONTAINER?
    Thanks
    Mike Fedorov

    Here's an example...Kindly steal from Rich Heilman -;)
    report zrich_0001 .
    data:
          dockingleft  type ref to cl_gui_docking_container,
          text_editor    type ref to cl_gui_textedit,
          repid type syrepid.
    data: itext type table of tline-tdline,
          xtext type tline-tdline.
    parameters: p_check.
    at selection-screen output.
      repid = sy-repid.
      create object dockingleft
                  exporting repid     = repid
                            dynnr     = sy-dynnr
                            side      = dockingleft->dock_at_left
                            extension = 1070.
      create object text_editor
                  exporting
                       parent     = dockingleft.
      xtext = 'http:\\www.sap.com'.
      append xtext to itext.
      call method text_editor->set_text_as_r3table
         exporting
               table              = itext
         exceptions
               others             = 1.
    start-of-selection.
      call method text_editor->get_text_as_r3table
         importing
               table              = itext
         exceptions
               others             = 1.
      loop at itext into xtext.
        write:/ xtext.
      endloop.
    Greetings,
    Blag.

  • What create a QUEUE in IBM MQ and bind in OC4J without restart OC4J ??

    My problem is, When create a new Queue in IBM MQ Series, how to lookup the same in my J2EE application with container OC4J running ???
    I create a Queue in MQ Series and is necessary lookup the same by application deployed in OAS 10.1.3 without restart the OC4J container.
    this is possible ??
    I use the JCA 1.5 to connect to MQ Series.

    Hi,
    There is some demo for setup IBM MQ in oc4j, you may try that.
    OTN:http://www.oracle.com/technology/tech/java/oc4j/1013/how_to/index.html
    In order to apply the new MQ in oc4j, you need to restart the oc4j.
    Rocky

  • Create a .dmp file using java

    Hi to everyone
    I have a problem: I must export and import data from a DB, using java ...is there someone who can help ,e in finding a solution to my problem...
    I'd like to read and write from a .dmp file, the same way we do while performing exp and imp utility.
    Is there a way to do this in a java program?
    Many many thanks in advance
    Melian

    I don't think there is an API for this. If your concern is export import only, you can simply spawn a process from Java that runs exp or imp. (Using the Runtime class: http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Runtime.html)
    Thomas

  • What creates a windows error 126 when installing/running iTunes and how do you fix it?

    My install and reinstall keep failing with the above message.  It also states MSVCR80.dll is missing.  How do I resolve this issue?  thank you.

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • No DMP file created after Export

    Hi All
    I am trying to export MyDB schema on OMS as a dmp file. After completing the Export Wizard, the message says "The job has been successfully submitted. You can view the status of the job in the Active Jobs pane of the Enterprise Console Manager". I am using Oracle 9i. I don't get any ORA errors or what so ever when I run the Export Wizard.
    Then when I look in the c:\oracle\oracledata\MyDB there is no DMP file there.
    Am I missing any steps here in order to create the dmp file besides running the Export Wizard.
    Any help deeply appreciated. Thank you in advance.
    Sincerely Solongo
    Message was edited by:
    Solongo

    Dear All
    I have sorted the problem.
    I had assign "Logon as Batch Job" policy on Local Security Policy to a Windows User "Solongo" that I am currently logged in as, and logon to OMS and set the Preffered Credential as "Solongo" and ran the Export Wizard. Guess what, now I have export.dmp file residing on c:\oracle\oracledata\MyDB.
    Thank you all

  • I have files that may have been created in various versions of Illustrator. We need to be able to open them, but all we have is CS6 suite. I have called and been told that "technicians at adobe" could perform a paid service to find out what the files were

    I have files that may have been created in various versions of Illustrator. We need to be able to open them, but all we have is CS6 suite. I have called and been told that "technicians at adobe" could perform a paid service to find out what the files were created in and get them to be useable in InDesign 6, but I'd need an email address that was registered to our software to give the help desk person. After finding the correct email address, different adobe help number people told me to come here to ask as there is no phone support. Can anyone get me to an adobe technician that can provide a price quote for finding out what created these files and for getting them converted? Thanks.

    Sorry, I understood you to say you had the whole CS6 suite, which includes Illustrator.
    As far as finding out what the files are, sometimes you can look at them in a text editor to figure this out. See below; the, Creator Tool line. Not every software package makes it this easy, though.

  • Create a test DB from  the export DMP file

    Hi Gurus,
    I was able to create the DMP file by export and transfer it to the test machine. It is a Windows OS.
    Now in this machine I recently installed Oracle 11g. And I have this export *.DMP file in a dir.
    I need to import the DMP file which into this newly created database to give a test database in 11g.
    I also created the user for which the export is done.
    I need to know how to import the DMP file. I am new to this import-export business.
    Thanks
    Amitava.

    Hi,
    Use IMPDP:
    impdp username/password@dbname full=Y directory=<location of the dmp file> dumpfile=<dumpfile name> logfile=<logfile name to be created>
    Check the below link for more information:
    ORACLE-BASE - Oracle Data Pump (expdp and impdp) in Oracle Database 10g

  • *.dmp file in ../cluster/server0 created and growing automatically

    Hello,
    we have setu up NW 2004s on Linux. On two instances (J11 and J13) there is a file created in the directory .../cluster/server0 which is called something like that:
    core.20090814.055825.15954.0001.dmp
    This is growing really fast until the directory has 100 % and the instance crashes. We only see this happening on these two instances (we have other similar servers). Is there a setting on NW which creates these *.dmp files?
    Can I shut this file creation off?
    Regards,
    Kai

    > we have setu up NW 2004s on Linux. On two instances (J11 and J13) there is a file created in the directory .../cluster/server0 which is called something like that:
    > core.20090814.055825.15954.0001.dmp
    > This is growing really fast until the directory has 100 % and the instance crashes. We only see this happening on these two instances (we have other similar servers). Is there a setting on NW which creates these *.dmp files?
    > Can I shut this file creation off?
    That files is created because your instance is crashing, not vice versa.
    A core file is a snapshot of a process including its current memory content, so if you java/jlaunch process allocates at the moment it crashes  e. g. 2 GB then the file will be as large.
    You have to find out the root cause of the crash. So please check the logfiles (dev_server0, std_server0.out, dev_jcontrol etc.)
    Markus

  • Import Data from DMP file

    I export data and create a DMP file on daily basis
    I import data from this DMP to an other computer but some data import duplicate records.
    I want to aviod duplicate records
    what should I do

    You receive duplicate errors when some unique key in the record (probably but not necessarily the primary key) already exists with a value that duplicates a value already in the database. You have at least 3 options.
    1) Ignore the errors. You will get lots of errors and the duplicates will not be imported.
    2) Delete all records from the tables before you do the import. Old data will be lost, but you will get no errors.
    3) Use fromuser= and touser= to put the data into a different schema then use a merge to update the table data.
    By the way this is not the correct forum for this question.

  • Expdp file not created *sometimes*

    Working in 11.1.0.7 on RHEL 4.5 Linux, using a script to create a parameter file and run expdp (as system) to export a weekly partition of data for archiving.
    Works fine - mostly, so the script and syntax is all good. But quite regularly it will run without generating creating the export file or log, but without generating any errors - in fact it reports that the job 'successfully completed'. Run the job again and presto...works fine.
    Also, when the files are not created the export doesn't generate trace files, despite TRACE being set. Trace files are generated if the job creates the .dmp files, so the syntax is all OK. Doesn't bode well for raising a TAR with Oracle....
    In the alert log, there are DM00 and DW01 started messages associated with successful jobs, but not with unsuccessful jobs. It is like the job does everything except actually spawning the Oracle processes....
    And then, just sometimes, when I re-run the job, it will report that the file already exists, despite the OS reporting that it is not there.
    Has anyone else found anything similar to this?
    Gavin

    Gavin,
    THis is a strange one. I have never heard of this before. When the job runs, what do you see on the screen where the job is run? Do you run this from the command line prompt, or the api?
    Can you post your expdp command with the parameter file?
    Dean

Maybe you are looking for

  • Line item profitcenter not able to modifi in account assignment tab in ECC6

    Hi ALL, After upgardation to ECC6 in sales order va02 we are not able to change the profit center for line item in account assigement. i have comapred my old system and new system the program FV45PF0C_COBL_SEND_PBO_VBAP proftcenter modifiction code i

  • What happens if my serial number doesn't work?

    I'm having some serious problems with my copy of PSE 7. First, my install disc wasn't working so I had to download the installer. Now it's installed, but it's not accepting my serial number. It's a legit number and I used it before when I installed i

  • Parallel Communication

    Dear All,              Can we send data to more than two systems parallely without using BPM? Regards, Ashish

  • Restrict selection using wildcards

    hie guys I have a select statement where i need to restrict the selected items where values in a field are ZP%   SELECT * FROM marc INTO xmarc WHERE matnr IN material                                  and werks ne 'ZP%'.     IF sy-subrc = 0.       APP

  • Best way to retrieve previous FF 3.6.28 for my OS-X 10.4.11 Tiger

    I clicked on option to upgrade to FF 14, since prompt kept showing up, and it attempted to install, unsucessfully, and now I don't even have the old previous version. My old FF icon has a white "Do Not" symbol line through it and the statement "FF ap