HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: System setup not working
Operating System - OpenVMS
1827704
Members
2902
Online
109967
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
Go to solution
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
12-28-2007 08:39 AM
12-28-2007 08:39 AM
One of the programmers for my company contacted me with the attached issue. I'm hoping someone can help me with this. Not entirely sure if this an OS issue or not. We are using OpenVMS V7.2-2.
Thanks in advance.
Thanks in advance.
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2007 09:01 AM
12-28-2007 09:01 AM
Solution
This is NOT an OS issue, but striclty and only an application setup issue.
>> %DCL-W-ACTIMAGE, error activating image DBEXE:DB_BLD_AFFECTED_RPT_EXTR
>> -CLI-E-IMGNAME, image file DPA301:[PROD.DATABASE.][EXE_AXP]DB_BLD_AFFECTED_RPT_EXTR.EXE;
-RMS-E-DNF, directory not found
So the logical name DBEXE is wrongly defined, or it's target was deleted:
DBEXE appaers to be defined as:
something:[EXE_AXP]
Check with $SHOW LOG DBEXE/full
The 'something' is _likely_, but not certainly 'DB$ROOT'
It is probably in turn defined as
DPA301:[PROD.DATABASE.]
Do a $SHOW LOG for that as well.
The next commands I would issues would be:
$DIR DPA301:[PROD.DATABASE.000000]
and
$DIR DPA301:[*...]DB_BLD_AFFECTED_RPT_EXTR.*
Good luck!
Hein.
>> %DCL-W-ACTIMAGE, error activating image DBEXE:DB_BLD_AFFECTED_RPT_EXTR
>> -CLI-E-IMGNAME, image file DPA301:[PROD.DATABASE.][EXE_AXP]DB_BLD_AFFECTED_RPT_EXTR.EXE;
-RMS-E-DNF, directory not found
So the logical name DBEXE is wrongly defined, or it's target was deleted:
DBEXE appaers to be defined as:
something:[EXE_AXP]
Check with $SHOW LOG DBEXE/full
The 'something' is _likely_, but not certainly 'DB$ROOT'
It is probably in turn defined as
DPA301:[PROD.DATABASE.]
Do a $SHOW LOG for that as well.
The next commands I would issues would be:
$DIR DPA301:[PROD.DATABASE.000000]
and
$DIR DPA301:[*...]DB_BLD_AFFECTED_RPT_EXTR.*
Good luck!
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2007 01:57 PM
12-28-2007 01:57 PM
Re: System setup not working
As Hein writes, this is not an "OS issue".
I see Uniface and multi-version Rdb here, which means there can be a mildly involved set-up for the various applications; the environments require various set-up to get to the database. There's a second-level here, with local logical names to get to the production tools. Looks to have Alpha and probably has or had VAX systems around. And it's that set-up which is going off the rails here.
This case looks to require some DCL-level debugging. Starting with what is probably the most obvious course of investigation, I'd start the quest with what the programmer changed here, and particularly look for errors or for cases where DCL was exiting prematurely due to an error. A DIFFERENCES of the old and new DCL procedures, for instance. That'll probably narrow down the areas to investigate. A key search target would be for the DBEXE logical name; that's clearly caught in an area of the DCL environment that's not being set up correctly here.
I'd also look to set up a specific release sequence and a release command procedure, rather than editing files in what I infer to be the production DBCOM: directory. Hand-editing production files tends to lead to problems, in my experience. Regressions can become commonplace, where production and development don't match.
Finding out why a production node would have a link-related logical name (lnk$library) would be worth a look, too. In various production environments, LINK operations (which implies source code builds are aso occurring) is comparatively unusual.
Stephen Hoffman
HoffmanLabs LLC
I see Uniface and multi-version Rdb here, which means there can be a mildly involved set-up for the various applications; the environments require various set-up to get to the database. There's a second-level here, with local logical names to get to the production tools. Looks to have Alpha and probably has or had VAX systems around. And it's that set-up which is going off the rails here.
This case looks to require some DCL-level debugging. Starting with what is probably the most obvious course of investigation, I'd start the quest with what the programmer changed here, and particularly look for errors or for cases where DCL was exiting prematurely due to an error. A DIFFERENCES of the old and new DCL procedures, for instance. That'll probably narrow down the areas to investigate. A key search target would be for the DBEXE logical name; that's clearly caught in an area of the DCL environment that's not being set up correctly here.
I'd also look to set up a specific release sequence and a release command procedure, rather than editing files in what I infer to be the production DBCOM: directory. Hand-editing production files tends to lead to problems, in my experience. Regressions can become commonplace, where production and development don't match.
Finding out why a production node would have a link-related logical name (lnk$library) would be worth a look, too. In various production environments, LINK operations (which implies source code builds are aso occurring) is comparatively unusual.
Stephen Hoffman
HoffmanLabs LLC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2007 07:27 PM
12-28-2007 07:27 PM
Re: System setup not working
Hello,
This does not an OS issue. It looks like you have a logical, naybe a rooted logical definition defined incorrectly. What is the logical ODIN? Why are you using the assign command for this logical but define command for all the rest (it may not matter anyway, just curious). Also, what is the command that defines DBCOM? This could be a place to look. You might also need to do some DCL command file debugging.
This does not an OS issue. It looks like you have a logical, naybe a rooted logical definition defined incorrectly. What is the logical ODIN? Why are you using the assign command for this logical but define command for all the rest (it may not matter anyway, just curious). Also, what is the command that defines DBCOM? This could be a place to look. You might also need to do some DCL command file debugging.
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
Support
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP