Topic: Backup & Recovery >> Export/Import using pipe
|
Disclaimer: The purpose of all dbapool forums including OCP and Other Oracle Certification forums is to help each other with specific issues but not to share dump and copyrighted exam content, materials or intellectual property.
You may review the entire Oracle Certification Program Candidate Agreement online Here.
|
|
|
|
| Title: Export/Import using pipe |
| uadmin |
Posted: Mar 11, 2003 09:41:00 PM |
Total Post: 6
Joined: Jan, 2003
|
Hi Guys,
Can you please send me steps for Export/Import using pipes on Unix?
Thanks,
Rob |
|
|
saurav |
| Posted: Mar 11, 2003 10:03:00 PM | |
|
Total Post: 13
Joined: Jan, 2003
|
If you are working on Oracle 8i then use the following. You dont need pipe.
Exp scott/tiger file=file1.dmp,file2.dmp……FILESIZE=10M
Use other parameters also as per your need. Oracle 8i has FILESIZE parameter that breaks the file into smaller pieces.
You can use pipe in prior versions.
To export to a compressed file:
$mknod pipename p
compress < pipename > newfilename.Z &
exp <username>/<password> file=pipename
rm -f pipename
To import from a compressed file:
$mknod pipename p
uncompress < newfilename.Z > pipename &
imp <username>/<password> file=pipename
rm -f pipename
|
|
|
|
|
| Time Zone: EDT |
Send this thread to your friend |
|
|
|
|
Forum Rules & Description
Who Can Read The Forum? Any registered user or guest
Who Can Post New Topics? Any registered user
Who Can Post Replies? Any registered user
|
| |
Get FREE Magazines
|
Top 10 Forum User
|
| Murtuja Khokhar | 857 |
| Mohammed Taj | 746 |
| positive fanatic | 483 |
| Jayanta Sur | 479 |
| Vigyan Kaushik | 387 |
| Vinoth Kumar | 379 |
| Gopu Gopi | 350 |
| Gitesh Trivedi | 322 |
| neeraj sharma | 258 |
| Ramesh Jois | 246 |
|
|