- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Exporting file not exceeding more then 2.1 GB
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
03-14-2004 10:26 PM
03-14-2004 10:26 PM
Exporting file not exceeding more then 2.1 GB
Hp e -45 server having HP-ux 10.20. i facing the problem that is whenever i try to export the oracle data backup to *.dmp file,i am getting the following message. after the file reached the capacity of 2.1 GB.
error in writing file export file
system error no such directory or file
export terminated.
i am suspecting the file size, coz whenever the exporting file reaching the size of 2.1 GB then the exporting terminated.
Help me in this case anyone.
thanks in advance,
Shankar Ganesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2004 10:30 PM
03-14-2004 10:30 PM
Re: Exporting file not exceeding more then 2.1 GB
The filesystem must be created with the "-o lagefiles" option though you can do this online if you have online jfs. You also have to mount the filesystem with "-o largefiles" option.
mount -F vxfs -o largfiles /dev/vgxx/lvolx /mydirectory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2004 10:35 PM
03-14-2004 10:35 PM
Re: Exporting file not exceeding more then 2.1 GB
fstyp -v file_system
the output should show the value of f_flag: 16 in case largefile is supported.
sks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2004 10:39 PM
03-14-2004 10:39 PM
Re: Exporting file not exceeding more then 2.1 GB
From
http://www.orafaq.com/faqunix.htm
How does one overcome the Unix 2 Gig file limit?
This example uses the Unix split command to create multiple files, each smaller than the Unix (and imp/exp) 2 Gigabyte file size limit. This method can typically be used for import, export and SQL*Loader operations.
cd /tmp/data
rm exp.dmp
mknod exp.dmp p # mkfifo on certain Unix flavours
split -b2047m exp scott/tiger file=/tmp/data/exp.dmp record=n tables=tableX
cd /tmp/data
rm exp.dmp
mknod exp.dmp p
cat xaa xab xac xad >/tmp/data/exp.dmp &
imp scott/tiger file=/tmp/data/exp.dmp commit=y tables=tableX
See
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=76776
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2004 10:39 PM
03-14-2004 10:39 PM
Re: Exporting file not exceeding more then 2.1 GB
or
fsadm -o largefiles /device_file_name
-Karthik S S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2004 02:05 AM
03-16-2004 02:05 AM