Multiple choice technology databases It is a good practice to use ROWID as a table's primary key. True False Reveal answer Fill a bubble to check yourself B Correct answer Explanation ROWID is a physical address that changes if the row is exported/imported, moved due to table reorganization, or in certain partition operations. Using it as a primary key breaks data integrity. Use surrogate keys (sequences) or natural keys instead.