Tagged Questions
2
votes
8answers
522 views
Can a rowid be invalidated right after being inserted in Oracle?
I'm running queries that look something like this:
INSERT INTO foo (...) VALUES (...) RETURNING ROWID INTO :bind_var
SELECT ... FROM foo WHERE ROWID = :bind_var
Essentially, I'm inserting a row ...
1
vote
1answer
381 views
PL/SQL: Update row based on ROWID
I am trying to update a row in a table which has no unique index. So, I selected the ROWID of the row I want to update and now I want to update the row like this:
UPDATE MYTABLE SET MYCOLUMN = 0 ...