Operating System - HP-UX
1821984 Members
3292 Online
109638 Solutions
New Discussion юеВ

what is ment by .dmp file?

 
SOLVED
Go to solution
fizan
Super Advisor

what is ment by .dmp file?

rw-rw-r-- 1 anzpradm dba 3504390144 Jul 8 21:32 /tmp/dump/Live_20090708_21.dmp


In this what is the .dmp file in this how to read that file?
4 REPLIES 4
Patrick Wallek
Honored Contributor
Solution

Re: what is ment by .dmp file?

That's a very good question.

In the context given, it's almost impossible to answer.

Judging from the group of 'dba' on the file, my **GUESS** is that it is a database dump file potentially generated by the Oracle 'exp' command.

I think the better person to ask would be the user anzpradm since that is the user that generated the file.

If it is an Oracle 'exp' (export), it can only be "read" by the Oracle 'imp' (import) command.

You could try running the command:

# file /tmp/dump/Live_20090708_21.dmp

and see if it tells you anything useful.
Torsten.
Acclaimed Contributor

Re: what is ment by .dmp file?

Because of the directory name it must be a dump of something. Extensions are meaningless in unix, so the use of "file" (see above) may be helpful.

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
James R. Ferguson
Acclaimed Contributor

Re: what is ment by .dmp file?

Hi:

The 'file' command reads the first 512 bytes of a file in order to "guess" its classification (e.g. Ascii text, ELF-32 object, etc).

You might also try 'strings' to obtain some idea of the content.

Regards!

...JRF...
fizan
Super Advisor

Re: what is ment by .dmp file?

Thanks got the answer..