This how-to shows you how to generate an string,varchar, text sequence with the column sequence generator.
To generate data, you need to create a generator file that will describe the data to be generated.
The below data resource generator:
MaxRecordCount: 30
Columns:
- name: id
type: integer
comment: A id column to see easily the number of values generated
DataGenerator:
type: sequence
- name: seq_char
type: varchar
precision: 2
comment: A column with a sequence character generator
DataGenerator:
type: sequence
With the data print command, we can print the values generated.
Because a generator is just a data resource, you can use it in every data operation.