• kettle连接达梦资源库-达梦资源库初始化SQL


    kettle连接达梦资源库经常性出现连接成功,但是未自动初始化SQL。所以这里特地提供可用的SQL。本人已经在DM8内亲测成功,已正常使用。

    直接上文(复制SQL语句,直接在达梦数据库运行即可):

    1. create table R_CLUSTER
    2. (
    3. id_cluster INTEGER not null,
    4. name VARCHAR2(255),
    5. base_port VARCHAR2(255),
    6. sockets_buffer_size VARCHAR2(255),
    7. sockets_flush_interval VARCHAR2(255),
    8. sockets_compressed CHAR(1),
    9. dynamic_cluster CHAR(1)
    10. )
    11. ;
    12. alter table R_CLUSTER
    13. add primary key (ID_CLUSTER);
    14. create table R_CLUSTER_SLAVE
    15. (
    16. id_cluster_slave INTEGER not null,
    17. id_cluster INTEGER,
    18. id_slave INTEGER
    19. )
    20. ;
    21. alter table R_CLUSTER_SLAVE
    22. add primary key (ID_CLUSTER_SLAVE);
    23. create table R_CONDITION
    24. (
    25. id_condition INTEGER not null,
    26. id_condition_parent INTEGER,
    27. negated CHAR(1),
    28. operator VARCHAR2(255),
    29. left_name VARCHAR2(255),
    30. condition_function VARCHAR2(255),
    31. right_name VARCHAR2(255),
    32. id_value_right INTEGER
    33. )
    34. ;
    35. alter table R_CONDITION
    36. add primary key (ID_CONDITION);
    37. create table R_DATABASE
    38. (
    39. id_database INTEGER not null,
    40. name VARCHAR2(255),
    41. id_database_type INTEGER,
    42. id_database_contype INTEGER,
    43. host_name VARCHAR2(255),
    44. port INTEGER,
    45. username VARCHAR2(255),
    46. password VARCHAR2(255),
    47. servername VARCHAR2(255),
    48. data_tbs VARCHAR2(255),
    49. index_tbs VARCHAR2(255),
    50. database_name VARCHAR2(255)
    51. )
    52. ;
    53. alter table R_DATABASE
    54. add primary key (ID_DATABASE);
    55. create table R_DATABASE_ATTRIBUTE
    56. (
    57. id_database_attribute INTEGER not null,
    58. id_database INTEGER,
    59. code VARCHAR2(255),
    60. value_str VARCHAR2(255)
    61. )
    62. ;
    63. create unique index IDX_RDAT on R_DATABASE_ATTRIBUTE (ID_DATABASE, CODE);
    64. alter table R_DATABASE_ATTRIBUTE
    65. add primary key (ID_DATABASE_ATTRIBUTE);
    66. create table R_DATABASE_CONTYPE
    67. (
    68. id_database_contype INTEGER not null,
    69. code VARCHAR2(255),
    70. description VARCHAR2(255)
    71. )
    72. ;
    73. alter table R_DATABASE_CONTYPE
    74. add primary key (ID_DATABASE_CONTYPE);
    75. create table R_DATABASE_TYPE
    76. (
    77. id_database_type INTEGER not null,
    78. code VARCHAR2(255),
    79. description VARCHAR2(255)
    80. )
    81. ;
    82. alter table R_DATABASE_TYPE
    83. add primary key (ID_DATABASE_TYPE);
    84. create table R_DEPENDENCY
    85. (
    86. id_dependency INTEGER not null,
    87. id_transformation INTEGER,
    88. id_database INTEGER,
    89. table_name VARCHAR2(255),
    90. field_name VARCHAR2(255)
    91. )
    92. ;
    93. alter table R_DEPENDENCY
    94. add primary key (ID_DEPENDENCY);
    95. create table R_DIRECTORY
    96. (
    97. id_directory INTEGER not null,
    98. id_directory_parent INTEGER,
    99. directory_name VARCHAR2(255)
    100. )
    101. ;
    102. create unique index IDX_RDIR on R_DIRECTORY (ID_DIRECTORY_PARENT, DIRECTORY_NAME);
    103. alter table R_DIRECTORY
    104. add primary key (ID_DIRECTORY);
    105. create table R_ELEMENT
    106. (
    107. id_element INTEGER not null,
    108. id_element_type INTEGER,
    109. name VARCHAR2(1999)
    110. )
    111. ;
    112. alter table R_ELEMENT
    113. add primary key (ID_ELEMENT);
    114. create table R_ELEMENT_ATTRIBUTE
    115. (
    116. id_element_attribute INTEGER not null,
    117. id_element INTEGER,
    118. id_element_attribute_parent INTEGER,
    119. attr_key VARCHAR2(255),
    120. attr_value VARCHAR2(255)
    121. )
    122. ;
    123. alter table R_ELEMENT_ATTRIBUTE
    124. add primary key (ID_ELEMENT_ATTRIBUTE);
    125. create table R_ELEMENT_TYPE
    126. (
    127. id_element_type INTEGER not null,
    128. id_namespace INTEGER,
    129. name VARCHAR2(1999),
    130. description VARCHAR2(255)
    131. )
    132. ;
    133. alter table R_ELEMENT_TYPE
    134. add primary key (ID_ELEMENT_TYPE);
    135. create table R_JOB
    136. (
    137. id_job INTEGER not null,
    138. id_directory INTEGER,
    139. name VARCHAR2(255),
    140. job_version VARCHAR2(255),
    141. job_status INTEGER,
    142. id_database_log INTEGER,
    143. table_name_log VARCHAR2(255),
    144. created_user VARCHAR2(255),
    145. created_date DATE,
    146. modified_user VARCHAR2(255),
    147. modified_date DATE,
    148. use_batch_id CHAR(1),
    149. pass_batch_id CHAR(1),
    150. use_logfield CHAR(1),
    151. shared_file VARCHAR2(255),
    152. description VARCHAR2(255),
    153. extended_description VARCHAR2(255)
    154. )
    155. ;
    156. alter table R_JOB
    157. add primary key (ID_JOB);
    158. create table R_JOBENTRY
    159. (
    160. id_jobentry INTEGER not null,
    161. id_job INTEGER,
    162. id_jobentry_type INTEGER,
    163. name VARCHAR2(255),
    164. description VARCHAR2(255)
    165. )
    166. ;
    167. alter table R_JOBENTRY
    168. add primary key (ID_JOBENTRY);
    169. create table R_JOBENTRY_ATTRIBUTE
    170. (
    171. id_jobentry_attribute INTEGER not null,
    172. id_job INTEGER,
    173. id_jobentry INTEGER,
    174. nr INTEGER,
    175. code VARCHAR2(255),
    176. value_num NUMBER(13,2),
    177. value_str VARCHAR2(255)
    178. )
    179. ;
    180. create unique index IDX_RJEA on R_JOBENTRY_ATTRIBUTE (ID_JOBENTRY_ATTRIBUTE, CODE, NR);
    181. alter table R_JOBENTRY_ATTRIBUTE
    182. add primary key (ID_JOBENTRY_ATTRIBUTE);
    183. create table R_JOBENTRY_COPY
    184. (
    185. id_jobentry_copy INTEGER not null,
    186. id_jobentry INTEGER,
    187. id_job INTEGER,
    188. id_jobentry_type INTEGER,
    189. nr INTEGER,
    190. gui_location_x INTEGER,
    191. gui_location_y INTEGER,
    192. gui_draw CHAR(1),
    193. parallel CHAR(1)
    194. )
    195. ;
    196. alter table R_JOBENTRY_COPY
    197. add primary key (ID_JOBENTRY_COPY);
    198. create table R_JOBENTRY_DATABASE
    199. (
    200. id_job INTEGER,
    201. id_jobentry INTEGER,
    202. id_database INTEGER
    203. )
    204. ;
    205. create index IDX_RJD1 on R_JOBENTRY_DATABASE (ID_JOB);
    206. create index IDX_RJD2 on R_JOBENTRY_DATABASE (ID_DATABASE);
    207. create table R_JOBENTRY_TYPE
    208. (
    209. id_jobentry_type INTEGER not null,
    210. code VARCHAR2(255),
    211. description VARCHAR2(255)
    212. )
    213. ;
    214. alter table R_JOBENTRY_TYPE
    215. add primary key (ID_JOBENTRY_TYPE);
    216. create table R_JOB_ATTRIBUTE
    217. (
    218. id_job_attribute INTEGER not null,
    219. id_job INTEGER,
    220. nr INTEGER,
    221. code VARCHAR2(255),
    222. value_num INTEGER,
    223. value_str VARCHAR2(255)
    224. )
    225. ;
    226. create unique index IDX_JATT on R_JOB_ATTRIBUTE (ID_JOB, CODE, NR);
    227. alter table R_JOB_ATTRIBUTE
    228. add primary key (ID_JOB_ATTRIBUTE);
    229. create table R_JOB_HOP
    230. (
    231. id_job_hop INTEGER not null,
    232. id_job INTEGER,
    233. id_jobentry_copy_from INTEGER,
    234. id_jobentry_copy_to INTEGER,
    235. enabled CHAR(1),
    236. evaluation CHAR(1),
    237. unconditional CHAR(1)
    238. )
    239. ;
    240. alter table R_JOB_HOP
    241. add primary key (ID_JOB_HOP);
    242. create table R_JOB_LOCK
    243. (
    244. id_job_lock INTEGER not null,
    245. id_job INTEGER,
    246. id_user INTEGER,
    247. lock_date DATE,
    248. lock_message VARCHAR2(1000)
    249. )
    250. ;
    251. alter table R_JOB_LOCK
    252. add primary key (ID_JOB_LOCK);
    253. create table R_JOB_NOTE
    254. (
    255. id_job INTEGER,
    256. id_note INTEGER
    257. )
    258. ;
    259. create table R_LOG
    260. (
    261. id_log INTEGER not null,
    262. name VARCHAR2(255),
    263. id_loglevel INTEGER,
    264. logtype VARCHAR2(255),
    265. filename VARCHAR2(255),
    266. fileextention VARCHAR2(255),
    267. add_date CHAR(1),
    268. add_time CHAR(1),
    269. id_database_log INTEGER,
    270. table_name_log VARCHAR2(255)
    271. )
    272. ;
    273. alter table R_LOG
    274. add primary key (ID_LOG);
    275. create table R_LOGLEVEL
    276. (
    277. id_loglevel INTEGER not null,
    278. code VARCHAR2(255),
    279. description VARCHAR2(255)
    280. )
    281. ;
    282. alter table R_LOGLEVEL
    283. add primary key (ID_LOGLEVEL);
    284. create table R_NAMESPACE
    285. (
    286. id_namespace INTEGER not null,
    287. name VARCHAR2(1999)
    288. )
    289. ;
    290. alter table R_NAMESPACE
    291. add primary key (ID_NAMESPACE);
    292. create table R_NOTE
    293. (
    294. id_note INTEGER not null,
    295. gui_location_x INTEGER,
    296. gui_location_y INTEGER,
    297. gui_location_width INTEGER,
    298. gui_location_height INTEGER,
    299. font_size INTEGER,
    300. font_bold CHAR(1),
    301. font_italic CHAR(1),
    302. font_color_red INTEGER,
    303. font_color_green INTEGER,
    304. font_color_blue INTEGER,
    305. font_back_ground_color_red INTEGER,
    306. font_back_ground_color_green INTEGER,
    307. font_back_ground_color_blue INTEGER,
    308. font_border_color_red INTEGER,
    309. font_border_color_green INTEGER,
    310. font_border_color_blue INTEGER,
    311. draw_shadow CHAR(1),
    312. value_str VARCHAR2(1000),
    313. font_name VARCHAR2(1000)
    314. )
    315. ;
    316. alter table R_NOTE
    317. add primary key (ID_NOTE);
    318. create table R_PARTITION
    319. (
    320. id_partition INTEGER not null,
    321. id_partition_schema INTEGER,
    322. partition_id VARCHAR2(255)
    323. )
    324. ;
    325. alter table R_PARTITION
    326. add primary key (ID_PARTITION);
    327. create table R_PARTITION_SCHEMA
    328. (
    329. id_partition_schema INTEGER not null,
    330. name VARCHAR2(255),
    331. dynamic_definition CHAR(1),
    332. partitions_per_slave VARCHAR2(255)
    333. )
    334. ;
    335. alter table R_PARTITION_SCHEMA
    336. add primary key (ID_PARTITION_SCHEMA);
    337. create table R_REPOSITORY_LOG
    338. (
    339. id_repository_log INTEGER not null,
    340. rep_version VARCHAR2(255),
    341. log_date DATE,
    342. log_user VARCHAR2(255),
    343. operation_desc VARCHAR2(1000)
    344. )
    345. ;
    346. alter table R_REPOSITORY_LOG
    347. add primary key (ID_REPOSITORY_LOG);
    348. create table R_SLAVE
    349. (
    350. id_slave INTEGER not null,
    351. name VARCHAR2(255),
    352. host_name VARCHAR2(255),
    353. port VARCHAR2(255),
    354. web_app_name VARCHAR2(255),
    355. username VARCHAR2(255),
    356. password VARCHAR2(255),
    357. proxy_host_name VARCHAR2(255),
    358. proxy_port VARCHAR2(255),
    359. non_proxy_hosts VARCHAR2(255),
    360. master CHAR(1)
    361. )
    362. ;
    363. alter table R_SLAVE
    364. add primary key (ID_SLAVE);
    365. create table R_STEP
    366. (
    367. id_step INTEGER not null,
    368. id_transformation INTEGER,
    369. name VARCHAR2(255),
    370. id_step_type INTEGER,
    371. distribute CHAR(1),
    372. copies INTEGER,
    373. gui_location_x INTEGER,
    374. gui_location_y INTEGER,
    375. gui_draw CHAR(1),
    376. copies_string VARCHAR2(255),
    377. description VARCHAR2(1000)
    378. )
    379. ;
    380. alter table R_STEP
    381. add primary key (ID_STEP);
    382. create table R_STEP_ATTRIBUTE
    383. (
    384. id_step_attribute INTEGER not null,
    385. id_transformation INTEGER,
    386. id_step INTEGER,
    387. nr INTEGER,
    388. code VARCHAR2(255),
    389. value_num INTEGER,
    390. value_str VARCHAR2(1000)
    391. )
    392. ;
    393. create unique index IDX_RSAT on R_STEP_ATTRIBUTE (ID_STEP, CODE, NR);
    394. alter table R_STEP_ATTRIBUTE
    395. add primary key (ID_STEP_ATTRIBUTE);
    396. create table R_STEP_DATABASE
    397. (
    398. id_transformation INTEGER,
    399. id_step INTEGER,
    400. id_database INTEGER
    401. )
    402. ;
    403. create index IDX_RSD1 on R_STEP_DATABASE (ID_TRANSFORMATION);
    404. create index IDX_RSD2 on R_STEP_DATABASE (ID_DATABASE);
    405. create table R_STEP_TYPE
    406. (
    407. id_step_type INTEGER not null,
    408. code VARCHAR2(255),
    409. description VARCHAR2(255),
    410. helptext VARCHAR2(255)
    411. )
    412. ;
    413. alter table R_STEP_TYPE
    414. add primary key (ID_STEP_TYPE);
    415. create table R_TRANSFORMATION
    416. (
    417. id_transformation INTEGER not null,
    418. id_directory INTEGER,
    419. name VARCHAR2(255),
    420. trans_version VARCHAR2(255),
    421. trans_status INTEGER,
    422. id_step_read INTEGER,
    423. id_step_write INTEGER,
    424. id_step_input INTEGER,
    425. id_step_output INTEGER,
    426. id_step_update INTEGER,
    427. id_database_log INTEGER,
    428. table_name_log VARCHAR2(255),
    429. use_batchid CHAR(1),
    430. use_logfield CHAR(1),
    431. id_database_maxdate INTEGER,
    432. table_name_maxdate VARCHAR2(255),
    433. field_name_maxdate VARCHAR2(255),
    434. offset_maxdate NUMBER(12,2),
    435. diff_maxdate NUMBER(12,2),
    436. created_user VARCHAR2(255),
    437. created_date DATE,
    438. modified_user VARCHAR2(255),
    439. modified_date DATE,
    440. size_rowset INTEGER,
    441. description VARCHAR2(255),
    442. extended_description VARCHAR2(255)
    443. )
    444. ;
    445. alter table R_TRANSFORMATION
    446. add primary key (ID_TRANSFORMATION);
    447. create table R_TRANS_ATTRIBUTE
    448. (
    449. id_trans_attribute INTEGER not null,
    450. id_transformation INTEGER,
    451. nr INTEGER,
    452. code VARCHAR2(255),
    453. value_num INTEGER,
    454. value_str VARCHAR2(1000)
    455. )
    456. ;
    457. create unique index IDX_TATT on R_TRANS_ATTRIBUTE (ID_TRANSFORMATION, CODE, NR);
    458. alter table R_TRANS_ATTRIBUTE
    459. add primary key (ID_TRANS_ATTRIBUTE);
    460. create table R_TRANS_CLUSTER
    461. (
    462. id_trans_cluster INTEGER not null,
    463. id_transformation INTEGER,
    464. id_cluster INTEGER
    465. )
    466. ;
    467. alter table R_TRANS_CLUSTER
    468. add primary key (ID_TRANS_CLUSTER);
    469. create table R_TRANS_HOP
    470. (
    471. id_trans_hop INTEGER not null,
    472. id_transformation INTEGER,
    473. id_step_from INTEGER,
    474. id_step_to INTEGER,
    475. enabled CHAR(1)
    476. )
    477. ;
    478. alter table R_TRANS_HOP
    479. add primary key (ID_TRANS_HOP);
    480. create table R_TRANS_LOCK
    481. (
    482. id_trans_lock INTEGER not null,
    483. id_transformation INTEGER,
    484. id_user INTEGER,
    485. lock_date DATE,
    486. lock_message VARCHAR2(1000)
    487. )
    488. ;
    489. alter table R_TRANS_LOCK
    490. add primary key (ID_TRANS_LOCK);
    491. create table R_TRANS_NOTE
    492. (
    493. id_transformation INTEGER,
    494. id_note INTEGER
    495. )
    496. ;
    497. create table R_TRANS_PARTITION_SCHEMA
    498. (
    499. id_trans_partition_schema INTEGER not null,
    500. id_transformation INTEGER,
    501. id_partition_schema INTEGER
    502. )
    503. ;
    504. alter table R_TRANS_PARTITION_SCHEMA
    505. add primary key (ID_TRANS_PARTITION_SCHEMA);
    506. create table R_TRANS_SLAVE
    507. (
    508. id_trans_slave INTEGER not null,
    509. id_transformation INTEGER,
    510. id_slave INTEGER
    511. )
    512. ;
    513. alter table R_TRANS_SLAVE
    514. add primary key (ID_TRANS_SLAVE);
    515. create table R_TRANS_STEP_CONDITION
    516. (
    517. id_transformation INTEGER,
    518. id_step INTEGER,
    519. id_condition INTEGER
    520. )
    521. ;
    522. create table R_USER
    523. (
    524. id_user INTEGER not null,
    525. login VARCHAR2(255),
    526. password VARCHAR2(255),
    527. name VARCHAR2(255),
    528. description VARCHAR2(255),
    529. enabled CHAR(1)
    530. )
    531. ;
    532. alter table R_USER
    533. add primary key (ID_USER);
    534. create table R_VALUE
    535. (
    536. id_value INTEGER not null,
    537. name VARCHAR2(255),
    538. value_type VARCHAR2(255),
    539. value_str VARCHAR2(255),
    540. is_null CHAR(1)
    541. )
    542. ;
    543. alter table R_VALUE
    544. add primary key (ID_VALUE);
    545. create table R_VERSION
    546. (
    547. id_version INTEGER not null,
    548. major_version INTEGER,
    549. minor_version INTEGER,
    550. upgrade_date DATE,
    551. is_upgrade CHAR(1)
    552. )
    553. ;
    554. alter table R_VERSION
    555. add primary key (ID_VERSION);
    556. insert into R_DATABASE_CONTYPE (id_database_contype, code, description)
    557. values (1, 'Native', 'Native (JDBC)');
    558. insert into R_DATABASE_CONTYPE (id_database_contype, code, description)
    559. values (2, 'ODBC', 'ODBC');
    560. insert into R_DATABASE_CONTYPE (id_database_contype, code, description)
    561. values (3, 'OCI', 'OCI');
    562. insert into R_DATABASE_CONTYPE (id_database_contype, code, description)
    563. values (4, 'Plugin', 'Plugin specific access method');
    564. insert into R_DATABASE_CONTYPE (id_database_contype, code, description)
    565. values (5, 'JNDI', 'JNDI');
    566. insert into R_DATABASE_CONTYPE (id_database_contype, code, description)
    567. values (6, ',', 'Custom');
    568. commit;
    569. insert into R_DATABASE_TYPE (id_database_type, code, description)
    570. values (1, 'DERBY', 'Apache Derby');
    571. insert into R_DATABASE_TYPE (id_database_type, code, description)
    572. values (2, 'AS/400', 'AS/400');
    573. insert into R_DATABASE_TYPE (id_database_type, code, description)
    574. values (3, 'INTERBASE', 'Borland Interbase');
    575. insert into R_DATABASE_TYPE (id_database_type, code, description)
    576. values (4, 'INFINIDB', 'Calpont InfiniDB');
    577. insert into R_DATABASE_TYPE (id_database_type, code, description)
    578. values (5, 'IMPALASIMBA', 'Cloudera Impala');
    579. insert into R_DATABASE_TYPE (id_database_type, code, description)
    580. values (6, 'DBASE', 'dBase III, IV or 5');
    581. insert into R_DATABASE_TYPE (id_database_type, code, description)
    582. values (7, 'EXASOL4', 'Exasol 4');
    583. insert into R_DATABASE_TYPE (id_database_type, code, description)
    584. values (8, 'EXTENDB', 'ExtenDB');
    585. insert into R_DATABASE_TYPE (id_database_type, code, description)
    586. values (9, 'FIREBIRD', 'Firebird SQL');
    587. insert into R_DATABASE_TYPE (id_database_type, code, description)
    588. values (10, 'GENERIC', 'Generic database');
    589. insert into R_DATABASE_TYPE (id_database_type, code, description)
    590. values (11, 'GOOGLEBIGQUERY', 'Google BigQuery');
    591. insert into R_DATABASE_TYPE (id_database_type, code, description)
    592. values (12, 'GREENPLUM', 'Greenplum');
    593. insert into R_DATABASE_TYPE (id_database_type, code, description)
    594. values (13, 'SQLBASE', 'Gupta SQL Base');
    595. insert into R_DATABASE_TYPE (id_database_type, code, description)
    596. values (14, 'H2', 'H2');
    597. insert into R_DATABASE_TYPE (id_database_type, code, description)
    598. values (15, 'HIVE', 'Hadoop Hive');
    599. insert into R_DATABASE_TYPE (id_database_type, code, description)
    600. values (16, 'HIVE2', 'Hadoop Hive 2/3');
    601. insert into R_DATABASE_TYPE (id_database_type, code, description)
    602. values (17, 'HIVEWAREHOUSE', 'Hive Warehouse Connector');
    603. insert into R_DATABASE_TYPE (id_database_type, code, description)
    604. values (18, 'HYPERSONIC', 'Hypersonic');
    605. insert into R_DATABASE_TYPE (id_database_type, code, description)
    606. values (19, 'DB2', 'IBM DB2');
    607. insert into R_DATABASE_TYPE (id_database_type, code, description)
    608. values (20, 'IMPALA', 'Impala');
    609. insert into R_DATABASE_TYPE (id_database_type, code, description)
    610. values (21, 'INFOBRIGHT', 'Infobright');
    611. insert into R_DATABASE_TYPE (id_database_type, code, description)
    612. values (22, 'INFORMIX', 'Informix');
    613. insert into R_DATABASE_TYPE (id_database_type, code, description)
    614. values (23, 'INGRES', 'Ingres');
    615. insert into R_DATABASE_TYPE (id_database_type, code, description)
    616. values (24, 'VECTORWISE', 'Ingres VectorWise');
    617. insert into R_DATABASE_TYPE (id_database_type, code, description)
    618. values (25, 'CACHE', 'Intersystems Cache');
    619. insert into R_DATABASE_TYPE (id_database_type, code, description)
    620. values (26, 'KINGBASEES', 'KingbaseES');
    621. insert into R_DATABASE_TYPE (id_database_type, code, description)
    622. values (27, 'LucidDB', 'LucidDB');
    623. insert into R_DATABASE_TYPE (id_database_type, code, description)
    624. values (28, 'MARIADB', 'MariaDB');
    625. insert into R_DATABASE_TYPE (id_database_type, code, description)
    626. values (29, 'SAPDB', 'MaxDB (SAP DB)');
    627. insert into R_DATABASE_TYPE (id_database_type, code, description)
    628. values (30, 'MONETDB', 'MonetDB');
    629. insert into R_DATABASE_TYPE (id_database_type, code, description)
    630. values (31, 'MSACCESS', 'MS Access');
    631. insert into R_DATABASE_TYPE (id_database_type, code, description)
    632. values (32, 'MSSQL', 'MS SQL Server');
    633. insert into R_DATABASE_TYPE (id_database_type, code, description)
    634. values (33, 'MSSQLNATIVE', 'MS SQL Server (Native)');
    635. insert into R_DATABASE_TYPE (id_database_type, code, description)
    636. values (34, 'MYSQL', 'MySQL');
    637. insert into R_DATABASE_TYPE (id_database_type, code, description)
    638. values (35, 'MONDRIAN', 'Native Mondrian');
    639. insert into R_DATABASE_TYPE (id_database_type, code, description)
    640. values (36, 'NEOVIEW', 'Neoview');
    641. insert into R_DATABASE_TYPE (id_database_type, code, description)
    642. values (37, 'NETEZZA', 'Netezza');
    643. insert into R_DATABASE_TYPE (id_database_type, code, description)
    644. values (38, 'ORACLE', 'Oracle');
    645. insert into R_DATABASE_TYPE (id_database_type, code, description)
    646. values (39, 'ORACLERDB', 'Oracle RDB');
    647. insert into R_DATABASE_TYPE (id_database_type, code, description)
    648. values (40, 'PALO', 'Palo MOLAP Server');
    649. insert into R_DATABASE_TYPE (id_database_type, code, description)
    650. values (41, 'KettleThin', 'Pentaho Data Services');
    651. insert into R_DATABASE_TYPE (id_database_type, code, description)
    652. values (42, 'POSTGRESQL', 'PostgreSQL');
    653. insert into R_DATABASE_TYPE (id_database_type, code, description)
    654. values (43, 'REDSHIFT', 'Redshift');
    655. insert into R_DATABASE_TYPE (id_database_type, code, description)
    656. values (44, 'REMEDY-AR-SYSTEM', 'Remedy Action Request System');
    657. insert into R_DATABASE_TYPE (id_database_type, code, description)
    658. values (45, 'SAPR3', 'SAP ERP System');
    659. insert into R_DATABASE_TYPE (id_database_type, code, description)
    660. values (46, 'SNOWFLAKEHV', 'Snowflake');
    661. insert into R_DATABASE_TYPE (id_database_type, code, description)
    662. values (47, 'SPARKSIMBA', 'SparkSQL');
    663. insert into R_DATABASE_TYPE (id_database_type, code, description)
    664. values (48, 'SQLITE', 'SQLite');
    665. insert into R_DATABASE_TYPE (id_database_type, code, description)
    666. values (49, 'SYBASE', 'Sybase');
    667. insert into R_DATABASE_TYPE (id_database_type, code, description)
    668. values (50, 'SYBASEIQ', 'SybaseIQ');
    669. insert into R_DATABASE_TYPE (id_database_type, code, description)
    670. values (51, 'TERADATA', 'Teradata');
    671. insert into R_DATABASE_TYPE (id_database_type, code, description)
    672. values (52, 'UNIVERSE', 'UniVerse database');
    673. insert into R_DATABASE_TYPE (id_database_type, code, description)
    674. values (53, 'VERTICA', 'Vertica');
    675. insert into R_DATABASE_TYPE (id_database_type, code, description)
    676. values (54, 'VERTICA5', 'Vertica 5+');
    677. commit;
    678. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    679. values (1, 'EMRJobExecutorPlugin', 'Amazon EMR job executor');
    680. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    681. values (2, 'HiveJobExecutorPlugin', 'Amazon Hive job executor');
    682. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    683. values (3, 'DataRefineryBuildModel', 'Build model');
    684. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    685. values (4, 'CHECK_DB_CONNECTIONS', 'Check DB connections');
    686. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    687. values (5, 'XML_WELL_FORMED', 'Check if XML file is well formed');
    688. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    689. values (6, 'DOS_UNIX_CONVERTER', 'DOS和UNIX之间的文本转换');
    690. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    691. values (7, 'DTD_VALIDATOR', 'DTD validator');
    692. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    693. values (8, 'DummyJob', 'Example job (deprecated)');
    694. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    695. values (9, 'FTP_PUT', 'FTP 上传');
    696. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    697. values (10, 'FTP', 'FTP 下载');
    698. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    699. values (11, 'FTP_DELETE', 'FTP 删除');
    700. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    701. values (12, 'FTPS_PUT', 'FTPS 上传');
    702. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    703. values (13, 'FTPS_GET', 'FTPS 下载');
    704. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    705. values (14, 'HadoopCopyFilesPlugin', 'Hadoop copy files');
    706. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    707. values (15, 'HadoopJobExecutorPlugin', 'Hadoop job executor ');
    708. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    709. values (16, 'HL7MLLPAcknowledge', 'HL7 MLLP acknowledge');
    710. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    711. values (17, 'HL7MLLPInput', 'HL7 MLLP input');
    712. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    713. values (18, 'HTTP', 'HTTP');
    714. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    715. values (19, 'EVAL', 'JavaScript');
    716. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    717. values (20, 'MS_ACCESS_BULK_LOAD', 'MS Access bulk load (deprecated)');
    718. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    719. values (21, 'MYSQL_BULK_LOAD', 'MySQL 批量加载');
    720. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    721. values (22, 'OozieJobExecutor', 'Oozie job executor');
    722. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    723. values (23, 'PALO_CUBE_CREATE', 'Palo cube create (deprecated)');
    724. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    725. values (24, 'PALO_CUBE_DELETE', 'Palo cube delete (deprecated)');
    726. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    727. values (25, 'HadoopTransJobExecutorPlugin', 'Pentaho MapReduce');
    728. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    729. values (26, 'HadoopPigScriptExecutorPlugin', 'Pig script executor');
    730. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    731. values (27, 'PING', 'Ping 一台主机');
    732. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    733. values (28, 'GET_POP', 'POP 收信');
    734. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    735. values (29, 'DATASOURCE_PUBLISH', 'Publish model');
    736. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    737. values (30, 'SFTPPUT', 'SFTP 上传');
    738. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    739. values (31, 'SFTP', 'SFTP 下载');
    740. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    741. values (32, 'SHELL', 'Shell');
    742. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    743. values (33, 'SparkSubmit', 'Spark submit');
    744. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    745. values (34, 'SQL', 'SQL');
    746. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    747. values (35, 'MSSQL_BULK_LOAD', 'SQLServer 批量加载');
    748. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    749. values (36, 'SqoopExport', 'Sqoop export');
    750. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    751. values (37, 'SqoopImport', 'Sqoop import');
    752. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    753. values (38, 'TALEND_JOB_EXEC', 'Talend 作业执行 (deprecated)');
    754. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    755. values (39, 'XSD_VALIDATOR', 'XSD validator');
    756. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    757. values (40, 'XSLT', 'XSL transformation');
    758. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    759. values (41, 'ZIP_FILE', 'Zip 压缩文件');
    760. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    761. values (42, 'ABORT', '中止作业');
    762. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    763. values (43, 'MYSQL_BULK_FILE', '从 MySQL 批量导出到文件');
    764. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    765. values (44, 'DELETE_RESULT_FILENAMES', '从结果文件中删除文件');
    766. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    767. values (45, 'JOB', '作业');
    768. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    769. values (46, 'WRITE_TO_FILE', '写入文件');
    770. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    771. values (47, 'WRITE_TO_LOG', '写日志');
    772. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    773. values (48, 'CREATE_FOLDER', '创建一个目录');
    774. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    775. values (49, 'CREATE_FILE', '创建文件');
    776. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    777. values (50, 'DELETE_FILE', '删除一个文件');
    778. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    779. values (51, 'DELETE_FILES', '删除多个文件');
    780. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    781. values (52, 'DELETE_FOLDERS', '删除目录');
    782. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    783. values (53, 'SNMP_TRAP', '发送 SNMP 自陷');
    784. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    785. values (54, 'SEND_NAGIOS_PASSIVE_CHECK', '发送Nagios 被动检查');
    786. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    787. values (55, 'MAIL', '发送邮件');
    788. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    789. values (56, 'COPY_MOVE_RESULT_FILENAMES', '复制/移动结果文件');
    790. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    791. values (57, 'COPY_FILES', '复制文件');
    792. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    793. values (58, 'EXPORT_REPOSITORY', '导出资源库到XML文件');
    794. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    795. values (59, 'SUCCESS', '成功');
    796. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    797. values (60, 'MSGBOX_INFO', '显示消息对话框');
    798. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    799. values (61, 'WEBSERVICE_AVAILABLE', '检查web服务是否可用');
    800. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    801. values (62, 'FILE_EXISTS', '检查一个文件是否存在');
    802. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    803. values (63, 'COLUMNS_EXIST', '检查列是否存在');
    804. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    805. values (64, 'FILES_EXIST', '检查多个文件是否存在');
    806. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    807. values (65, 'CHECK_FILES_LOCKED', '检查文件是否被锁');
    808. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    809. values (66, 'CONNECTED_TO_REPOSITORY', '检查是否连接到资源库');
    810. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    811. values (67, 'FOLDER_IS_EMPTY', '检查目录是否为空');
    812. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    813. values (68, 'TABLE_EXISTS', '检查表是否存在');
    814. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    815. values (69, 'SIMPLE_EVAL', '检验字段的值');
    816. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    817. values (70, 'FILE_COMPARE', '比较文件');
    818. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    819. values (71, 'FOLDERS_COMPARE', '比较目录');
    820. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    821. values (72, 'ADD_RESULT_FILENAMES', '添加文件到结果文件中');
    822. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    823. values (73, 'TRUNCATE_TABLES', '清空表');
    824. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    825. values (74, 'SPECIAL', '特殊作业项');
    826. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    827. values (75, 'SYSLOG', '用 syslog 发送信息');
    828. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    829. values (76, 'PGP_ENCRYPT_FILES', '用PGP加密文件');
    830. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    831. values (77, 'PGP_DECRYPT_FILES', '用PGP解密文件');
    832. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    833. values (78, 'PGP_VERIFY_FILES', '用PGP验证文件签名');
    834. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    835. values (79, 'MOVE_FILES', '移动文件');
    836. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    837. values (80, 'DELAY', '等待');
    838. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    839. values (81, 'WAIT_FOR_SQL', '等待SQL');
    840. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    841. values (82, 'WAIT_FOR_FILE', '等待文件');
    842. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    843. values (83, 'UNZIP', '解压缩文件');
    844. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    845. values (84, 'EVAL_FILES_METRICS', '计算文件大小或个数');
    846. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    847. values (85, 'EVAL_TABLE_CONTENT', '计算表中的记录数');
    848. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    849. values (86, 'SET_VARIABLES', '设置变量');
    850. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    851. values (87, 'TRANS', '转换');
    852. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    853. values (88, 'TELNET', '远程登录一台主机');
    854. insert into R_JOBENTRY_TYPE (id_jobentry_type, code, description)
    855. values (89, 'MAIL_VALIDATOR', '邮件验证');
    856. commit;
    857. insert into R_LOGLEVEL (id_loglevel, code, description)
    858. values (1, 'Error', '错误日志');
    859. insert into R_LOGLEVEL (id_loglevel, code, description)
    860. values (2, 'Minimal', '最小日志');
    861. insert into R_LOGLEVEL (id_loglevel, code, description)
    862. values (3, 'Basic', '基本日志');
    863. insert into R_LOGLEVEL (id_loglevel, code, description)
    864. values (4, 'Detailed', '详细日志');
    865. insert into R_LOGLEVEL (id_loglevel, code, description)
    866. values (5, 'Debug', '调试');
    867. insert into R_LOGLEVEL (id_loglevel, code, description)
    868. values (6, 'Rowlevel', '行级日志(非常详细)');
    869. commit;
    870. insert into R_REPOSITORY_LOG (id_repository_log, rep_version, log_date, log_user, operation_desc)
    871. values (1, '5.0', to_date('27-03-2023 15:03:36', 'dd-mm-yyyy hh24:mi:ss'), 'admin', null);
    872. commit;
    873. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    874. values (82, 'PGPDecryptStream', 'PGP decrypt stream', 'Decrypt data stream with PGP');
    875. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    876. values (83, 'PGPEncryptStream', 'PGP encrypt stream', 'Encrypt data stream with PGP');
    877. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    878. values (84, 'PGBulkLoader', 'PostgreSQL 批量加载', 'PostgreSQL Bulk Loader');
    879. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    880. values (85, 'Rest', 'REST client', 'Consume RESTfull services.' || chr(10) || 'REpresentational State Transfer (REST) is a key design idiom that embraces a stateless client-server' || chr(10) || 'architecture in which the web services are viewed as resources and can be identified by their URLs');
    881. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    882. values (86, 'RssInput', 'RSS 输入', 'Read RSS feeds');
    883. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    884. values (87, 'RssOutput', 'RSS 输出', 'Read RSS stream.');
    885. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    886. values (88, 'RuleAccumulator', 'Rules accumulator', 'Rules accumulator step');
    887. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    888. values (89, 'RuleExecutor', 'Rules executor', 'Rules executor step');
    889. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    890. values (90, 'S3CSVINPUT', 'S3 CSV input', 'Is capable of reading CSV data stored on Amazon S3 in parallel');
    891. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    892. values (91, 'S3FileOutputPlugin', 'S3 file output', 'Create files in an S3 location');
    893. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    894. values (92, 'SalesforceDelete', 'Salesforce delete', 'Delete records in Salesforce module.');
    895. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    896. values (93, 'SalesforceInput', 'Salesforce input', 'Extract data from Salesforce');
    897. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    898. values (94, 'SalesforceInsert', 'Salesforce insert', 'Insert records in Salesforce module.');
    899. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    900. values (95, 'SalesforceUpdate', 'Salesforce update', 'Update records in Salesforce module.');
    901. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    902. values (96, 'SalesforceUpsert', 'Salesforce upsert', 'Insert or update records in Salesforce module.');
    903. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    904. values (97, 'SAPINPUT', 'SAP input', 'Read data from SAP ERP, optionally with parameters');
    905. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    906. values (98, 'SASInput', 'SAS 输入', 'This step reads files in sas7bdat (SAS) native format');
    907. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    908. values (99, 'Script', 'Script', 'Calculate values by scripting in Ruby, Python, Groovy, JavaScript, ... (JSR-223)');
    909. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    910. values (100, 'SetSessionVariableStep', 'Set session variables', 'Set session variables in the current user session.');
    911. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    912. values (101, 'SFTPPut', 'SFTP put', 'Upload a file or a stream file to remote host via SFTP');
    913. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    914. values (102, 'CreateSharedDimensions', 'Shared dimension', 'Create shared dimensions for use with Streamlined Data Refinery.');
    915. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    916. values (103, 'SimpleMapping', 'Simple mapping (sub-transformation)', 'Run a mapping (sub-transformation), use MappingInput and MappingOutput to specify the fields interface. This is the simplified version only allowing one input and one output data set.');
    917. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    918. values (104, 'SingleThreader', 'Single threader', 'Executes a transformation snippet in a single thread. You need a standard mapping or a transformation with an Injector step where data from the parent transformation will arive in blocks.');
    919. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    920. values (105, 'SocketWriter', 'Socket 写', 'Socket writer. A socket server that can send rows of data to a socket reader.');
    921. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    922. values (106, 'SocketReader', 'Socket 读', 'Socket reader. A socket client that connects to a server (Socket Writer step).');
    923. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    924. values (107, 'SQLFileOutput', 'SQL 文件输出', 'Output SQL INSERT statements to file');
    925. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    926. values (108, 'SSTableOutput', 'SSTable output', 'Writes to a filesystem directory as a Cassandra SSTable');
    927. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    928. values (109, 'SwitchCase', 'Switch / case', 'Switch a row to a certain target step based on the case value in a field.');
    929. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    930. values (110, 'TableAgileMart', 'Table Agile Mart', 'Load data into a table for Agile BI use cases');
    931. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    932. values (111, 'TeraFast', 'Teradata Fastload 批量加载', 'The Teradata Fastload bulk loader');
    933. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    934. values (112, 'TeraDataBulkLoader', 'Teradata TPT bulk loader', 'Teradata TPT bulkloader, using tbuild command');
    935. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    936. values (113, 'OldTextFileInput', 'Text file input', '从一个文本文件(几种格式)里读取数据{0}这些数据可以被传递到下一个步骤里...');
    937. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    938. values (114, 'TextFileOutputLegacy', 'Text file output', '写记录到一个文本文件.');
    939. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    940. values (115, 'TransExecutor', 'Transformation executor', 'This step executes a Pentaho Data Integration transformation, sets parameters and passes rows.');
    941. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    942. values (116, 'VerticaBulkLoader', 'Vertica bulk loader', 'Bulk load data into a Vertica database table');
    943. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    944. values (117, 'WebServiceLookup', 'Web 服务查询', '使用 Web 服务查询信息');
    945. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    946. values (118, 'XBaseInput', 'XBase输入', '从一个XBase类型的文件(DBF)读取记录');
    947. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    948. values (119, 'XMLInputStream', 'XML input stream (StAX)', 'This step is capable of processing very large and complex XML files very fast.');
    949. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    950. values (120, 'XMLJoin', 'XML join', 'Joins a stream of XML-Tags into a target XML string');
    951. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    952. values (121, 'XMLOutput', 'XML output', 'Write data to an XML file');
    953. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    954. values (122, 'XSDValidator', 'XSD validator', 'Validate XML source (files or streams) against XML Schema Definition.');
    955. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    956. values (123, 'XSLT', 'XSL transformation', 'Make an XSL transformation');
    957. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    958. values (124, 'YamlInput', 'YAML 输入', 'Read YAML source (file or stream) parse them and convert them to rows and writes these to one or more output.');
    959. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    960. values (125, 'ZipFile', 'Zip 文件', 'Zip a file.' || chr(10) || 'Filename will be extracted from incoming stream.');
    961. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    962. values (126, 'Abort', '中止', 'Abort a transformation');
    963. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    964. values (127, 'FilesFromResult', '从结果获取文件', 'This step allows you to read filenames used or generated in a previous entry in a job.');
    965. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    966. values (128, 'RowsFromResult', '从结果获取记录', '这个允许你从同一个任务的前一个条目里读取记录.');
    967. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    968. values (129, 'ValueMapper', '值映射', 'Maps values of a certain field from one value to another');
    969. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    970. values (130, 'Formula', '公式', '使用 Pentaho 的公式库来计算公式');
    971. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    972. values (131, 'WriteToLog', '写日志', 'Write data to log');
    973. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    974. values (132, 'AnalyticQuery', '分析查询', 'Execute analytic queries over a sorted dataset (LEAD/LAG/FIRST/LAST)');
    975. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    976. values (133, 'GroupBy', '分组', '以分组的形式创建聚合.{0}这个仅仅在一个已经排好序的输入有效.{1}如果输入没有排序, 仅仅两个连续的记录行被正确处理.');
    977. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    978. values (134, 'SplitFieldToRows3', '列拆分为多行', 'Splits a single string field by delimiter and creates a new row for each split term');
    979. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    980. values (135, 'Denormaliser', '列转行', 'Denormalises rows by looking up key-value pairs and by assigning them to new fields in the输出 rows.{0}This method aggregates and needs the输入 rows to be sorted on the grouping fields');
    981. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    982. values (136, 'Delete', '删除', '基于关键字删除记录');
    983. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    984. values (137, 'Janino', '利用Janino计算Java表达式', 'Calculate the result of a Java Expression using Janino');
    985. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    986. values (138, 'StringCut', '剪切字符串', 'Strings cut (substring).');
    987. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    988. values (139, 'UnivariateStats', '单变量统计', 'This step computes some simple stats based on a single input field');
    989. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    990. values (140, 'Unique', '去除重复记录', '去除重复的记录行,保持记录唯一{0}这个仅仅基于一个已经排好序的输入.{1}如果输入没有排序, 仅仅两个连续的记录行被正确处理.');
    991. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    992. values (141, 'SyslogMessage', '发送信息至syslog', 'Send message to syslog server');
    993. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    994. values (142, 'Mail', '发送邮件', 'Send eMail.');
    995. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    996. values (143, 'MergeRows', '合并记录', '合并两个数据流, 并根据某个关键字排序. 这两个数据流被比较,以标识相等的、变更的、删除的和新建的记录.');
    997. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    998. values (144, 'ExecProcess', '启动一个进程', 'Execute a process and return the result');
    999. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1000. values (145, 'UniqueRowsByHashSet', '唯一行 (哈希值)', 'Remove double rows and leave only unique occurrences by using a HashSet.');
    1001. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1002. values (146, 'FixedInput', '固定宽度文件输入', 'Fixed file input');
    1003. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1004. values (147, 'MemoryGroupBy', '在内存中分组', 'Builds aggregates in a group by fashion.' || chr(10) || 'This step doesn''t require sorted input.');
    1005. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1006. values (148, 'Constant', '增加常量', '给记录增加一到多个常量');
    1007. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1008. values (149, 'Sequence', '增加序列', '从序列获取下一个值');
    1009. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1010. values (150, 'ProcessFiles', '处理文件', 'Process one file per row (copy or move or delete).' || chr(10) || 'This step only accept filename in input.');
    1011. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1012. values (151, 'FilesToResult', '复制文件到结果', 'This step allows you to set filenames in the result of this transformation.' || chr(10) || 'Subsequent job entries can then use this information.');
    1013. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1014. values (152, 'RowsToResult', '复制记录到结果', '使用这个步骤把记录写到正在执行的任务.{0}信息将会被传递给同一个任务里的下一个条目.');
    1015. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1016. values (153, 'SelectValues', '字段选择', '选择或移除记录里的字。{0}此外,可以设置字段的元数据: 类型, 长度和精度.');
    1017. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1018. values (154, 'StringOperations', '字符串操作', 'Apply certain operations like trimming, padding and others to string value.');
    1019. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1020. values (155, 'ReplaceString', '字符串替换', 'Replace all occurences a word in a string with another word.');
    1021. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1022. values (156, 'SymmetricCryptoTrans', '对称加密', 'Encrypt or decrypt a string using symmetric encryption.' || chr(10) || 'Available algorithms are DES, AES, TripleDES.');
    1023. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1024. values (157, 'SetValueConstant', '将字段值设置为常量', 'Set value of a field to a constant');
    1025. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1026. values (158, 'Delay', '延迟行', 'Output each input row after a delay');
    1027. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1028. values (159, 'DynamicSQLRow', '执行Dynamic SQL', 'Execute dynamic SQL statement build in a previous field');
    1029. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1030. values (160, 'ExecSQL', '执行SQL脚本', '执行一个SQL脚本, 另外,可以使用输入的记录作为参数');
    1031. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1032. values (161, 'ExecSQLRow', '执行SQL脚本(字段流替换)', 'Execute SQL script extracted from a field' || chr(10) || 'created in a previous step.');
    1033. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1034. values (162, 'JobExecutor', '执行作业', 'This step executes a Pentaho Data Integration job, sets parameters and passes rows.');
    1035. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1036. values (163, 'FieldSplitter', '拆分字段', '当你想把一个字段拆分成多个时,使用这个类型.');
    1037. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1038. values (164, 'SortedMerge', '排序合并', 'Sorted merge');
    1039. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1040. values (165, 'SortRows', '排序记录', '基于字段值把记录排序(升序或降序)');
    1041. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1042. values (166, 'InsertUpdate', '插入 / 更新', '基于关键字更新或插入记录到数据库.');
    1043. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1044. values (167, 'NumberRange', '数值范围', 'Create ranges based on numeric field');
    1045. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1046. values (168, 'SynchronizeAfterMerge', '数据同步', 'This step perform insert/update/delete in one go based on the value of a field.');
    1047. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1048. values (169, 'DBLookup', '数据库查询', '使用字段值在数据库里查询值');
    1049. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1050. values (170, 'DBJoin', '数据库连接', '使用数据流里的值作为参数执行一个数据库查询');
    1051. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1052. values (171, 'Validator', '数据检验', 'Validates passing data based on a set of rules');
    1053. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1054. values (172, 'PrioritizeStreams', '数据流优先级排序', 'Prioritize streams in an order way.');
    1055. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1056. values (173, 'ReservoirSampling', '数据采样', '[Transform] Samples a fixed number of rows from the incoming stream');
    1057. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1058. values (174, 'LoadFileInput', '文件内容加载至内存', 'Load file content in memory');
    1059. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1060. values (175, 'TextFileInput', '文本文件输入', '从一个文本文件(几种格式)里读取数据{0}这些数据可以被传递到下一个步骤里...');
    1061. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1062. values (176, 'TextFileOutput', '文本文件输出', '写记录到一个文本文件.');
    1063. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1064. values (177, 'Mapping', '映射 (子转换)', '运行一个映射 (子转换), 使用MappingInput和MappingOutput来指定接口的字段');
    1065. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1066. values (178, 'MappingInput', '映射输入规范', '指定一个映射的字段输入');
    1067. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1068. values (179, 'MappingOutput', '映射输出规范', '指定一个映射的字段输出');
    1069. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1070. values (180, 'Update', '更新', '基于关键字更新记录到数据库');
    1071. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1072. values (181, 'IfNull', '替换NULL值', 'Sets a field value to a constant if it is null.');
    1073. commit;
    1074. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1075. values (182, 'SampleRows', '样本行', 'Filter rows based on the line number.');
    1076. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1077. values (183, 'JavaFilter', '根据Java代码过滤记录', 'Filter rows using java code');
    1078. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1079. values (184, 'FieldsChangeSequence', '根据字段值来改变序列', 'Add sequence depending of fields value change.' || chr(10) || 'Each time value of at least one field change, PDI will reset sequence.');
    1080. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1081. values (185, 'WebServiceAvailable', '检查web服务是否可用', 'Check if a webservice is available');
    1082. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1083. values (186, 'FileExists', '检查文件是否存在', 'Check if a file exists');
    1084. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1085. values (187, 'FileLocked', '检查文件是否已被锁定', 'Check if a file is locked by another process');
    1086. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1087. values (188, 'TableExists', '检查表是否存在', 'Check if a table exists on a specified connection');
    1088. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1089. values (189, 'DetectEmptyStream', '检测空流', 'This step will output one empty row if input stream is empty' || chr(10) || '(ie when input stream does not contain any row)');
    1090. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1091. values (190, 'CreditCardValidator', '检验信用卡号码是否有效', 'The Credit card validator step will help you tell:' || chr(10) || '(1) if a credit card number is valid (uses LUHN10 (MOD-10) algorithm)' || chr(10) || '(2) which credit card vendor handles that number' || chr(10) || '(VISA, MasterCard, Diners Club, EnRoute, American Express (AMEX),...)');
    1092. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1093. values (191, 'MailValidator', '检验邮件地址', 'Check if an email address is valid.');
    1094. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1095. values (192, 'FuzzyMatch', '模糊匹配', 'Finding approximate matches to a string using matching algorithms.' || chr(10) || 'Read a field from a main stream and output approximative value from lookup stream.');
    1096. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1097. values (193, 'RegexEval', '正则表达式', 'Regular expression Evaluation' || chr(10) || 'This step uses a regular expression to evaluate a field. It can also extract new fields out of an existing field with capturing groups.');
    1098. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1099. values (194, 'TableCompare', '比较表', 'Compares 2 tables and gives back a list of differences');
    1100. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1101. values (195, 'StreamLookup', '流查询', '从转换中的其它流里查询值.');
    1102. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1103. values (196, 'StepMetastructure', '流的元数据', 'This is a step to read the metadata of the incoming stream.');
    1104. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1105. values (197, 'SecretKeyGenerator', '生成密钥', 'Generate secret key for algorithms such as DES, AES, TripleDES.');
    1106. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1107. values (198, 'RowGenerator', '生成记录', '产生一些空记录或相等的行.');
    1108. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1109. values (199, 'RandomValue', '生成随机数', 'Generate random value');
    1110. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1111. values (200, 'RandomCCNumberGenerator', '生成随机的信用卡号', 'Generate random valide (luhn check) credit card numbers');
    1112. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1113. values (201, 'Dummy', '空操作 (什么也不做)', '这个步骤类型什么都不作.{0} 当你想测试或拆分数据流的时候有用.');
    1114. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1115. values (202, 'DimensionLookup', '维度查询/更新', '在一个数据仓库里更新一个渐变维 {0} 或者在这个维里查询信息.');
    1116. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1117. values (203, 'CombinationLookup', '联合查询/更新', '更新数据仓库里的一个junk维 {0} 可选的, 科研查询维里的信息.{1}junk维的主键是所有的字段.');
    1118. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1119. values (204, 'AutoDoc', '自动文档输出', 'This step automatically generates documentation based on input in the form of a list of transformations and jobs');
    1120. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1121. values (205, 'DataGrid', '自定义常量数据', 'Enter rows of static data in a grid, usually for testing, reference or demo purpose');
    1122. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1123. values (206, 'GetVariable', '获取变量', 'Determine the values of certain (environment or Kettle) variables and put them in field values.');
    1124. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1125. values (207, 'GetSubFolders', '获取子目录名', 'Read a parent folder and return all subfolders');
    1126. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1127. values (208, 'GetFileNames', '获取文件名', 'Get file names from the operating system and send them to the next step.');
    1128. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1129. values (209, 'GetFilesRowsCount', '获取文件行数', 'Returns rows count for text files.');
    1130. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1131. values (210, 'SystemInfo', '获取系统信息', '获取系统信息,例如时间、日期.');
    1132. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1133. values (211, 'GetTableNames', '获取表名', 'Get table names from database connection and send them to the next step');
    1134. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1135. values (212, 'GetRepositoryNames', '获取资源库配置', 'Lists detailed information about transformations and/or jobs in a repository');
    1136. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1137. values (213, 'Flattener', '行扁平化', 'Flattens consequetive rows based on the order in which they appear in the输入 stream');
    1138. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1139. values (214, 'Normaliser', '行转列', 'De-normalised information can be normalised using this step type.');
    1140. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1141. values (215, 'TableInput', '表输入', '从数据库表里读取信息.');
    1142. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1143. values (216, 'TableOutput', '表输出', '写信息到一个数据库表');
    1144. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1145. values (217, 'Calculator', '计算器', '通过执行简单的计算创建一个新字段');
    1146. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1147. values (218, 'JoinRows', '记录关联 (笛卡尔输出)', '这个步骤的输出是输入流的笛卡尔的结果.{0} 输出结果的记录数是输入流记录之间的乘积.');
    1148. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1149. values (219, 'Injector', '记录注射', 'Injector step to allow to inject rows into the transformation through the java API');
    1150. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1151. values (220, 'MergeJoin', '记录集连接', 'Joins two streams on a given key and outputs a joined set. The input streams must be sorted on the join key');
    1152. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1153. values (221, 'NullIf', '设置值为NULL', '如果一个字段值等于某个固定值,那么把这个字段值设置成null');
    1154. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1155. values (222, 'SetVariable', '设置变量', 'Set environment variables based on a single input row.');
    1156. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1157. values (223, 'SetValueField', '设置字段值', 'Set value of a field with another value field');
    1158. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1159. values (224, 'DetectLastRow', '识别流的最后一行', 'Last row will be marked');
    1160. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1161. values (225, 'DBProc', '调用DB存储过程', '通过调用数据库存储过程获得返回值.');
    1162. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1163. values (226, 'StepsMetrics', '转换步骤信息统计', 'Return metrics for one or several steps');
    1164. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1165. values (227, 'FilterRows', '过滤记录', '使用简单的相等来过滤记录');
    1166. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1167. values (228, 'SSH', '运行SSH命令', 'Run SSH commands and returns result.');
    1168. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1169. values (229, 'Append', '追加流', 'Append 2 streams in an ordered way');
    1170. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1171. values (230, 'MailInput', '邮件信息输入', 'Read POP3/IMAP server and retrieve messages');
    1172. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1173. values (231, 'PropertyInput', '配置文件输入', 'Read data (key, value) from properties files.');
    1174. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1175. values (232, 'PropertyOutput', '配置文件输出', 'Write data to properties file');
    1176. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1177. values (233, 'BlockUntilStepsFinish', '阻塞数据直到步骤都完成', 'Block this step until selected steps finish.');
    1178. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1179. values (1, 'AccessInput', 'Access 输入', 'Read data from a Microsoft Access file');
    1180. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1181. values (2, 'AccessOutput', 'Access 输出', 'Stores records into an MS-Access database table.');
    1182. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1183. values (3, 'CheckSum', 'Add a checksum', 'Add a checksum column for each input row');
    1184. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1185. values (4, 'AddXML', 'Add XML', 'Encode several fields into an XML fragment');
    1186. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1187. values (5, 'FieldMetadataAnnotation', 'Annotate stream', 'Add more details to describe data for published models used by the Streamlined Data Refinery.');
    1188. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1189. values (6, 'AvroInput', 'Avro input', 'Reads data from an Avro file');
    1190. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1191. values (7, 'AvroInputNew', 'Avro input', 'Reads data from Avro file');
    1192. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1193. values (8, 'AvroOutput', 'Avro output', 'Writes data to an Avro file according to a mapping');
    1194. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1195. values (9, 'BlockingStep', 'Blocking step', 'The Blocking step blocks all output until the very last row is received from the previous step.');
    1196. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1197. values (10, 'CallEndpointStep', 'Call endpoint', 'Call an endpoint of the Pentaho Server.');
    1198. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1199. values (11, 'CassandraInput', 'Cassandra input', 'Reads data from a Cassandra table');
    1200. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1201. values (12, 'CassandraOutput', 'Cassandra output', 'Writes to a Cassandra table');
    1202. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1203. values (13, 'ChangeFileEncoding', 'Change file encoding', 'Change file encoding and create a new file');
    1204. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1205. values (14, 'CloneRow', 'Clone row', 'Clone a row as many times as needed');
    1206. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1207. values (15, 'ClosureGenerator', 'Closure generator', 'This step allows you to generates a closure table using parent-child relationships.');
    1208. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1209. values (16, 'ColumnExists', 'Column exists', 'Check if a column exists');
    1210. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1211. values (17, 'ConcatFields', 'Concat fields', 'Concat fields together into a new field (similar to the Text File Output step)');
    1212. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1213. values (18, 'CouchDbInput', 'CouchDB input', 'Reads from a Couch DB view');
    1214. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1215. values (19, 'CsvInput', 'CSV文件输入', 'Simple CSV file input');
    1216. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1217. values (20, 'CubeInput', 'Cube 文件输入', '从一个cube读取记录.');
    1218. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1219. values (21, 'CubeOutput', 'Cube输出', '把数据写入一个cube');
    1220. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1221. values (22, 'TypeExitEdi2XmlStep', 'EDI to XML', 'Converts Edi text to generic XML');
    1222. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1223. values (23, 'ElasticSearchBulk', 'Elasticsearch bulk insert', 'Performs bulk inserts into ElasticSearch');
    1224. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1225. values (24, 'ShapeFileReader', 'ESRI shapefile reader', 'Reads shape file data from an ESRI shape file and linked DBF file');
    1226. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1227. values (25, 'MetaInject', 'ETL metadata injection', 'ETL元数据注入');
    1228. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1229. values (26, 'DummyStep', 'Example step', 'This is a plugin example step');
    1230. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1231. values (27, 'ExcelInput', 'Excel输入', '从一个微软的Excel文件里读取数据. 兼容Excel 95, 97 and 2000.');
    1232. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1233. values (28, 'ExcelOutput', 'Excel输出', 'Stores records into an Excel (XLS) document with formatting information.');
    1234. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1235. values (29, 'getXMLData', 'Get data from XML', 'Get data from XML file by using XPath.' || chr(10) || ' This step also allows you to parse XML defined in a previous field.');
    1236. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1237. values (30, 'GetSlaveSequence', 'Get ID from slave server', 'Retrieves unique IDs in blocks from a slave server. The referenced sequence needs to be configured on the slave server in the XML configuration file.');
    1238. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1239. values (31, 'RecordsFromStream', 'Get records from stream', 'This step allows you to read records from a streaming step.');
    1240. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1241. values (32, 'GetSessionVariableStep', 'Get session variables', 'Get session variables from the current user session.');
    1242. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1243. values (33, 'TypeExitGoogleAnalyticsInputStep', 'Google Analytics', 'Fetches data from google analytics account');
    1244. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1245. values (34, 'GPBulkLoader', 'Greenplum bulk loader', 'Greenplum bulk loader');
    1246. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1247. values (35, 'GPLoad', 'Greenplum load', 'Greenplum load');
    1248. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1249. values (36, 'ParallelGzipCsvInput', 'GZIP CSV input', 'Parallel GZIP CSV file input reader');
    1250. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1251. values (37, 'HadoopFileInputPlugin', 'Hadoop file input', 'Process files from an HDFS location');
    1252. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1253. values (38, 'HadoopFileOutputPlugin', 'Hadoop file output', 'Create files in an HDFS location ');
    1254. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1255. values (39, 'HBaseInput', 'HBase input', 'Reads data from a HBase table according to a mapping ');
    1256. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1257. values (40, 'HBaseOutput', 'HBase output', 'Writes data to an HBase table according to a mapping');
    1258. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1259. values (41, 'HBaseRowDecoder', 'HBase row decoder', 'Decodes an incoming key and HBase result object according to a mapping ');
    1260. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1261. values (42, 'HL7Input', 'HL7 input', 'Reads and parses HL7 messages and outputs a series of values from the messages');
    1262. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1263. values (43, 'HTTP', 'HTTP client', 'Call a web service over HTTP by supplying a base URL by allowing parameters to be set dynamically');
    1264. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1265. values (44, 'HTTPPOST', 'HTTP post', 'Call a web service request over HTTP by supplying a base URL by allowing parameters to be set dynamically');
    1266. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1267. values (45, 'InfobrightOutput', 'Infobright 批量加载', 'Load data to an Infobright database table');
    1268. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1269. values (46, 'VectorWiseBulkLoader', 'Ingres VectorWise 批量加载', 'This step interfaces with the Ingres VectorWise Bulk Loader "COPY TABLE" command.');
    1270. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1271. values (47, 'UserDefinedJavaClass', 'Java 代码', 'This step allows you to program a step using Java code');
    1272. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1273. values (48, 'ScriptValueMod', 'JavaScript代码', 'This is a modified plugin for the Scripting Values with improved interface and performance.' || chr(10) || 'Written & donated to open source by Martin Lange, Proconis : http://www.proconis.de');
    1274. commit;
    1275. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1276. values (49, 'Jms2Consumer', 'JMS consumer', 'Consumes JMS streams');
    1277. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1278. values (50, 'Jms2Producer', 'JMS producer', 'Produces JMS streams');
    1279. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1280. values (51, 'JsonInput', 'JSON input', 'Extract relevant portions out of JSON structures (file or incoming field) and output rows');
    1281. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1282. values (52, 'JsonOutput', 'JSON output', 'Create JSON block and output it in a field or a file.');
    1283. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1284. values (53, 'KafkaConsumerInput', 'Kafka consumer', 'Consume messages from a Kafka topic');
    1285. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1286. values (54, 'KafkaProducerOutput', 'Kafka producer', 'Produce messages to a Kafka topic');
    1287. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1288. values (55, 'LDAPInput', 'LDAP 输入', 'Read data from LDAP host');
    1289. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1290. values (56, 'LDAPOutput', 'LDAP 输出', 'Perform Insert, upsert, update, add or delete operations on records based on their DN (Distinguished Name).');
    1291. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1292. values (57, 'LDIFInput', 'LDIF 输入', 'Read data from LDIF files');
    1293. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1294. values (58, 'LucidDBStreamingLoader', 'LucidDB streaming loader', 'Load data into LucidDB by using Remote Rows UDX.');
    1295. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1296. values (59, 'HadoopEnterPlugin', 'MapReduce input', 'Enter a Hadoop Mapper or Reducer transformation');
    1297. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1298. values (60, 'HadoopExitPlugin', 'MapReduce output', 'Exit a Hadoop Mapper or Reducer transformation ');
    1299. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1300. values (61, 'TypeExitExcelWriterStep', 'Microsoft Excel 输出', 'Writes or appends data to an Excel file');
    1301. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1302. values (62, 'MondrianInput', 'Mondrian 输入', 'Execute and retrieve data using an MDX query against a Pentaho Analyses OLAP server (Mondrian)');
    1303. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1304. values (63, 'MonetDBAgileMart', 'MonetDB Agile Mart', 'Load data into MonetDB for Agile BI use cases');
    1305. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1306. values (64, 'MonetDBBulkLoader', 'MonetDB 批量加载', 'Load data into MonetDB by using their bulk load command in streaming mode.');
    1307. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1308. values (65, 'MongoDbInput', 'MongoDB input', 'Reads from a Mongo DB collection');
    1309. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1310. values (66, 'MongoDbOutput', 'MongoDB output', 'Writes to a Mongo DB collection');
    1311. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1312. values (67, 'MQTTConsumer', 'MQTT consumer', 'Subscribes and streams an MQTT Topic');
    1313. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1314. values (68, 'MQTTProducer', 'MQTT producer', 'Produce messages to a MQTT Topic');
    1315. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1316. values (69, 'MultiwayMergeJoin', 'Multiway merge join', 'Multiway merge join');
    1317. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1318. values (70, 'MySQLBulkLoader', 'MySQL 批量加载', 'MySQL bulk loader step, loading data over a named pipe (not available on MS Windows)');
    1319. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1320. values (71, 'OlapInput', 'OLAP 输入', 'Execute and retrieve data using an MDX query against any XML/A OLAP datasource using olap4j');
    1321. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1322. values (72, 'OraBulkLoader', 'Oracle 批量加载', 'Use Oracle bulk loader to load data');
    1323. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1324. values (73, 'OrcInput', 'ORC input', 'Reads data from ORC file');
    1325. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1326. values (74, 'OrcOutput', 'ORC output', 'Writes data to an Orc file according to a mapping');
    1327. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1328. values (75, 'PaloCellInput', 'Palo cell input', 'Reads data from a defined Palo Cube ');
    1329. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1330. values (76, 'PaloCellOutput', 'Palo cell output', 'Writes data to a defined Palo Cube');
    1331. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1332. values (77, 'PaloDimInput', 'Palo dim input', 'Reads data from a defined Palo Dimension');
    1333. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1334. values (78, 'PaloDimOutput', 'Palo dim output', 'Writes data to defined Palo Dimension');
    1335. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1336. values (79, 'ParquetInput', 'Parquet input', 'Reads data from a Parquet file.');
    1337. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1338. values (80, 'ParquetOutput', 'Parquet output', 'Writes data to a Parquet file according to a mapping.');
    1339. insert into R_STEP_TYPE (id_step_type, code, description, helptext)
    1340. values (81, 'PentahoReportingOutput', 'Pentaho 报表输出', 'Executes an existing report (PRPT)');
    1341. commit;
    1342. insert into R_USER (id_user, login, password, name, description, enabled)
    1343. values (1, 'admin', '2be98afc86aa7f2e4cb79ce71da9fa6d4', 'Administrator', 'User manager', '1');
    1344. insert into R_USER (id_user, login, password, name, description, enabled)
    1345. values (2, 'guest', '2be98afc86aa7f2e4cb79ce77cb97bcce', 'Guest account', 'Read-only guest account', '1');
    1346. commit;
    1347. insert into R_VERSION (id_version, major_version, minor_version, upgrade_date, is_upgrade)
    1348. values (1, 5, 0, to_date('27-03-2023 15:03:37', 'dd-mm-yyyy hh24:mi:ss'), '0');
    1349. commit;

  • 相关阅读:
    hadoop使用简介
    C++学习之多继承
    【一】win10 下 ElasticSearch8.1.0、Head插件、Kibana下载与安装(图文详解)
    Android 前台服务崩溃RemoteServiceException
    Java - ConcurrentHashMap原理分析
    8.StringTable(字符串常量池)
    202212 青少年等级考试机器人实操真题三级
    【SpringMVC】JSON数据返回及异常处理(相信我看完就懂的差不多了)
    深入探索C语言自定义类型:打造你的编程世界
    第一百四十二回 如何使用intl插件实现国际化
  • 原文地址:https://blog.csdn.net/qq_38164123/article/details/132834903