It has been added to V2R5, but different from tdatgod's description (hey, he's probably not omniscient ;-)
They implemented sequences (only on column level, no CREATE SEQUENCE) in SQL:1999 style with a syntax similar to DB2 and Oracle, e.g.:
create table foo(
seq integer generated by default as identity (start with 1 increment by 1)
...
- data types may be integers or decimal up to dec(18,0)
- it's guaranteed to be unique if it's GENERATED ALWAYS and there's no CYCLE option
- if you insert rows in a batch the numbering usually doesn't reflect the order of rows in your input file
- there may be gaps
- FastLoad/MultiLoad are not yet supported (V2R5.1)
Check the SQL Manual Vol. 4, Chapter 1, CREATE TABLE (Column Definition Clause) for details.
Dieter