Tagged Questions
8
votes
3answers
4k 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?
2
votes
3answers
402 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 ...
2
votes
3answers
499 views
1
vote
1answer
207 views
rowid in SQLITE3 and Android
I perform an insert on a database and I want to know what the rowid is for that insert.
Does this accomplish the task:
Uri uri = ContentResolver.insert(url,values); //Make insert
int rowid= ...
0
votes
3answers
398 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 ...