博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#.NET通用权限管理在DB2数据库上运行的脚本参考 - 序列创建脚本参考
阅读量:5909 次
发布时间:2019-06-19

本文共 3555 字,大约阅读时间需要 11 分钟。

  hot3.png

C#.NET通用权限管理DB2数据库上运行时,需要创建一些序列,脚本如下:

若您用到了DB2数据库直接运行这个脚本就可以了,不用每个都自己创建了。

create sequence SEQ_BASE_TABLECOLUMNS 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_SEQUENCE 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_LOG 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_EXCEPTION 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_FILE 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_FOLDER 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_ITEMS 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_MESSAGE 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_MODULE 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_ORGANIZE 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_PARAMETER 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_PERMISSIONITEM 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_PERMISSIONSCOPE 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_PERMISSION 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_ROLE 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_STAFF 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_USERADDRESS 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_USERORGANIZE 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_USERROLE 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_USER 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_WORKFLOWACTIVITY 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_WORKFLOWCURRENT 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_WORKFLOWHISTORY 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;
create sequence SEQ_BASE_WORKFLOWPROCESS 
as
 bigint start with 
1000000
 increment by 
1
 minvalue 
10000
 maxvalue 
99999999999999999
 cycle cache 
20
 order;

 

转载于:https://my.oschina.net/iwenr/blog/227922

你可能感兴趣的文章
SVN Hooks的介绍及使用
查看>>
axios 拦截 , 页面跳转, token 验证(自己摸索了一天搞出来的)
查看>>
如何将经纬度利用Google Map API显示C# VS2005 Sample Code
查看>>
如何合理的规划jvm性能调优
查看>>
莫比乌斯反演初步与实际应用
查看>>
开发人员可以提高效率的chrome插件推荐
查看>>
1.4.运维平台之硬件CMDB
查看>>
性能测试分享:性能测试工具开发的案例分享(下)
查看>>
微信小程序如何像webview一样加载html5网页
查看>>
apache和nginx的区别
查看>>
CentOs6.5系统下MySQL-5.7.19安装
查看>>
ms sql convert的使用细节
查看>>
精通Java设计模式从初见到相爱之命令设计模式(15)
查看>>
linux sar命令详解
查看>>
使用Java8实现自己的个性化搜索引擎
查看>>
通过Gearman实现MySQL到Redis的数据复制
查看>>
eclipse 自动为getter和setter添加注释
查看>>
oracle--数据库
查看>>
kafka 监控之Mx4jLoader
查看>>
wireshark windows 编译
查看>>