Generators
A generator is a database variable that stores a integer value. The generator is useful for example to assign unique values to columns (automatic primary keys).
You can create, alter and remove generators selecting the generator item in database form.
You can obtain and increment a generator value in sql using GENID(generator,increment) function.
Generator values are isolated from transaction control, so two transactions can't get the same generator value.