vote up 1 vote down star

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 and getting its ROWID, then doing a select against that ROWID to get data back from that record. Very occasionally though, the ROWID won't be found.

Ignoring the fact that there's probably a better way to do what I'm trying to do, is it possible for a ROWID to change that quickly assuming that there's no one else using the database?

UPDATE There is a trigger involved. Here's the DDL statement for it:

CREATE OR REPLACE TRIGGER "LOG_ELIG_DEMOGRAPHICS_TRG" 
before insert on log_elig_demographics
for each row
begin
select log_elig_demographics_seq.nextval into :new.log_idn from dual;
end;

Essentially, it's just a trigger that is set up to help us emulate an IDENTITY/AUTO INCREMENT field. Is there something wrong with this trigger?

flag

8 Answers

vote up 2 vote down

Hi Jason,

A ROWID won't change unless:

  • you move the table (ALTER TABLE t MOVE), from one tablespace to another for example
  • the row switches from one partition to another (partitioned table with ENABLE ROW MOVEMENT)
  • you update the primary key of an INDEX ORGANIZED table.

When a row moves from one block to another in a standard (HEAP) table, because it grows so large it can't fit into its original block for example, it will be migrated. Oracle will leave a pointer to the new block and move the row. The row will keep its original ROWID.

ROWIDs can be relied upon, they are used in replication to refresh materialized views for example.

link|flag
Add to this that ALTER TABLE MOVE isn't the only way to move a table, and it requires a table lock anyway. Online table redefinition would be more likely to exhibit this behaviour as new inserts are could well move from between the 'old' and 'new' segments. – Gary Sep 30 at 9:42
vote up 2 vote down

A couple of other things may be happening. Firstly, the INSERT may be failing. Are you checking for errors/exceptions ? If not, maybe the value in the variable is junk.

Secondly, you could be inserting something that you can select. Virtual Private Database / Row Level Security could be responsible.

Thirdly, if you commit in between the insert and select, a deferred constraint may force a rollback of the insert.

Fourthly, maybe you are doing a rollback.

link|flag
vote up 1 vote down

Is there a trigger on the table that might be reversing the insert?

link|flag
There is a trigger that's creating the primary key from a sequence. But it shouldn't be reversing the insert. I'll update my question with the DDL statement for the trigger. – Jason Baker Sep 29 at 18:38
vote up 1 vote down

In my experience, the most likely reason for such an error to happen is that somewhere in between, a rollback has happened. Or, if there has been a commit, another user might have deleted the record.

link|flag
vote up 1 vote down

Your INSERT should be:

INSERT INTO foo 
  (primary_key,
   ...) 
VALUES 
  (log_elig_demographics_seq.nextval,
   ...) 
RETURNING primary_key INTO :bind_var

There's no need for the trigger.

link|flag
vote up 1 vote down

I agree with Walter.

Instead of

INSERT INTO foo (...) VALUES (...) RETURNING ROWID INTO :bind_var
SELECT ... FROM foo WHERE ROWID = :bind_var


...why not do the following?

SELECT primaryKey_seq.nextVal
INTO bind_var
FROM dual;

INSERT INTO foo (primaryKeyColumn,...) 
VALUES (bind_var,...);

SELECT ... FROM foo WHERE primaryKeyColumn = bind_var;
link|flag
vote up 1 vote down

How is the bind variable declared? In SQLPlus, you can't use a ROWID type, so there is type conversion going on. I wonder if it's possible that this is munging the ROWID value some of the time.

link|flag
vote up -1 vote down

Don't do this. It's bad data management.

link|flag
1  
You're going to have to explain yourself better than that. – Jason Baker Sep 29 at 19:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.