ROWID Pseudocolumn
TimesTen assigns a unique id called a rowid to each row stored in a table. This rowid (called a ROWID pseudocolumn) has data type ROWID.
Condier the following:
-
You can examine a rowid by querying the
ROWIDpseudocolumn. -
The
ROWIDis a pseudocolumn (not an actual column) and thus does not require database space. You cannot update, index, or dropROWID. -
The
ROWIDvalue persists throughout the life of the table row. -
ROWIDvalues persist through recovery, backup and restore operations. However copies of rows that are created as a result of replication or as a result of runningttMigrateto migrate rows out of the database and then back into the database or runningttBulkCpto copy rows out of the database and then back into the database have differentROWIDvalues than the original rows.
For more information, see Expression Specification and ROWID Data Type.