- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- SORT Error
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-2010 04:20 AM
тАО06-09-2010 04:20 AM
SORT Error
%COB-F-SORT_ERROR, Error during SORT or MERGE on SD
-SORT-F-SORT_ON, sort or merge routines called in incorrect order
%TRACE-F-TRACEBACK, symbolic stack dump follows
I am looking for as much info on the possible causes as possible ..
Thanks
- Tags:
- Sort
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-09-2010 05:27 AM
тАО06-09-2010 05:27 AM
Re: SORT Error
OpenVMS? (certainly looks like it :-)
Version ? Platform ? relevant Patches?
My first guess? Something wrong the definition of SYS$SCRATCH !
Perhaps it is not defined, because the program is run detached in production, interactively during test?
Perhaps pointing to an inaccessible place?
My second guess?
The program 'fell' into a sort INPUT (or OUTPUT ) PROCEDURE paragraph.
>>> SORT-F-SORT_ON, sort or merge routines called in incorrect order
Where they?
What Cobol statement caused the error?
SORT itself? A RELEASE or a RETURN ?
>>> TRACEBACK, symbolic stack dump follows
Well, does the traceback give you a clue where the program was?
If the problem persists, sprinkle the program with DISPLAYs statements to help you understand where it has been and where it tried to go.
Good Luck!
Hein
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-09-2010 07:18 AM
тАО06-09-2010 07:18 AM
Re: SORT Error
We need a little more info to go on here.
Thanks,
Dan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-09-2010 12:02 PM
тАО06-09-2010 12:02 PM
Re: SORT Error
Quotas against data growth and user privileges. Same user(s) or different?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-09-2010 02:12 PM
тАО06-09-2010 02:12 PM
Re: SORT Error
Check that PGFLQUOTA is high enough. Specificially some significant multiple of the resultant WSEXTENT for the process. Check the *actual* WSEXTENT, not the one in SYSUAF.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-09-2010 02:50 PM
тАО06-09-2010 02:50 PM
Re: SORT Error
I'm with Hein. Id look for a logic condition (or code change) that has led to a code-path where a return is coming before a release/sort.
Cheers Richard Maher
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-09-2010 08:09 PM
тАО06-09-2010 08:09 PM
Re: SORT Error
Yes, as everybody said you need to look at the traceback information and figure out the root cause of this issue. You can also get a process dump by setting set process/dump and then look at the process dump whether any of the quota is exhausted or working set is exhausted etc.
-Pramod.