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



What are ISOLATION LEVELS? Where do we need to specify them in compiling JCL (Exactly which statem..

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

What are ISOLATION LEVELS? Where do we need to specify them in compiling JCL (Exactly which statem..

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

Post New Answer

More COBOL Interview Questions

can any one give good example for cond 88 level number and for renames pls urgent dudes ?

3 Answers   DELL,


What is the reference modification.

2 Answers  


We know that size of redefine and redefining need not to be same..Then does the below case true 01 ws-date pic 9(6). 01 ws-redf-date REDEFINES ws-date 05 ws-year pic 9(4) 05 ws-mon pic 9(2) 05 ws-day pic 9(2)

1 Answers   Cap Gemini,


I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......

4 Answers   Accenture,


What are the different forms of EVALUATE statement?

2 Answers   IBM, Micro Labs,






consider the following FD FILE-1 01 REC-1 PIC X(80) ...... WORKING-STORAGE SECTION 01 W-REC PIC X(90) ........ PROCEDURE DIVISION FIRST-PARA ....... READ FILE-1 INTO W-REC AT END MOVE 1 TO EOF-FLAG which of the following is true with respect to the above? a.REC-1 will contain nothing and W-REC will contain the contains of the record read b.REC-1 and W-REC contain the same data c.syntex is invalid and error will occur d.REC-1 and W-REC must be of same size

1 Answers   TCS,


COMPUTE X = A * B - C * D and COMPUTE X = (A * B) - (C * D) (a) Are not the same (b) Are same (c) Syntactically wrong (d) Will yield a run time error

1 Answers   TCS,


I want to declare a field with data type Double in my COBOL program. how shall i do that ?

5 Answers  


How to resolve the soc4 and soc7 errors?

5 Answers   IBM, RBS,


How will you find the currepted records in a file

2 Answers  


if we have " ibm mainframe ",in that how to remove first and last leading space eg:"ibm mainframe" like that the answer we need

0 Answers  


Size of a column has been changed in DB2 table (Suppose it was of 5 characters and later changed to 4 characters) and forgot to change the DCLGEN in COBOL program, what will happen during the execution of code? If the program Abends then what will be the error? If it doesn't abend then hpw the error can be catched?

5 Answers   IBM,


Categories