• SQL Sequence is modeled as UML Property with «Sequence» stereotype applied. For the sake of compactness, sequences are displayed with the «seq» keyword (instead of the long form - «Sequence») on the diagram.
  • Autoincrement parameters (start value, increment, etc.) data is stored as a separate model element - UML OpaqueExpression, with «IdentitySpecifier» stereotype applied. This element is set as defaultValue of the Property - either sequence property (when standalone sequences are modeled) or column property (when autoincrement table columns are modeled).

SQL has facilities to generate sequences of numbers (0, 1, 2, 3, ...). These sequences are often used to fill in values for identifier columns - to uniquely number the row data in the table. There are 2 separate facilities.

  • Standalone sequence object. This generator is not tied to any other object. Programer must explicitly query it to get the next value from the sequence and then use the retrieved value appropriately (usually in the INSERT statement to insert value for id column). Usually there are separate sequences for each table; sometimes the same sequence is reused for several columns.
  • Autoincrement columns. Column of the table can be designated as autoincrement. When row is inserted into the table, if value of such column is not explicitly provided, one is generated automatically.
Example of sequence and autoincrement column modeling.

Cameo Data Modeler has modeling support for both kinds of sequences.


To create a standalone sequence


Do one of the following:

  • Select the GLOBALS element shape on a diagram pane and click an appropriate smart manipulation button.
  • Right-click the GLOBALS element in the Containment tree and on its shortcut menu, select New Element > Sequence.

Since a standalone sequence is modeled as a UML Property, it cannot be placed directly into the Schema package.

Autoincrement columns are also supported. To mark a column as autoincrement, you must switch the Default Value property value type from value expression to identity specifier.


To mark a column as autoincrement


  1. Open the column Specification window.
  2. Select the Default Value property.
  3. Click the black-arrowed button next to the property value and select Value Specification > IdentitySpecifier as shown in the following figure.

Marking column as autoincrement.

After the switching, the Autoincrement property group appears in the Specification window of the column allowing to specify autoincrement data (start value, increment, etc.).

Additional properties in autoincrement column’s Specification window.


Besides the standard SQL element properties and sequences, an autoincrement column has the following properties available in the Autoincrement property group of the Specification window.

Property nameDescription
Start ValueStarting value of the sequence counter.
IncrementDelta value of the sequence counter (can be negative - to count down).
MinimumLower bound of the counter (if any).
MaximumUpper bound of the counter (if any)
Cycle OptionThe counter can “wrap around” when it reaches the maximum (or minimum - for downwards counters)

Additionally, sequence has an Identity field and column has the Default Value field, where textual representation of the counter options can be entered. This feature can be used for nice displaying of the counter configuration in the diagrams (the start, inc, min, max field data is normally not visible in the diagram). Some notation convention should be adopted how to map the counter data into the text representation. For example, it could be: {<start>, <inc>, <min>-<max>, <c>}. Then the counter from 0 with +1 increment, min max of 0 and 1000 and cycle option would be displayed as “{0, +1, 0-1000, C}” string. At the moment this text representation is not automatically connected to the counter field values, so synchronization has to be done by hand.