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 |
wht is the difference between goto and perform stmts
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.
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
What is the difference between a binary search and a sequential search?
How can we pass data from cobol to JCl?
how do u list the abended jobs?
In a COBOL II PERFORM statement, when is the conditional tested, before or after the perform execution?
I have 100 records in a file.. i want to sort the records from 5 to 5o... give the syntax...
01 A pic 9(100) find record length of it
Consider the following: 77 A PIC 9(10) 77 B PIC 9(10) 77 C PIC 9(19) MULTIPLY AB BY B GIVING C Which of the following is true ? (a) The execution of the above may result in size error. (b) The execution of the above will result in size error. (c) The definition of C is invalid resulting in compilation error. (d) No error will be thee and the program would proceed correctly.
What is normalisation?
How we copy a program from production region to development region.What is the process & syntax ?