Ingres vs Oracle exclusive locking
Ingres allows an exclusive lock on tables, set lockmode on tablename where readlock = exclusive which means the users can't access the same
rows that are being modified by another query.
Is there anything in oracle that does the same thing ? All of Oracle's locking seesm to be that you can
still read data. And that is what my user is afraid of. He doesn't want to read old data, when it's
being changed.
How do you work around this ?
Thanks.