HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Write() Call and 2GB File Limit on 10.20
Operating System - HP-UX
1831661
Members
2072
Online
110029
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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-26-2000 11:35 AM
10-26-2000 11:35 AM
Write() Call and 2GB File Limit on 10.20
Hi,
My database(Informix) can write more than 2gb to a disk filesystem for a database backup, but I get an error whenever I set the size of the file to more than 2GB within Informix.
What in the OS on 10.20 limits the write() call on a single open() call to 2gb?
TIA,
Melvin Mariney
My database(Informix) can write more than 2gb to a disk filesystem for a database backup, but I get an error whenever I set the size of the file to more than 2GB within Informix.
What in the OS on 10.20 limits the write() call on a single open() call to 2gb?
TIA,
Melvin Mariney
You never stop learning...
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2000 12:31 PM
10-26-2000 12:31 PM
Re: Write() Call and 2GB File Limit on 10.20
Melvin:
To use 'largefiles' you must have converted the filesystem to a largefile filesystem.
If you /etc/fstab entries show "largefiles" then the filesystem in question has been converted.
You should FIRST READ the HP-UX Large Files White Paper (in PDF format) at:
http://docs.hp.com/hpux/11.0/
...JRF...
To use 'largefiles' you must have converted the filesystem to a largefile filesystem.
If you /etc/fstab entries show "largefiles" then the filesystem in question has been converted.
You should FIRST READ the HP-UX Large Files White Paper (in PDF format) at:
http://docs.hp.com/hpux/11.0/
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2000 10:24 PM
10-26-2000 10:24 PM
Re: Write() Call and 2GB File Limit on 10.20
This is the solution I had used with Oracle:
!!! IMPORTANT: THESE EXAMPLES ONLY WORK IN KORN SHELL (KSH) !!!
Use the UNIX pipe and split commands:
Export command:
echo|exp file=>(split -b 1024m - expdmp-) userid=scott/tiger tables=X
Note: You can put any "exp" parameters. This is working only in ksh and
has been tested on Sun Solaris 5.5.1.
Import command:
echo|imp file=<(cat expdmp-*) userid=scott/tiger tables=X
Splitting and compressing at the same time:
Export command:
echo|exp file=>(compress|split -b 1024m - expdmp-) userid=scott/tiger tables=X
Import command:
echo|imp file=<(cat expdmp-*|zcat) userid=scott/tiger tables=X
!!! IMPORTANT: THESE EXAMPLES ONLY WORK IN KORN SHELL (KSH) !!!
Use the UNIX pipe and split commands:
Export command:
echo|exp file=>(split -b 1024m - expdmp-) userid=scott/tiger tables=X
Note: You can put any "exp" parameters. This is working only in ksh and
has been tested on Sun Solaris 5.5.1.
Import command:
echo|imp file=<(cat expdmp-*) userid=scott/tiger tables=X
Splitting and compressing at the same time:
Export command:
echo|exp file=>(compress|split -b 1024m - expdmp-) userid=scott/tiger tables=X
Import command:
echo|imp file=<(cat expdmp-*|zcat) userid=scott/tiger tables=X
Unix is always UNIX
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP