Hi,
I made it this way: I created this sequence in Schema D06SP04D
In creating Sequence:
CREATE SEQUENCE equip
START WITH 70000
INCREMENT BY 1
NOCACHE
NOCYCLE;
Then I link this to other schema like C08ML03B
update C08ML03B.autoke y
set seed =D06SP04D.equip .nextval
where tbname ='ASSETS'
Is there anything wrong with this?
Thanks.
I made it this way: I created this sequence in Schema D06SP04D
In creating Sequence:
CREATE SEQUENCE equip
START WITH 70000
INCREMENT BY 1
NOCACHE
NOCYCLE;
Then I link this to other schema like C08ML03B
update C08ML03B.autoke y
set seed =D06SP04D.equip .nextval
where tbname ='ASSETS'
Is there anything wrong with this?
Thanks.
Comment