- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how to convert from file extension XML to DMP file...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2010 06:41 AM
тАО08-03-2010 06:41 AM
how to convert from file extension XML to DMP file extension
I have a question to see if anyone can help me out here. I got external seagate drive, which contain xml file extension which i plug into window xp. I want convert to dmp file extension before i can move my dump file to HP machine. example: data1.dmp.xml
Anyone help from you guys i would appreciate.
Thanks All
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2010 06:55 AM
тАО08-03-2010 06:55 AM
Re: how to convert from file extension XML to DMP file extension
You could move the file to your HP server then rename it there:
# FILE=data1.dmp.xml
# mv ${NAME} ${NAME%%.xml}
...this drops the ending '.xml' suffix.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2010 06:59 AM
тАО08-03-2010 06:59 AM
Re: how to convert from file extension XML to DMP file extension
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2010 07:21 AM
тАО08-03-2010 07:21 AM
Re: how to convert from file extension XML to DMP file extension
i got an error message # FILE= MIGCDR_DB.dmp.XML
FILE=: Command not found.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2010 07:46 AM
тАО08-03-2010 07:46 AM
Re: how to convert from file extension XML to DMP file extension
> i got an error message # FILE= MIGCDR_DB.dmp.XML
No whitespace is allowed after or before the assignment operator ('=').
Beyond that, I meant to write (consistently):
# FILE=data1.dmp.xml
# mv ${FILE} ${FILE%%.xml}
I erroneously named the variable holding the filename "NAME" but then manipulated another variable named "FILE".
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2010 08:03 AM
тАО08-03-2010 08:03 AM
Re: how to convert from file extension XML to DMP file extension
what am i type wrong here
# FILE=MIGCDR_DB.dmp.XML
# mv ${MIGCDR_DB.dmp.XML} ${MIGCDR_DB.dmp%%.XML}
sh: ${MIGCDR_DB.dmp.XML}: The specified substitution is not valid for this comma
nd.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2010 08:05 AM
тАО08-03-2010 08:05 AM
Re: how to convert from file extension XML to DMP file extension
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!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2010 08:06 AM
тАО08-03-2010 08:06 AM
Re: how to convert from file extension XML to DMP file extension
mv ${FILE} ${FILE%%.xml}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2010 10:07 AM
тАО08-03-2010 10:07 AM
Re: how to convert from file extension XML to DMP file extension
oh what about the file has space between like:
sps-Com_db Createdata.dmp.xml
How do I handle this file ....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2010 10:12 AM
тАО08-03-2010 10:12 AM
Re: how to convert from file extension XML to DMP file extension
"sps-Com_db Createdata.dmp.xml"
But why not renaming in windows, then transfer?
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!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2010 10:38 AM
тАО08-03-2010 10:38 AM
Re: how to convert from file extension XML to DMP file extension
# ll -i
# 9 -rw-r--r-- 1 root sys 5392 Aug 3 11:02 MIGCDR_DB-Create database.txt.XML
# find . -inum 9 -exec mv {} MIGCDR_DB-Create_database.txt \;
So everything working out really well. I want to thanks everyone to help me here..
Thanks All,