上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 40 下一页
摘要: ### 端口转发iptables -t nat -A PREROUTING -p tcp --dport 新端口 -j REDIRECT --to-ports 旧端口### 服务器中转firewall-cmd --add-forward-port=port=1433:proto=tcp:toaddr 阅读全文
posted @ 2019-05-31 16:39 chenzechao 阅读(5740) 评论(0) 推荐(0)
摘要: select name ,REGEXP_REPLACE(str,"[\\[\"\\]]",'') from ( select trans_array(1, ",", name,list) as (name,str) from ( select '经办人' as name,'["1001","1002"]' as list ) ... 阅读全文
posted @ 2019-05-30 11:28 chenzechao 阅读(3955) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2019-05-09 15:09 chenzechao 阅读(2) 评论(0) 推荐(0)
摘要: dev development 开发环境stg stage 测试环境prd product 线上环境 阅读全文
posted @ 2019-05-05 11:20 chenzechao 阅读(5191) 评论(0) 推荐(0)
摘要: 1.什么是数据模型? 数据模型就是数据的组织和存储方法。主要关注的是从业务、数据存取和使用角度合理存储数据。 2.典型数据仓库建模方法论 ER模型 维度模型(建模四步曲:确定业务流程->确定粒度->确定维度->确定事实表) 1.体系架构 2.模型分层 主要分为三大层(4小层): 操作数据层(ODS) 公共维度模型层(CDM) ... 阅读全文
posted @ 2019-04-30 10:37 chenzechao 阅读(518) 评论(0) 推荐(0)
摘要: 查看执行计划 ref: https://www.cnblogs.com/xinysu/p/7860609.html 阅读全文
posted @ 2019-04-04 10:55 chenzechao 阅读(134) 评论(0) 推荐(0)
摘要: # 定义初始化map declare -A map=(["100"]="1" ["200"]="2") # 输出所有key echo ${map[@]} # 输出key对应的值 echo ${map["100"]} # 遍历map for key in ${!map[@]} do echo ${map[${key}]} done #!/bin/bash #*****... 阅读全文
posted @ 2019-04-03 16:34 chenzechao 阅读(3300) 评论(0) 推荐(0)
摘要: ### 源文件 cat > tmpb <<'EOF' dbname:db_a,start_time:17:01:13 query_end_time:17:01:13,query_total_time:0,data_record_num is [341],data_size is 337K dbname:db_a,end_time:17:01:13 total time:0 =========... 阅读全文
posted @ 2019-04-03 09:41 chenzechao 阅读(3824) 评论(0) 推荐(0)
摘要: WSL2 Ubuntu 22.04 开启ssh并设置自动启动 – About Lionared # 更改apt源 cat > /etc/apt/sources.list <<'END' #阿里云 deb http://mirrors.aliyun.com/ubuntu/ trusty main re 阅读全文
posted @ 2019-03-29 11:42 chenzechao 阅读(1481) 评论(0) 推荐(0)
摘要: 项目中多个实例,而每个实例均启动一个程序,本脚本将多个程序统一进行监控,并支持文件配置 PS. 发现zless实际是由less和zgrep组成 阅读全文
posted @ 2019-03-22 11:10 chenzechao 阅读(1431) 评论(0) 推荐(0)
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 40 下一页