- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Oracle export over pipe (between 2 servers)
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
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
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
10-06-2005 08:25 PM
10-06-2005 08:25 PM
Oracle export over pipe (between 2 servers)
We want to export a Oracle database over a pipe between 2 servers. Oracle advise to two following procedure:
mknod /tmp/pipe on both machines (mknod file p)
chmod 777
start the process on the target server with
remsh sourceserver dd if=/tmp/pipe > /tmp/pipe &
Start the export on sourceserver with
exp xx/xx full=y volsize=0 FILE=/tmp/pipe
Start the import on targetserver with
imp xx/xx full=y file=/tmp/special_pipe volsize=0
This results in starting the export and import with error. But the import doesn't receive any data to proceed.
This worked on other non-hp machines before, but with rsh instead of remsh.
What's wrong? Any ideas.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2005 08:54 PM
10-06-2005 08:54 PM
Re: Oracle export over pipe (between 2 servers)
Made a stupid typing error:
The export and import starts WITHOUT error. But nothing happens on both processes.
Geert.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2005 09:07 PM
10-06-2005 09:07 PM
Re: Oracle export over pipe (between 2 servers)
Ever tried mkfifo instead of mknod ?
We are piping exports into zipped files taht way.
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2005 06:43 PM
10-11-2005 06:43 PM
Re: Oracle export over pipe (between 2 servers)
We received the solution. The correct order in setting up is (after making the pipes):
1. start the import
2. start the remsh
3. start the export
This works fine.
Geert.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2005 06:45 PM
10-11-2005 06:45 PM