forked from zhaxiaodong9860/kettle-scheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kettle-scheduler.sql
277 lines (253 loc) · 15.1 KB
/
kettle-scheduler.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `k_category`
-- ----------------------------
DROP TABLE IF EXISTS `k_category`;
CREATE TABLE `k_category` (
`category_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '分类ID',
`category_name` varchar(50) DEFAULT NULL COMMENT '分类名称',
`add_time` datetime DEFAULT NULL COMMENT '添加时间',
`add_user` int(11) DEFAULT NULL COMMENT '添加者',
`edit_time` datetime DEFAULT NULL COMMENT '编辑时间',
`edit_user` int(11) DEFAULT NULL COMMENT '编辑者',
`del_flag` int(11) DEFAULT NULL COMMENT '是否删除(1:存在;0:删除)',
PRIMARY KEY (`category_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `k_job`
-- ----------------------------
DROP TABLE IF EXISTS `k_job`;
CREATE TABLE `k_job` (
`job_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '作业ID',
`category_id` int(11) DEFAULT NULL,
`job_name` varchar(50) DEFAULT NULL COMMENT '作业名称',
`job_description` varchar(500) DEFAULT NULL COMMENT '任务描述',
`job_type` int(11) DEFAULT NULL COMMENT '1:数据库资源库;2:上传的文件',
`job_path` varchar(200) DEFAULT NULL COMMENT '作业保存路径(可以是资源库中的路径也可以是服务器中保存作业文件的路径)',
`job_repository_id` int(11) DEFAULT NULL COMMENT '作业的资源库ID',
`job_quartz` int(11) DEFAULT '1' COMMENT '定时策略(外键ID)',
`job_record` int(11) DEFAULT NULL COMMENT '作业执行记录(外键ID)',
`job_log_level` varchar(10) DEFAULT NULL COMMENT '日志级别(basic,detail,error,debug,minimal,rowlevel)',
`job_status` int(11) DEFAULT NULL COMMENT '状态(1:正在运行;2:已停止)',
`add_time` datetime DEFAULT NULL COMMENT '添加时间',
`add_user` int(11) DEFAULT NULL COMMENT '添加者',
`edit_time` datetime DEFAULT NULL COMMENT '编辑时间',
`edit_user` int(11) DEFAULT NULL COMMENT '编辑者',
`del_flag` int(11) DEFAULT NULL COMMENT '是否删除(1:存在;0:删除)',
PRIMARY KEY (`job_id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `k_job_monitor`
-- ----------------------------
DROP TABLE IF EXISTS `k_job_monitor`;
CREATE TABLE `k_job_monitor` (
`monitor_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '监控作业ID',
`monitor_job` int(11) DEFAULT NULL COMMENT '监控的作业ID',
`monitor_success` int(11) DEFAULT NULL COMMENT '成功次数',
`monitor_fail` int(11) DEFAULT NULL COMMENT '失败次数',
`add_user` int(11) DEFAULT NULL COMMENT '添加人',
`monitor_status` int(11) DEFAULT NULL COMMENT '监控状态(是否启动,1:启动;2:停止)',
`run_status` text COMMENT '运行状态(起始时间-结束时间,起始时间-结束时间……)',
`last_execute_time` datetime DEFAULT NULL,
`next_execute_time` datetime DEFAULT NULL,
PRIMARY KEY (`monitor_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `k_job_record`
-- ----------------------------
DROP TABLE IF EXISTS `k_job_record`;
CREATE TABLE `k_job_record` (
`record_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '作业记录ID',
`record_job` int(11) DEFAULT NULL COMMENT '作业ID',
`start_time` datetime DEFAULT NULL COMMENT '启动时间',
`stop_time` datetime DEFAULT NULL COMMENT '停止时间',
`record_status` int(11) DEFAULT NULL COMMENT '任务执行结果(1:成功;2:失败)',
`log_file_path` varchar(100) DEFAULT NULL COMMENT '作业日志记录文件保存位置',
`add_user` int(11) DEFAULT NULL COMMENT '添加人',
PRIMARY KEY (`record_id`)
) ENGINE=InnoDB AUTO_INCREMENT=390 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `k_quartz`
-- ----------------------------
DROP TABLE IF EXISTS `k_quartz`;
CREATE TABLE `k_quartz` (
`quartz_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '任务ID',
`quartz_description` varchar(500) DEFAULT NULL COMMENT '任务描述',
`quartz_cron` varchar(100) DEFAULT NULL COMMENT '定时策略',
`add_time` datetime DEFAULT NULL COMMENT '添加时间',
`add_user` int(11) DEFAULT NULL COMMENT '添加者',
`edit_time` datetime DEFAULT NULL COMMENT '编辑时间',
`edit_user` int(11) DEFAULT NULL COMMENT '编辑者',
`del_flag` int(11) DEFAULT NULL COMMENT '是否删除(1:存在;0:删除)',
PRIMARY KEY (`quartz_id`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of k_quartz
-- ----------------------------
INSERT INTO `k_quartz` VALUES ('1', '立即执行一次', null, '2017-05-27 14:44:13', '1', '2017-05-27 14:44:13', null, '1');
INSERT INTO `k_quartz` VALUES ('2', '每周一0点执行一次', '0 0 0 ? * 2', '2017-05-27 14:56:38', '1', '2017-05-27 14:56:38', null, '1');
INSERT INTO `k_quartz` VALUES ('3', '每月1日0点执行一次', '0 0 0 1 * ?', '2017-05-27 14:56:38', '1', '2017-05-27 14:56:38', null, '1');
INSERT INTO `k_quartz` VALUES ('4', '每日0点执行一次', '0 0 0 * * ?', '2017-05-27 14:44:13', '1', '2017-05-27 14:44:15', null, '1');
INSERT INTO `k_quartz` VALUES ('31', '每分钟执行一次', '0 * * * * ?', '2018-10-16 14:12:44', '6', '2018-10-16 14:12:44', '6', '1');
-- ----------------------------
-- Table structure for `k_repository`
-- ----------------------------
DROP TABLE IF EXISTS `k_repository`;
CREATE TABLE `k_repository` (
`repository_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`repository_name` varchar(50) DEFAULT NULL COMMENT '资源库名称',
`repository_username` varchar(50) DEFAULT NULL COMMENT '登录用户名',
`repository_password` varchar(50) DEFAULT NULL COMMENT '登录密码',
`repository_type` varchar(10) DEFAULT NULL COMMENT '资源库数据库类型(MYSQL、ORACLE)',
`database_access` varchar(10) DEFAULT NULL COMMENT '资源库数据库访问模式("Native", "ODBC", "OCI", "Plugin", "JNDI")',
`database_host` varchar(50) DEFAULT NULL COMMENT '资源库数据库主机名或者IP地址',
`database_port` varchar(10) DEFAULT NULL COMMENT '资源库数据库端口号',
`database_name` varchar(20) DEFAULT NULL COMMENT '资源库数据库名称',
`database_username` varchar(50) DEFAULT NULL COMMENT '数据库登录账号',
`database_password` varchar(50) DEFAULT NULL COMMENT '数据库登录密码',
`add_time` datetime DEFAULT NULL COMMENT '添加时间',
`add_user` int(11) DEFAULT NULL COMMENT '添加者',
`edit_time` datetime DEFAULT NULL COMMENT '编辑时间',
`edit_user` int(11) DEFAULT NULL COMMENT '编辑者',
`del_flag` int(11) DEFAULT NULL COMMENT '是否删除(1:存在;0:删除)',
PRIMARY KEY (`repository_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `k_repository_type`
-- ----------------------------
DROP TABLE IF EXISTS `k_repository_type`;
CREATE TABLE `k_repository_type` (
`repository_type_id` int(11) NOT NULL,
`repository_type_code` varchar(30) DEFAULT NULL,
`repository_type_des` varchar(100) DEFAULT NULL,
PRIMARY KEY (`repository_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of k_repository_type
-- ----------------------------
INSERT INTO `k_repository_type` VALUES ('1', 'INGRES', 'Ingres');
INSERT INTO `k_repository_type` VALUES ('2', 'INTERBASE', 'Borland Interbase');
INSERT INTO `k_repository_type` VALUES ('3', 'INFOBRIGHT', 'Infobright');
INSERT INTO `k_repository_type` VALUES ('4', 'ORACLE', 'Oracle');
INSERT INTO `k_repository_type` VALUES ('5', 'EXTENDB', 'ExtenDB');
INSERT INTO `k_repository_type` VALUES ('6', 'MSACCESS', 'MS Access');
INSERT INTO `k_repository_type` VALUES ('7', 'SYBASE', 'Sybase');
INSERT INTO `k_repository_type` VALUES ('8', 'PALO', 'Palo MOLAP Server');
INSERT INTO `k_repository_type` VALUES ('9', 'INFORMIX', 'Informix');
INSERT INTO `k_repository_type` VALUES ('10', 'LucidDB', 'LucidDB');
INSERT INTO `k_repository_type` VALUES ('11', 'TERADATA', 'Teradata');
INSERT INTO `k_repository_type` VALUES ('12', 'UNIVERSE', 'UniVerse database');
INSERT INTO `k_repository_type` VALUES ('13', 'MONETDB', 'MonetDB');
INSERT INTO `k_repository_type` VALUES ('14', 'CACHE', 'Intersystems Cache');
INSERT INTO `k_repository_type` VALUES ('15', 'MSSQL', 'MS SQL Server');
INSERT INTO `k_repository_type` VALUES ('16', 'KettleThin', 'Pentaho Data Services');
INSERT INTO `k_repository_type` VALUES ('17', 'GREENPLUM', 'Greenplum');
INSERT INTO `k_repository_type` VALUES ('18', 'GENERIC', 'Generic database');
INSERT INTO `k_repository_type` VALUES ('19', 'IMPALA', 'Impala');
INSERT INTO `k_repository_type` VALUES ('20', 'SQLITE', 'SQLite');
INSERT INTO `k_repository_type` VALUES ('21', 'REMEDY-AR-SYSTEM', 'Remedy Action Request System');
INSERT INTO `k_repository_type` VALUES ('22', 'MONDRIAN', 'Native Mondrian');
INSERT INTO `k_repository_type` VALUES ('23', 'HIVE2', 'Hadoop Hive 2');
INSERT INTO `k_repository_type` VALUES ('24', 'NETEZZA', 'Netezza');
INSERT INTO `k_repository_type` VALUES ('25', 'VERTICA5', 'Vertica 5+');
INSERT INTO `k_repository_type` VALUES ('26', 'POSTGRESQL', 'PostgreSQL');
INSERT INTO `k_repository_type` VALUES ('27', 'EXASOL4', 'Exasol 4');
INSERT INTO `k_repository_type` VALUES ('28', 'HYPERSONIC', 'Hypersonic');
INSERT INTO `k_repository_type` VALUES ('29', 'AS/400', 'AS/400');
INSERT INTO `k_repository_type` VALUES ('30', 'ORACLERDB', 'Oracle RDB');
INSERT INTO `k_repository_type` VALUES ('31', 'DBASE', 'dBase III, IV or 5');
INSERT INTO `k_repository_type` VALUES ('32', 'IMPALASIMBA', 'Cloudera Impala');
INSERT INTO `k_repository_type` VALUES ('33', 'KINGBASEES', 'KingbaseES');
INSERT INTO `k_repository_type` VALUES ('34', 'SAPR3', 'SAP ERP System');
INSERT INTO `k_repository_type` VALUES ('35', 'SQLBASE', 'Gupta SQL Base');
INSERT INTO `k_repository_type` VALUES ('36', 'DERBY', 'Apache Derby');
INSERT INTO `k_repository_type` VALUES ('37', 'VERTICA', 'Vertica');
INSERT INTO `k_repository_type` VALUES ('38', 'INFINIDB', 'Calpont InfiniDB');
INSERT INTO `k_repository_type` VALUES ('39', 'HIVE', 'Hadoop Hive');
INSERT INTO `k_repository_type` VALUES ('40', 'MYSQL', 'MySQL');
INSERT INTO `k_repository_type` VALUES ('41', 'MSSQLNATIVE', 'MS SQL Server (Native)');
INSERT INTO `k_repository_type` VALUES ('42', 'H2', 'H2');
INSERT INTO `k_repository_type` VALUES ('43', 'SAPDB', 'MaxDB (SAP DB)');
INSERT INTO `k_repository_type` VALUES ('44', 'SPARKSIMBA', 'SparkSQL');
INSERT INTO `k_repository_type` VALUES ('45', 'VECTORWISE', 'Ingres VectorWise');
INSERT INTO `k_repository_type` VALUES ('46', 'DB2', 'IBM DB2');
INSERT INTO `k_repository_type` VALUES ('47', 'NEOVIEW', 'Neoview');
INSERT INTO `k_repository_type` VALUES ('48', 'SYBASEIQ', 'SybaseIQ');
INSERT INTO `k_repository_type` VALUES ('49', 'REDSHIFT', 'Redshift');
INSERT INTO `k_repository_type` VALUES ('50', 'FIREBIRD', 'Firebird SQL');
INSERT INTO `k_repository_type` VALUES ('51', 'OpenERPDatabaseMeta', 'OpenERP Server');
-- ----------------------------
-- Table structure for `k_trans`
-- ----------------------------
DROP TABLE IF EXISTS `k_trans`;
CREATE TABLE `k_trans` (
`trans_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '转换ID',
`category_id` int(11) DEFAULT NULL,
`trans_name` varchar(50) DEFAULT NULL COMMENT '转换名称',
`trans_description` varchar(500) DEFAULT NULL COMMENT '转换描述',
`trans_type` int(11) DEFAULT NULL COMMENT '1:数据库资源库;2:上传的文件',
`trans_path` varchar(200) DEFAULT NULL COMMENT '转换保存路径(可以是资源库中的路径也可以是服务器中保存作业文件的路径)',
`trans_repository_id` int(11) DEFAULT NULL COMMENT '转换的资源库ID',
`trans_quartz` int(11) DEFAULT '1' COMMENT '定时策略(外键ID)',
`trans_record` int(11) DEFAULT NULL COMMENT '转换执行记录(外键ID)',
`trans_log_level` varchar(10) DEFAULT NULL COMMENT '日志级别(basic,detail,error,debug,minimal,rowlevel)',
`trans_status` int(11) DEFAULT NULL COMMENT '状态(1:正在运行;2:已停止)',
`add_time` datetime DEFAULT NULL COMMENT '添加时间',
`add_user` int(11) DEFAULT NULL COMMENT '添加者',
`edit_time` datetime DEFAULT NULL COMMENT '编辑时间',
`edit_user` int(11) DEFAULT NULL COMMENT '编辑者',
`del_flag` int(11) DEFAULT NULL COMMENT '是否删除(1:存在;0:删除)',
PRIMARY KEY (`trans_id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `k_trans_monitor`
-- ----------------------------
DROP TABLE IF EXISTS `k_trans_monitor`;
CREATE TABLE `k_trans_monitor` (
`monitor_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '监控转换ID',
`monitor_trans` int(11) DEFAULT NULL COMMENT '监控的转换的ID',
`monitor_success` int(11) DEFAULT NULL COMMENT '成功次数',
`monitor_fail` int(11) DEFAULT NULL COMMENT '失败次数',
`add_user` int(11) DEFAULT NULL COMMENT '添加人',
`monitor_status` int(11) DEFAULT NULL COMMENT '监控状态(是否启动,1:启动;2:停止)',
`run_status` text COMMENT '运行状态(起始时间-结束时间,起始时间-结束时间……)',
`last_execute_time` datetime DEFAULT NULL,
`next_execute_time` datetime DEFAULT NULL,
PRIMARY KEY (`monitor_id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `k_trans_record`
-- ----------------------------
DROP TABLE IF EXISTS `k_trans_record`;
CREATE TABLE `k_trans_record` (
`record_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '转换记录ID',
`record_trans` int(11) DEFAULT NULL COMMENT '转换ID',
`start_time` datetime DEFAULT NULL COMMENT '启动时间',
`stop_time` datetime DEFAULT NULL COMMENT '停止时间',
`record_status` int(11) DEFAULT NULL COMMENT '任务执行结果(1:成功;2:失败)',
`log_file_path` varchar(100) DEFAULT NULL COMMENT '转换日志记录文件保存位置',
`add_user` int(11) DEFAULT NULL COMMENT '添加人',
PRIMARY KEY (`record_id`)
) ENGINE=InnoDB AUTO_INCREMENT=546 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `k_user`
-- ----------------------------
DROP TABLE IF EXISTS `k_user`;
CREATE TABLE `k_user` (
`u_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '用户ID',
`u_nickname` varchar(50) DEFAULT NULL COMMENT '用户昵称',
`u_email` varchar(30) DEFAULT NULL COMMENT '用户邮箱',
`u_phone` varchar(50) DEFAULT NULL COMMENT '用于电话',
`u_account` varchar(50) DEFAULT NULL COMMENT '用户账号',
`u_password` varchar(50) DEFAULT NULL COMMENT '用户密码',
`add_time` datetime DEFAULT NULL COMMENT '添加时间',
`add_user` int(11) DEFAULT NULL COMMENT '添加者',
`edit_time` datetime DEFAULT NULL COMMENT '编辑时间',
`edit_user` int(11) DEFAULT NULL COMMENT '编辑者',
`del_flag` int(11) DEFAULT NULL COMMENT '是否删除(1:存在;0:删除)',
PRIMARY KEY (`u_id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of k_user
-- ----------------------------
INSERT INTO `k_user` VALUES ('1', 'admin', null, null, 'admin', 'b1276925a59fd8d9e1a53c10637f271d', null, null, null, null, '1');