which one is better among static call and dynamic call?
Answers were Sorted based on User's Feedback
Answer / sab
Which one to use is depends on the situation.
If your code is small then its better to use static call as
it also speed up performance and it will be easy to track
the versions in small code.
If you are working with large number of subroutines, its
always good to use dynamic linking as it will save storage
space as well as will maintain versions of code easily.
Satisfied with answer...???
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / lu
static call is faster than dynamic call, but when you
modifies a called program, you have to recompile a called
program and calling program...
dynamic call , you don't need to recompile 2 programs
calling and called...it's independent..
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / ps
call in which the called program and the calling program are
compiled and link edited together to create one load module
is static call.
call in which the calling and called program are compiled
and link edited separatly to create two load module is
dynamic calling.In dynamic calling if someone is sharing we
have to wait
| Is This Answer Correct ? | 0 Yes | 0 No |
db2 variable decimal(15,2) what is the equalent size of cobol variable
How to display string in the reverse order using occurs clause?
How to change size of Initial number of records to *NOMAX for ALL PF files from perticular library, how can I do that
What is SQL Code -904 and -903 in DB2 And how to handle it?
Why occurs can not be used in 01 level ?
The disposition parameter in the jcl is share ( DISP+SHR ) and the program opens file in extend mode what will happen?
If you are current on the owner of a set, what is the difference between an obtain next and obtain first? Actually in which topic will we use dis???Plz explain it clearly
suppose a cobol programme A calling programme B,C and D. If C undergoes some change what if A,B,C,D need to be recompiled or only C nee to be recompliled.
perform I from 0 by 1 until I=5?How maney times it will executes
wht happens if we dnt give scope terminator ?
what is Pic 9v99 Indicates?
How do you set a return code to the JCL from a COBOL program?