Oracle备注天生工具,可能将如下剧本自动发生备注,在网上找了良久没找到,自己写了一个,比力重大,提供给需要的同伙
--零星配置装备部署表变更日志
--drop table Config_log;
CREATE TABLE Config_log
(
ConfigName Varchar2(64) not null, --零星参数名
ConfigType Int not null, --配置装备部署参数分类
ConfigClass Int not null, --参数级别(0=不应承更正,1=应承客户化更正)
ConfigValue Varchar2(64) not null, --零星参数值
Remarks Varchar2(255), --备注
SerialID int, --更正挨次号
Modiattr varchar(1), --更正属性
Moditime Date default sysdate, --更正光阴
Modiopid Varchar2(32) not null, --更小人
SheetID Varchar2(20),
constraint pk_Config_log PRIMARY KEY(SerialID)
);
备注如下:
--零星配置装备部署表变更日志
/************************************************************************************/
co妹妹ent on table Config_log is '零星配置装备部署表变更日志';
--------------------------------------------------------------------------------------
co妹妹ent on column Config_log.ConfigName is '零星参数名';
co妹妹ent on column Config_log.ConfigType is '配置装备部署参数分类';
co妹妹ent on column Config_log.ConfigClass is '参数级别(0=不应承更正,1=应承客户化更正)';
co妹妹ent on column Config_log.ConfigValue is '零星参数值';
co妹妹ent on column Config_log.Remarks is '备注';
co妹妹ent on column Config_log.SerialID is '更正挨次号';
co妹妹ent on column Config_log.Modiattr is '更正属性';
co妹妹ent on column Config_log.Moditime is '更正光阴';
co妹妹ent on column Config_log.Modiopid is '更小人';
/************************************************************************************/