DatabaseSequence

Summary

The DatabaseSequence object contains properties that describe a database sequence.

Discussion

DatabaseSequence objects cannot be initialized directly. Database sequence properties can be accessed through the arcpy.da.ListDatabaseSequences function.

Properties

PropertyExplanationData Type
currentValue
(Read Only)

The current value of the database sequence.

Integer
incrementValue
(Read Only)

The value by which the sequence numbers will increment.

Integer
name
(Read Only)

The name of the database sequence.

String
owner
(Read Only)

The owner of the sequence. This is applicable to enterprise databases only. File geodatabases will return an empty string.

String
startValue
(Read Only)

The starting number of the sequence.

Integer