Editorial / Best Answer
Indu
Quote
A ROWID is created by Oracle for each new row in every table, it is a pseudo column that has a value for every row in a table. The ROWID gives us the physical address of a row and is the fastest way to access any row. The ROWID contains 3 bits of information, they are :-
- The block within the database file.
- Row # within the block.
- Database file ID.
An example could be :-
000088C9.0191.0002
The ROWID has three important uses, it is :-
- The fastest path to any row.
- A way of speeding the COMMIT process in application code.
- Unique identifiers of any given row.
Unquote
What is the fastest way of accessing a row in a table
Editorial / Best Answer
InduProfile Answers by Indu Questions by Indu
Quote
A ROWID is created by Oracle for each new row in every table, it is a pseudo column that has a value for every row in a table. The ROWID gives us the physical address of a row and is the fastest way to access any row. The ROWID contains 3 bits of information, they are :-
An example could be :-
000088C9.0191.0002
The ROWID has three important uses, it is :-
Unquote
Related Answered Questions
Related Open Questions