Tagged Questions

1
vote
8answers
150 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' …
0
votes
3answers
120 views

Problem when select’ing by ROWID inside procedure

Hello, 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 bas …
1
vote
1answer
77 views

Is there any way using which I can get Last Updated row Id

Hi All, Is there any way using which I can get the last row I have updated of the table. For Ex:- my table has 1000 records in it. I have updated the value of 500th record of ta …
1
vote
4answers
1k views

Equivalent of Oracle’s RowID in SQL Server

What's the equivalent of Oracle's RowID in SQL Server?
2
votes
3answers
198 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 …
0
votes
4answers
2k 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 determin …
4
votes
3answers
1k 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 …
0
votes
2answers
139 views

Will rowid be reused?

In database, such as Informix, DB2, Oracle etc, will the rowid be reused pls?