Tagged Questions

7
votes
3answers
3k views

What can cause an Oracle ROWID to change?

AFAIK ROWID in Oracle represents physical location of a record in appropriate datafile. In which cases ROWID of a record may change ? The one known to me is UPDATE on partitioned table that "moves" ...
6
votes
5answers
1k views

ROWID (oracle) - any use for it?

My understanding is that ROWID is a unique value for each row in the result returned by a query. why we need this ROWID ?( there is already ROWNUM is ORACLE). Have any one used ROWID in sql query?
3
votes
1answer
146 views

Oracle Database Change Notification and ROWID's

Oracle's database change notification feature sends rowids (physical row addresses) on row inserts, updates and deletes. As indicated in the oracle's documentation this feature can be used by the ...
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 ...
2
votes
3answers
390 views

Is there an open-source SQL database that has the concept of Oracle's “rowid” pseudo-column?

I am aware that MySQL and PostgreSQL[1] do not have that concept, so I am interested in finding out of there is an open-source SQL database that does have the concept. [1] It was later pointed out ...
1
vote
1answer
25 views

viable to perform oracle table rollback by using rowid?

i am performing oracle table rollback using rowId: so before each data injection, i record the max rowid of the table. If anything went wrong, i will delete from table where rowid > max rowid ...
1
vote
2answers
69 views

How to use ROWID with an Oracle Join View

I am trying to create a unique identifier for every row of a view. The view I have joins a lot of tables and therefore no one table's primary key will help me identify the row. Doing a google search ...
1
vote
2answers
76 views

Same ROWID in Oracle Clustered Tables

Oracle ROWID is said to be unique within a table. I didn't understand how can two rows of two different tables stored in the same cluster have the same rowid since the last three characters of the ...
1
vote
1answer
67 views

Insert new row containing a row id

I need to insert a new row with a new rowID. Does oracle do this automatically or is there something i need to use. I know with sequences you can do mysequence.nextVal or something similar. Is there ...
1
vote
5answers
1k views

HOW TO get records with given rowid list IN STRING from a table (Oracle)?

Any one can help me to resolve the FIXME ? -- Task: Get records with given rowid IN STRING from a table. -- NOTICE: I do not known where the given rowid comes from. -- OUTPUT 'AAAAB0AABAAAAOhAAA' ...
1
vote
1answer
384 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 ...
1
vote
1answer
303 views

Oracle ROWID as function/procedure parameter

I just would like to hear different opinions about ROWID type usage as input parameter of any function or procedure. I have normally used and seen primary keys used as input parameters but is there ...
1
vote
2answers
435 views

Oracle Join View - which rowid is used

CREATE VIEW EVENT_LOCATION ("EVENT_ID", "STREET", "TOWN") AS SELECT A.EVENT_ID, A.STREET, A.TOWN FROM TBLEVENTLOCATION A JOIN TBLEVENTS B ON A.EVENT_ID = B.EVENT_ID WHERE B.REGION = 'South'; ...
1
vote
6answers
11k views

SQL to return the rownum of a specific row? (using Oracle db)

In Oracle 10g, I have this SQL: select dog.id as dogId from CANINES dog order by dog.codename asc which returns: id -- 204 203 206 923 I want to extend this query to determine the oracle rownum ...
0
votes
3answers
392 views

Problem when select'ing by ROWID inside procedure

I've spent hours trying to find a fix to this problem, but since I'm unable to find I've decided to ask here. I'm doing a procedure to retrieve information from a table based on the row's ROWID and ...