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

Display Time stamp, if any SQL Abends


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Anand78

New User


Joined: 06 Mar 2006
Posts: 50
Location: PUNE

PostPosted: Thu Aug 23, 2007 3:19 pm
Reply with quote

HI ,

Can anybody tell me how to resolve below issue.

If any select sql abends , I want to display timestamp in spool.

Pls tell me how to do that.

Thanks
Anand
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Thu Aug 23, 2007 4:31 pm
Reply with quote

Anand78,

do you mean that you want to display an informational message containing a timestamp in the 'spool' if you receive a negative value SQLCODE from a SELECT?

SQL's don't ABEND.

Is this batch or CICS/IMS?
only in batch do you drive a message to the sysout.

well, first you need to obtain a timestamp

Code:

SET :WS-TIMESTAMP TO CURRENT_TIMESTAMP
DISPLAY 'SQL ERROR: ' SQLCODE ' AT '  WS-TIMESTAMP ' FOR ROUTINE ?'


Fill in your own message for '?'.

by the way, if your negative SQLCODE concerns a connect issue, you won't beable to access a timestamp.

why must you include a time? you can tell from the JES output when your job ran - if it is batch. What is more important is what you were doing (what sql were you executing), what the host-variables contained and of course the SQLCODE. You should display the complete SQLCA.

But what gain will that give you?
Back to top
View user's profile Send private message
stodolas

Active Member


Joined: 13 Jun 2007
Posts: 632
Location: Wisconsin

PostPosted: Thu Aug 23, 2007 6:52 pm
Reply with quote

He could do a ACCEPT "WS-TIME FROM systemTime" or whatever it is if the DB2 subsystem isn't available.
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 -> DB2

 


Similar Topics
Topic Forum Replies
No new posts To get the the current time DFSORT/ICETOOL 13
No new posts RC query -Time column CA Products 3
No new posts C Compile time time stamps Java & MQSeries 10
No new posts Parallelization in CICS to reduce res... CICS 4
No new posts Insert system time/date (timestamp) u... DFSORT/ICETOOL 5
Search our Forums:

Back to Top