- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Oracle EXP-00002 error on HPUX10.20
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
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
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
тАО06-09-2002 01:20 PM
тАО06-09-2002 01:20 PM
Oracle EXP-00002 error on HPUX10.20
I'm trying to do an Oracle 8.0.5 export, into a dumpfile created in a filesystem which support largefiles (newfs -o largefiles).
Somehow the export stoppes when the dumpfile size is 2.14xxx GB, which looks like a limitation on filesize.
Tried this a second time, but this gave me the same value for the dumpfilesize whe it stopped.
Looking in a subdir of the same filesystem showed me some oracle dbf files which are over 4 GB in size ???
Oracle itself gives the message
"systemerror 27 occured" when the export stops.
I tried to locate the messages file for HPUX , to find out the corresponding HPUX message,but couldn't find it yet.
Can anyone help me ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-09-2002 01:26 PM
тАО06-09-2002 01:26 PM
Re: Oracle EXP-00002 error on HPUX10.20
Peter.spanhaak@atosorigin.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-09-2002 06:33 PM
тАО06-09-2002 06:33 PM
Re: Oracle EXP-00002 error on HPUX10.20
Although 805 supports datafiles of sizes > 2 GB, but it does not support export dumps over 2GB.
You can compress your dump files during export.
mkfifo /tmp/exp_pipe
compress > /expdata/export.dmp.Z \ < /tmp/exp_pipe &
sleep 60
exp user/pass file=/tmp/exp_pipe full=y compress=n log=/tmp/export.log
hope this helps
AR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-10-2002 06:13 AM
тАО06-10-2002 06:13 AM
Re: Oracle EXP-00002 error on HPUX10.20
Export to several files
~~~~~~~~~~~~~~~~~~~~~~~
(Note: Not all platforms support the split "-b" option used here)
% mknod /tmp/exp_pipe p # Make the pipe
% cd /fs_with_25gig_freespace # Make sure disk has space
% split -b2047m < /tmp/exp_pipe & # Split input to 2Gb chunks
% exp user/passwd file=/tmp/exp_pipe full=y # Export to the pipe
This will split the export into several files called 'xaa', 'xab', 'xac'
all of size 2047Mb. These can be fed back into import thus:
% mknod /tmp/imp_pipe p # Make the pipe
% cd /fs_with_25gig_freespace
% cat xaa xab xac > /tmp/imp_pipe & # Put files into the pipe
% imp user/passwd file=/tmp/imp_pipe # And import
The 'man' page for split shows options to generate more meaningful file names.
WARNING: Some versions of 'split' are very poor performance wise.
Export >2GB
~~~~~~~~~~~
Use the split example above
OR
Export to a NAMED PIPE and use unix 'cat' or 'dd' to copy from this to
a large file. The 'cat' or 'dd' command must support 64 bit write and
read offsets. Use the reverse for import.
Oracle8i introduced a new parameter (FILESIZE) which allows one to spread
exported data over multiple files. Details can be found in [NOTE:108639.1]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-10-2002 10:59 AM
тАО06-10-2002 10:59 AM
Re: Oracle EXP-00002 error on HPUX10.20
In any case, When we swicthed from our Alphas to the HPs we have now, I had a problem with the dump files. Some type of situtaion. Mine turned out to be a problem with the ulimit setting. Sorry I don't remember exactly what it was or what I had to change. This might give you a starting point anyway.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-10-2002 05:01 PM
тАО06-10-2002 05:01 PM
Re: Oracle EXP-00002 error on HPUX10.20
This is a problem only on UX systems. The NT exp command does not have a 2g upper limit.
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-11-2002 05:27 AM
тАО06-11-2002 05:27 AM
Re: Oracle EXP-00002 error on HPUX10.20
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-11-2002 04:32 PM
тАО06-11-2002 04:32 PM
Re: Oracle EXP-00002 error on HPUX10.20
http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_id=62407.1&p_database_id=NOT
It appears that 8.0.5 and 8.0.6 64bit can export over 2g with a patch, and 8.1.6 and 8.1.7 64bit can export over 2g standard. The filesystem in question does have to be configured for largefiles.
I apologize for giving out false information. The last time I did any checking on it, 8.0.6 was just coming out, and I was still under the impression that the 'exp' command was the limiting factor.
Brian