上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 39 下一页
摘要: 2020-07-24 11:23:12.145 [0-0-0-writer] WARN CommonRdbmsWriter$Task - 回滚此次写入, 采用每次写入一行方式提交. 因为:[9001, 2020072411231201011105516903453695186] unsupport 阅读全文
posted @ 2020-07-24 17:13 chenzechao 阅读(2117) 评论(2) 推荐(0)
摘要: ref: https://www.cnblogs.com/soymilk2019/p/11758086.html 阅读全文
posted @ 2020-07-22 16:29 chenzechao 阅读(934) 评论(0) 推荐(1)
摘要: https://www.jetbrains.com/pycharm/download/download-thanks.html https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ https://www.cnblogs.com/pergran 阅读全文
posted @ 2020-07-20 22:49 chenzechao 阅读(176) 评论(0) 推荐(0)
摘要: 这个方案是之前一个前同事问我时想出来的,但当时没进行实践,只是觉得可行。 今天终于也遇到这个场景,所以就进行测试。 两个库进行测试,还有其它的方案,比如spark,python,落地文件再对比差异等,各有优劣,比如spark需要集群的支持,并且速度也不是很快。ptyhon对大数据量的支持不是很好,落 阅读全文
posted @ 2020-07-20 16:16 chenzechao 阅读(245) 评论(0) 推荐(0)
摘要: # 1. 拉取centos7镜像 docker pull centos:7 # 2. 启动镜像centos7,如果不指定 /bin/bash,容器运行后会自动停止 docker run -d -i -t <IMAGE ID> /bin/bash # 3. 进入容器 docker exec -it < 阅读全文
posted @ 2020-07-09 23:27 chenzechao 阅读(318) 评论(0) 推荐(0)
摘要: 1. 登陆鉴权方式不同,需要修改 select user,host,plugin from mysql.user; 2. 不支持CREATE TABLE ... SELECT. 3. 内存持续上涨,不下降 4. SQL执行缓慢 阅读全文
posted @ 2020-07-07 16:22 chenzechao 阅读(179) 评论(0) 推荐(0)
摘要: -- rds5.6 执行此类SQL导致数据库崩溃 select * from infomation.tables where table_shema='cc' and table_name in('XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX 阅读全文
posted @ 2020-07-07 12:54 chenzechao 阅读(132) 评论(0) 推荐(0)
摘要: docker: https://www.cnblogs.com/qjfoidnh/p/12685060.html 在Linux中使用selenium(环境部署) 1、安装chrome 用下面的命令安装Google Chrome yum install https://dl.google.com/li 阅读全文
posted @ 2020-07-01 18:45 chenzechao 阅读(528) 评论(0) 推荐(0)
摘要: with recursive cte(n) as ( select 1 as n union all select n + 1 from cte where n<5 ) select n from cte ; https://www.cnblogs.com/songgj/p/10658916.htm 阅读全文
posted @ 2020-06-09 14:30 chenzechao 阅读(950) 评论(0) 推荐(0)
摘要: with data as ( select t1.* ,row_number() over(partition by id order by end_date desc) as rn from ( select 1 as id,20 as status,'2020-03-28' as start_d 阅读全文
posted @ 2020-06-04 16:54 chenzechao 阅读(1303) 评论(0) 推荐(0)
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 39 下一页