- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Restart file had wrong restart labels written to i...
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
06-09-2009 11:47 AM
06-09-2009 11:47 AM
Restart file had wrong restart labels written to it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2009 01:06 PM
06-09-2009 01:06 PM
Re: Restart file had wrong restart labels written to it?
The only error I see is a COPY-E-OPENOUT which, if the output file really does already exist, is correct.
I'm not sure what you mean by "restart file" and "restart file buffer". If you're talking about restartable jobs in DCL, I'd want to see your $ SET RESTART_VALUE commands, and the value of $RESTART and BATCH$RESTART when the job starts.
This line worries me:
$ $status = "JOBABORT"
What is it trying to achieve?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2009 02:44 PM
06-09-2009 02:44 PM
Re: Restart file had wrong restart labels written to it?
I don't see any restart symbols here, so (beyond the COPY collision with an existing file that John mentions) what's gone wrong here is going to need a bit more digging in the DCL. Something left a file around?
Assigning values to a system-defined DCL symbol (the assignment into that $status assignment) is generally considered a bad idea. That can lead to weirdness.
If this is cropping up with some regularity, you're probably going to want to tweak the "$ Overify = F$Verify(0,0)" sequence. That masks what is going on here.
For ease of debugging, I've tended to use the following construct in most DCL procedures I work with:
$ Overify = F$Verify(f$trnlnm("WHATEVER_DEBUG"))
This command to control enabling the DCL procedure verification by defining a group or system logical name. WHATEVER_DEBUG, in this case. Without editing the DCL.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2009 10:46 AM
06-10-2009 10:46 AM
Re: Restart file had wrong restart labels written to it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2009 02:20 PM
06-10-2009 02:20 PM
Re: Restart file had wrong restart labels written to it?
By what you've posted I doubt you have any other information that will shed any light on what happened.
I'd recommend adding the line:
$ SHOW SYMBOL *$RESTART
somewhere at the top of your procedure. That way, if it happens again, you can see what they job has been told to do.
It may also be useful to write a message each time you SET RESTART_VALUE.