Subject Re: [IBDI] Generator
Author Robert F. Tulloch
Hi:

> Using generator named G, table named T, generated field named F, to assign
> all existing records to generated values starting with 100 and incrementing
> by one and leaving the generator ready to set the next generated value
> properly, try:
> SET GENERATOR G TO 100;
> UPDATE TABLE T SET F=GEN_ID(G,1);


Thanks. Worked perfectly.

Best regards