在使用文本导入器批量导入数据时,如果需要设置主键自增长,可以先创建一个序列:
create sequence SEQ_Userinf start with 1 increment by 1
nomaxvalue
nominvalue
nocache;
然后在导入时设置主键字段的sql函数为:SEQ_Userinf.nextval就可以了。
2023-12-19 18:24:58
在使用文本导入器批量导入数据时,如果需要设置主键自增长,可以先创建一个序列:
create sequence SEQ_Userinf start with 1 increment by 1
nomaxvalue
nominvalue
nocache;
然后在导入时设置主键字段的sql函数为:SEQ_Userinf.nextval就可以了。