I thought this would be simple, but I can\'t seem to use AUTO_INCREMENT in my db2 database. I did some searching and people seem to be using \"Generated by Default\", but t
Added a few optional parameters for creating "future safe" sequences.
CREATE SEQUENCE START WITH 1 INCREMENT BY 1 NO MAXVALUE NO CYCLE CACHE 10;