IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

how to know the last linkedited data & time of the load


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Velmurugan_j

New User


Joined: 04 Aug 2005
Posts: 49

PostPosted: Wed Dec 26, 2007 11:19 am
Reply with quote

Hi,

Can anyone help me in finding out the last linkedited data and time of a load.
Back to top
View user's profile Send private message
abhishekmdwivedi

New User


Joined: 22 Aug 2006
Posts: 95
Location: india

PostPosted: Wed Dec 26, 2007 11:28 am
Reply with quote

hi Velmurugan,

If you are looking for the last date & time on which the specific load was created then just VIEW the load dataset and you will be able to find a date in format (YYYYMMDD)
Back to top
View user's profile Send private message
Srihari Gonugunta

Active User


Joined: 14 Sep 2007
Posts: 295
Location: Singapore

PostPosted: Wed Dec 26, 2007 11:41 am
Reply with quote

Hi, What you see in YYYYMMDD is compilation date. Not last link-edited date. Link-edit date can be different from compilation date.

Consider the case of program A making a static call to program B.

Suppose If B is changed, then A need not be compiled, instead it can be just link-edited. In this case, Link-edit date and compilation date would be different for A. So its not the standard way of looking at the timestamp.
Back to top
View user's profile Send private message
Velmurugan_j

New User


Joined: 04 Aug 2005
Posts: 49

PostPosted: Wed Dec 26, 2007 11:50 am
Reply with quote

I am finding lot of dates in the load which one i should take........
Back to top
View user's profile Send private message
abhishekmdwivedi

New User


Joined: 22 Aug 2006
Posts: 95
Location: india

PostPosted: Wed Dec 26, 2007 11:57 am
Reply with quote

Venu,

Search for date which is associated with your program name.

Srihari,
YUP, you are correct, but the load doesn't contain timestamping for the link-edit. Hence in that case the compilation job in the SPOOL can be checked. If there is some other way then please let us know.
Back to top
View user's profile Send private message
Srihari Gonugunta

Active User


Joined: 14 Sep 2007
Posts: 295
Location: Singapore

PostPosted: Wed Dec 26, 2007 7:23 pm
Reply with quote

You can extract the timestamp from load module using AMBLIST utility.

//REPORT EXEC PGM=AMBLIST
//SYSPRINT DD SYSOUT=*
//SYSLIB DD DISP=SHR,DSN=Load module name
LISTIDR MEMBER=mem-name
LISTLOAD OUTPUT=XREF,MEMBER=mem-name
/*
Back to top
View user's profile Send private message
Srihari Gonugunta

Active User


Joined: 14 Sep 2007
Posts: 295
Location: Singapore

PostPosted: Wed Dec 26, 2007 7:31 pm
Reply with quote

Forgot to mention where to check the timestamp.. Please check in the SYSPRINT approximately 24th line will contain the details of the timestamp.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts How to save SYSLOG as text data via P... All Other Mainframe Topics 1
No new posts Store the data for fixed length COBOL Programming 1
No new posts Load new table with Old unload - DB2 DB2 6
No new posts Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
No new posts How to load to DB2 with column level ... DB2 6
Search our Forums:

Back to Top