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 |
Can we use pl sql in mysql?
Why do we need pl sql?
Is drop table faster than truncate?
What is the order of sql select?
how is myisam table stored? : Sql dba
how to drop an existing index in mysql? : Sql dba
what is acid property in database? : Sql dba
what are the features and advantages of object-oriented programming? : Sql dba
I need a exceptoin in pl/sql block so that if any errors occur in the block then no exception should errors should raise?
Write a sql select query that only returns each name only once from a table?
When to use inner join and left join?
Can you have more than one key in a database?
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)