Types of cursor locks and explanation each of them ?

Answers were Sorted based on User's Feedback



Types of cursor locks and explanation each of them ?..

Answer / mehul patel

acLockPesimistic - locks the row when it read it and hold
the lock still updates it.
adLockOptimistic - locks the row whenit updates it.
adLockOptimistic - locks the row at the time it updates it.
adlockforwardonly - readonly.

Is This Answer Correct ?    5 Yes 2 No

Types of cursor locks and explanation each of them ?..

Answer / rtr

a

Is This Answer Correct ?    4 Yes 2 No

Types of cursor locks and explanation each of them ?..

Answer / kalyan dhara

FOR UPDATE and CURRENT OF
---------------
When you issue a SELECT...FOR UPDATE statement, the RDBMS
automatically obtains exclusive row-level locks on all the
rows identified by the SELECT statement, holding the records
“for your changes only” as you move through the rows
retrieved by the cursor. No one else will be able to change
any of these records until you perform a ROLLBACK or a COMMIT.

CURSOR toys_cur IS
SELECT name, manufacturer, preference_level,
sell_at_yardsale_flag
FROM my_sons_collection
WHERE hours_used = 0
FOR UPDATE;

UPDATE table_name
SET set_clause
WHERE CURRENT OF toys_cur ;

OR

DELETE FROM table_name
WHERE CURRENT OF toys_cur ;

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

What is the difference between functions, procedures, and packages in pl/sql?

0 Answers  


what are all the different types of indexes? : Sql dba

0 Answers  


list out some tools through which we can draw e-r diagrams for mysql. : Sql dba

0 Answers  


What is spool?

0 Answers  


What are different types of refreshment techniques of materialised view

2 Answers  






Why is nosql good?

0 Answers  


What is cursor and why it is required?

0 Answers  


What is the difference between local variables and global variables?

0 Answers  


How do I create an index in word?

0 Answers  


how to use 'mysql' to run sql statements? : Sql dba

0 Answers  


What is difference between sql and oracle?

0 Answers  


What are the advantages of pl sql?

0 Answers  


Categories