- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: MF Cobol Sorting large files problem
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
12-31-2003 11:30 AM
12-31-2003 11:30 AM
MF Cobol Sorting large files problem
--------------------------------------------
"mergetemp(): mFt_os_write() failed errno: 27 (File too large) fe_stat: 28
I/O error : file 'SORT-FILE'
error code: 9/194 (ANS74), pc=0, call=1, seg=0
194 File size too large
HP/MF COBOL Version: B.13.40
HP-UX unibank B.11.00 U 9000/800
pid: 21874 gid: 105 uid: 104
Thu Jan 1 04:40:18 2004
4:40am up 6 days, 11:14, 5 users, load average: 0.31, 0.22, 0.19
Thread mode: No Threads
RTS Error: COBOL
Sync Signals: COBOL
ASync Signals: COBOL
cobtidy on exception: False"
----------------------------------------------
We enable largefile of the file system where the sort file is residing. Still we are getting the same error.
Is it required to review any unix kernel parameter for this problem.
Versions:
HP-UX 11.0 (RP7400)
MF Cobol 4.1 (Bundled with HP-UX)
This is very urgent, can any body please repond.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-31-2003 12:55 PM
12-31-2003 12:55 PM
Re: MF Cobol Sorting large files problem
Perhaps the cobol application is trying to create data files too large.
You can use the fsadm tool to convert the filesystem. Then just umount it, change the mount option to largefiles and mount it again.
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
12-31-2003 01:21 PM
12-31-2003 01:21 PM
Re: MF Cobol Sorting large files problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-31-2003 01:30 PM
12-31-2003 01:30 PM
Re: MF Cobol Sorting large files problem
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-31-2003 03:39 PM
12-31-2003 03:39 PM
Re: MF Cobol Sorting large files problem
We are using SORT verb of COBOL in the cobol applications, we are not using lseek.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2004 05:58 AM
01-01-2004 05:58 AM
Re: MF Cobol Sorting large files problem
There are 2 other things that can trigger an errno = 27: 1) ulimit 2) quotas
Use ulimit -a to check ulimits and also check to see if quotas are in play on this filesystem.
Plan B. Format your data and call the UNIX sort utility.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2004 06:01 AM
01-01-2004 06:01 AM
Re: MF Cobol Sorting large files problem
There are 2 other things that can trigger an errno = 27: 1) ulimit 2) quotas
Use ulimit -a to check ulimits and also check to see if quotas are in play on this filesystem.
Plan B. Format your data and call the UNIX sort utility.
Note also that the process itself can set ulimit which would not be visible to the calling shell. You really need to proble your code and determine ulimit at run-time.
If would be helpful to monitor the size of this file while the process is running and determine the size at failure (or as near as you can get it).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2004 03:01 PM
01-01-2004 03:01 PM
Re: MF Cobol Sorting large files problem
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2005 08:40 AM
01-27-2005 08:40 AM
Re: MF Cobol Sorting large files problem
We cannot use the UNIX sort either.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2005 12:04 AM
01-28-2005 12:04 AM
Re: MF Cobol Sorting large files problem
Bill Hassell, sysadmin