更新时间:2023-07-25 GMT+08:00
HINT- ALLOW_ALTER_RERUN
命令格式:
/*+ allow_alter_rerun=true*/<ALTER TABLE的命令>
描述:
使用该hint可支持命令重复执行不报错,共支持八种alter table的命令形式: add column、modify column、drop column、add index、drop index、change column、add partition和drop partition。
示例:
/*+ allow_alter_rerun=true*/ALTER TABLE aaa_tb ADD schoolroll varchar(128) not null comment '学籍'
父主题: 实用SQL语句