- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- trying to inventory old apps still running on our ...
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
01-08-2007 06:48 AM
01-08-2007 06:48 AM
trying to inventory old apps still running on our vax cluster
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2007 07:07 AM
01-08-2007 07:07 AM
Re: trying to inventory old apps still running on our vax cluster
Looking at layered products would miss any internal customer code that may have been written. If I were approaching the project, I'd start with user interviews. What applications do you still use. What information needs to be available even if you don't use it every day?
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2007 07:38 AM
01-08-2007 07:38 AM
Re: trying to inventory old apps still running on our vax cluster
$ set acco/enab=imag
$ acco/summ=imag
Note that the amount of disk space consumed by ACCOUNTNG.DAT will depend upon how many image activations occur on your systems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2007 09:56 AM
01-08-2007 09:56 AM
Re: trying to inventory old apps still running on our vax cluster
Here is an other thought...
A simple DCL script which look around (world priv needed!) and counts images as it sees them being used, remembering the last user and last usage time.
Submit to run every 30 minutes or so.
Let it run for a week.
Now check the file it created with: Name, Count, Time, User.
Sample output and script below.
$ type images.tmp ! Sample output
Image Count Procedure 7 2007-01-08 16:54 HEIN
MAIL 5 2007-01-08 16:54 HEIN
PHONE 8 2007-01-08 16:54 HEIN
TPU 3 2007-01-08 16:54 HEIN
$ type images.com ! Script
$!
$! images.com, Jan-2007 Hein van den Heuvel
$! Take a peek at the system to see who is using what images.
$! Remember and count usage in an indexed file
$! Record: image-name(25), usage-count(10), last-time(16), last-user(12)
$!
$ if "".eqs.f$trnlnm("image_file") then def/job image_file SYS$LOGIN:images.TMP
$ if "".eqs.f$search("image_file") then gosub create_image_file
$ now = F$EXTR(0,16,F$CVTIME())
$ open/read/write images image_file
$ context = ""
$ last_pid = ""
$ pid = F$PID(context) ! picks up ourself, no image, for initial record update
$loop:
$ verify_pid := 'pid
$ user = F$FAO("!12AS", F$GETJPI(pid,"USERNAME"))
$ image = F$FAO("!25AS", F$PARSE(F$GETJPI(pid,"IMAGNAME"),,,"NAME"))
$ read/key=ℑ/error=not_found_we_suspect images record
$ usage = 'f$extract(25,10,record)
$ usage = usage + 1
$ write/update images f$fao("!25AS!10UL !16AS !12AS", image, usage, now, user)
$ pid = F$PID(context)
$ if pid.nes."" then goto loop
$ status = 1
$done:
$ close images
$ exit 'status
$
$not_found_we_suspect:
$ status = $STATUS
$ if pid.eqs.last_pid then goto done
$ last_pid = pid ! Do not loop
$ write images f$fao("!25AS!10UL", image, 0)
$ goto loop ! try again
$
$create_image_file:
$ create/fdl=sys$input/log image_file
FILE
ORGANIZATION indexed
KEY 0
SEG0_LENGTH 25
SEG0_POSITION 0
$ return
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2007 10:51 PM
01-08-2007 10:51 PM
Re: trying to inventory old apps still running on our vax cluster
Regards (and good luck)
Paul