- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- file too large ulimit exceeded
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
10-13-2003 03:51 AM
10-13-2003 03:51 AM
file too large ulimit exceeded
We have a customer having the Baan software installed upon Oracle. Baan is similar to SAP.
When the customer copies (using the Baan GUI) the oracle tablespaces and data to a flat file, he gets the error "file too large, check ulimit" in a Baan logfile. By the time this error message appears 2.1 GB has already been copied.
largefiles setting for the vxfs filesystem as well as in /etc/fstab are fine.
ulimit values for user root are as follows
/baan/bse/patches root (K) > ulimit -a
time(seconds) unlimited
file(blocks) unlimited
data(kbytes) 1048576
stack(kbytes) 204800
memory(kbytes) unlimited
coredump(blocks) 4194303
nofiles(descriptors) 1024
Apart from this copying largefiles using Unix commands within the filesysatems and to tape is successful. So effectively extracting from databse file to flat file is causing the error.
There's one unrelated query regarding ulimit. Tghe man page states nothing about its usage ... man page shows it as a system call. Where do we get info on ulimit (the command's) functionality and usage.
Thanks and Regards,
Omar Alvi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2003 04:00 AM
10-13-2003 04:00 AM
Re: file too large ulimit exceeded
You can change ulimit for sh-posix shells. For ksh you cannot change it. ulimit is the shell intrinsic command. Check man page of sh-posix for ulimit details.
HTH,
Umapathy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2003 04:09 AM
10-13-2003 04:09 AM
Re: file too large ulimit exceeded
echo $SHELL
Don't change it without checking with the application vendor.
You might be able to merely change the shell in the script and then use ulimit as noted in the prior post.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2003 04:09 AM
10-13-2003 04:09 AM
Re: file too large ulimit exceeded
-Tomek
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2003 04:25 AM
10-13-2003 04:25 AM
Re: file too large ulimit exceeded
i would check the following:
- the shell: only posix sh and csh really and fully supports large files
- the executable: what is baan using to copy the files ? for example, the unix command cp does not work with largefiles
- the fs options: is largefiles enabled ? triple check, even if you say that is OK!
- the exp from oracle is limited to 2G, if that's the case you must use a pipe
"So effectively extracting from databse file to flat file is causing the error." leads to previous consideration......
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2003 05:43 AM
10-13-2003 05:43 AM
Re: file too large ulimit exceeded
mknod /tmp/mypipe p
Now start your dump but use /tmp/mypipe as the output file. It will block until the next step is done.
In another window, cat < /tmp/mypipe > myoutputfile.