What are ISOLATION LEVELS? Where do we need to specify them?
Answers were Sorted based on User's Feedback
Answer / shreya
An isolation level determines how data is locked or
isolated from other processes while that data is being
accessed.these can be specified in 4 ways-
1)RR(Repeatable read)
2)RS(Read stability)
3)UR(uncommited read)
4)cs(cursor stability)
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / harish
isolation levels r specified when we do bind, they avvoid
concurrency and mauntain integrity of data....isolation
levels r cursor stabily, repatable read.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ashu
An isolation level determines how data is locked or
isolated from other processes while that data is being
accessed.It is page level locking.these can be specified in
4 ways-
1)cs(cursor stability):-
Used when concurrency is important.
2)RR(Repeatable read)
Used when Data Integrity is Important.
3)RS(Read stability)
4)UR(uncommited read)
Uncommited read or Dirty Read.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is length is cobol?
How to Pass table from a cobol program to another cobol program and how to use that table in called program
How to read a 100 record from a file through cobol?
What is the difference between copy and include in cobol?
I have one ps file in which there are 3 fileds emp_no,emp_name and leave_app.this ps file information give the detail of employee which is going to apply for leave.suppose emp_no=113430,emp_name=ajay,leave_app=1 that means he is going to apply for 1 day leave.and accordingling the table in db2 will be updated means if he has that no of leave in his account then he will get dat leave and updated acc. in table(leave_balance=previous leave present in table-leave_app).Now i want to check whther the updated result is correct or not by comparing the two ps file using IEBCOMPARE or icetool so what is going to be the two ps file and how its is going to be compare.
How many divisions we have in Cobol ?
How would the number +1234 be stored if a PIC clause of PICTUREs9(4) comp-3 were used?
What is binary search?
What are the different data types in cobol?
what happens if parmparameter passes zero bytes to the program
using redefine can you redefine lower variable size to higher variable size?
What is CALL statement in COBOL?