In SQL Server I used the following hints inside queries:
- rowlock (row level locking)
- updlock (prevents dirty reads)
- readpast (don't block waiting for a rowlock, go to the first unlocked row)
e.g.
select top 1 data from tablez with (rowlock,updlock,readpast);
Are there equivalent in-query hints for Oracle?