Types of cursor locks and explanation each of them ?
Answers were Sorted based on User's Feedback
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 |
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 |
which will default fire first statement level trigger or row level trigger
2 Answers Cap Gemini, Data Vision,
HOW TO TUNE ORACLE SQL QUERIES GIVE ME STEP BY SREP
How do I start sql from command line?
Can we use join in subquery?
Can you skip header records while loading? : aql loader
How to avoid using cursors?
What is a Mapplet?
What is the difference between syntax error and runtime error?
How many types of database triggers can be specified on a table ? What are they ?
What is substitution variable in pl sql?
How to set up sql*plus output format in oracle?
What are the sql commands?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)