Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

import from a zipped file 1

Status
Not open for further replies.

beechill4

Technical User
May 10, 2005
207
IE
Hi,

i have a zipped oracle export file which i cannot uncompress because i have very little space on the disk

the file is called Jun292005.exp.Z

how can i import from this? can i even do this without uncompressing it?

 
On *nix you can use pipes:
Code:
DMPFILE=Jun292005.exp.Z
IMPP=/tmp/imp.pipe
mknod $IMPP p
imp / file=$IMPP parfile=imp.par ... &
cat $DMPFILE|uncompress -c >$IMPP
[2thumbsup]
PS: Note the ampersand (&) at the end of the imp(port) statement.


----------------------------------------------------------------------------
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top