Is Progress ROWID
unique across the whole Progress database?
Meaning the same ROWID
cannot exist in other tables - it's always unique?
So you could fetch a single record from a big database by only knowing it's ROWID
if you just search every table?
According to the documentation :
Thus, if all your tables are in the (default) schema area, or if you created a storage area for all your tables, you could technically fetch any record by knowing its
ROWID
.Note that a
ROWID
can change if its corresponding record is modified or if a column of its table is modified.