Answer:
An Oracle sequence uses the identity column property to automatically number rows.
Explanation:
An Oracle sequence is a tool that can be used to generate a number sequence. Oracle has the capacity to help you create an auto-number field by using one of its tools called sequence.
A sequence is an object in Oracle that is used to generate a number sequence for input to a table. This is required when you need to generate primary key values by the use of identity columns.
So, Oracle sequence can automatically number rows by the use of identity columns.