Hi there!
Short version:
I want to determine the execution time of some dedicated part of my COBOL program. How do I do that?
Long version:
Until half a year ago, I was a 'normal' Java programmer. But now I have changed my habits and also my work place. I'm working now as a mainframe programmer and have to develop my software in COBOL. It's a bit cubercome but its okay. Until now I've only developed some smaller programs that were not designed for performance. But now I've got a bigger project where I have to take care of performance. Out of that issue emerged my problem: I want to compare some different parts of my code (from the viewpoint of the execution time). These do parts perform the same task, but are coded in a different way. So, how do I get an estimate of the execution time? The single built-in function I found was 'CURRENT DATE'. But the precision of this function is in the range of hundredths of second. That's pretty big for my portion of code. Is there another way to determine the execution speed?
thanks for your help.