What are ISOLATION LEVELS? Where do we need to specify them
in compiling JCL (Exactly which statement and what is
syntax for it)?
Answers were Sorted based on User's Feedback
Answer / vijay
It is a bind parameter,It determines the duration of the
page lock.
It contains three possible values are there.
1)cs(cursor stability).
2)rr(repeatable read)
3)ur(uncommitted read)
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / chandra
Leena,
The Isolation level can b given in BIND parameter only. not
in JCL, but the member nameshould be given along with ur
DBRMlibrary in DBRMLIB step in JCL.
Is This Answer Correct ? | 2 Yes | 0 No |
I have files that contains both duplicates files(occur more than twice) and non-duplicate files.The file is already sorted by a key.I want to determine those records that are duplicate and will be move to a duplicate file and non- duplicate files to be move to a valid file.thank you.help please
how do you reference the printer file formats from cobol programs
How to delete a front spaces in a data-name/variable in cobol Example:- 01 data-name-1 PIC x(20) value " cobol language". 01 data-name-2 PIC x(20). MOVE data-name-1 to data-name-2. would like the value of data-name-2 is "cobol language".
What are different file OPEN modes available in COBOL?
What is the meaning of 'Eject' verb in cobol?
Explain complete concept of table handling in COBOL with an example?
can u plz expain me how to declare dynamic array? what is the meaning of depending on clause in dynamic array?
What is the compute verb? How is it used?
what is meaning by design document? who can repared for this?
What is the figurative constant in cobol?
Difference between array and sub-script ?
01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?