Tagged Questions
The ora-02014 tag has no wiki summary.
2
votes
1answer
586 views
How to work around ORA-02014: cannot select FOR UPDATE from view with DISTINCT, GROUP BY, etc
I want to lock one record in a table.
The record is specified as "the next that has ID greater than..."
CREATE TABLE test (id number);
SELECT id
FROM (SELECT id
FROM test
WHERE id > ...
2
votes
2answers
459 views
ORA-02014- How do I update a randomly selected row from a table?
I'm trying to randomly select a card from a table of cards with columns c_value and c_suit using a procedure. After selecting it, the procedure should update that entry's taken field to be 'Y'.
...
0
votes
2answers
252 views
How to solve ORA-02014: cannot select FOR UPDATE from view with DISTINCT, GROUP BY
I want to lock a group of records as the following query:
SELECT *
FROM (SELECT *
FROM event_table
WHERE status = 'S'
ORDER BY CREATION_DATA ASC)
WHERE ROWNUM <=10
FOR UPDATE;
...
0
votes
2answers
451 views
How can I use “FOR UPDATE” with a JOIN on Oracle?
The answer to another SO question was to use this SQL query:
SELECT o.Id, o.attrib1, o.attrib2
FROM table1 o
JOIN (SELECT DISTINCT Id
FROM table1, table2, table3
WHERE ...) ...