How to create a sequence, so it can be used as primary key for an object (Table):
As simple as this:
CREATE
SEQUENCE
HR
.
FAMILY_ID_SEQ
START
WITH
1
MAXVALUE
999999999999999
MINVALUE
1
NOCYCLE
NOCACHE
NOORDER;