脚本助手 V1.0

大小:162KB 时间:2025-05-02 02:02:12

语言:简体中文 环境:WinXP, Win7

请分享页面到电脑端打开

注:本软件为PC版,PC软件不适用于移动端。

简介

赵城藏软件站数据库类分类下的脚本助手 V1.0,文件大小为162KB,适用系统为WinXP, Win7,以下为介绍或使用方法。

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)

);


备注如下:


--系统配置表变更日志

/************************************************************************************/

comment on table Config_log is "系统配置表变更日志";

--------------------------------------------------------------------------------------

comment on column Config_log.ConfigName is "系统参数名";

comment on column Config_log.ConfigType is "配置参数分类";

comment on column Config_log.ConfigClass is "参数级别(0=不允许修改,1=允许客户化修改)";

comment on column Config_log.ConfigValue is "系统参数值";

comment on column Config_log.Remarks is "备注";

comment on column Config_log.SerialID is "修改顺序号";

comment on column Config_log.Modiattr is "修改属性";

comment on column Config_log.Moditime is "修改时间";

comment on column Config_log.Modiopid is "修改人";



/************************************************************************************/
数据库类脚本编辑

最新文章

评分及评论

4.5 满分5.0分