Kettle
https://blog.csdn.net/u013434750/article/details/60958990
kettle实现递归
https://www.cnblogs.com/wuyechun/p/6728280.html
--马金菊
https://my.oschina.net/majj
kettle Linxu 存储库
setfacl -m u:root:rwx -R etlRs/
setfacl -m u:root:rwx -R etlRs/
增量抽取模型:
https://my.oschina.net/majj/blog/1852534
https://www.javazhiyin.com/12405.html
https://blog.csdn.net/a275838263/article/details/51539643
使用Kettle实现数据实时增量同步
https://blog.csdn.net/dora_310/article/details/80511793
增量方式:
http://www.cnblogs.com/galeno/p/7324145.html
https://blog.csdn.net/zisheng_wang_data/article/details/71632011
https://blog.csdn.net/fangdengfu123/article/details/69229377
根据主键实现增量
https://blog.csdn.net/tom_fans/article/details/80340231
建模
PowerDesigner
https://blog.csdn.net/u011781521/article/details/78958529
oracle developer data moder
http://www.mamicode.com/info-detail-2070328.html
ORACLE递归函数
https://www.cnblogs.com/yingsong/p/5035907.html
-- 店家
SELECT T.CONSULT_CODE,
T.CONSULT_NAME,
T.CUST_ADD_039,
T.SAP_CODE,
T.CONSULT_TYPE,
T.RECOMMEND,
T.CHANNEL,
T.DELFLAG,
LEVEL AS CST_LEV
FROM (SELECT * FROM TB_CONSULTANT_MAST WHERE CONSULT_TYPE = '1') T
START WITH T.WORK = 4
CONNECT BY T.CUST_ADD_039 = PRIOR T.SAP_CODE
ORDER BY CST_LEV
-- 会员 W010236819