剑道第一仙

导航

上一页 1 2 3 4 5 6 7 ··· 13 下一页

2023年10月8日 #

svn使用说明

摘要: 参考:https://blog.csdn.net/aa35434/article/details/124212461 翻译 搜索 复制 阅读全文

posted @ 2023-10-08 10:56 剑道第一仙 阅读(21) 评论(0) 推荐(0)

2023年10月5日 #

linux虚拟机网络配置

摘要: 我的装机环境是centos7版本 【1】安装虚拟机vmware之后,点击菜单栏编辑——虚拟网络编辑器,点击Vmnet8,查看子网IP地址段 【2】进入主机目录/etc/sysconfig/network-scripts,编辑ifcfg-ens33 [root@xxpcV7-01 network-sc 阅读全文

posted @ 2023-10-05 23:25 剑道第一仙 阅读(24) 评论(0) 推荐(0)

2023年10月4日 #

Eclipse快捷键

摘要: 经常用到的Eclipse快捷键 存盘 Ctrl+s(肯定知道)注释代码 Ctrl+/取消注释 Ctrl+\(Eclipse3已经都合并到Ctrl+/了)代码辅助 Alt+/快速修复 Ctrl+1代码格式化 Ctrl+Shift+f整理导入 Ctrl+Shift+o切换窗口 Ctrl+f6<可改为ct 阅读全文

posted @ 2023-10-04 11:23 剑道第一仙 阅读(59) 评论(0) 推荐(0)

2023年9月28日 #

[Linux] shell文本处理记录 - 查找、增删特定行及附近行

摘要: 转:https://blog.csdn.net/wy_hhxx/article/details/127416595 查找username所在行并删除此行,输出到新文件sed '/username/,+d' 04filename.log > 04filename_new.log 目录 1.grep查找 阅读全文

posted @ 2023-09-28 17:43 剑道第一仙 阅读(752) 评论(0) 推荐(0)

clickhouse 踩过的坑

摘要: 【1】clickhouse left join 时 where条件判空无效 DROP TABLE if exists tablename1; create table tablename1 engine = MergeTree order by column1 as select t.* from 阅读全文

posted @ 2023-09-28 09:33 剑道第一仙 阅读(316) 评论(0) 推荐(0)

2023年9月27日 #

clickhouse导入导出数据

摘要: 参考:https://blog.csdn.net/sinat_24985411/article/details/128082838 1、clickhouse导入数据 # 导入带表头的txt文件(转,未验证)xxx@xxx:/home/xxx> clickhouse-client -h 【hostIP 阅读全文

posted @ 2023-09-27 16:04 剑道第一仙 阅读(838) 评论(0) 推荐(0)

clickhouse linux 客户端安装和使用

摘要: clickhouse linux 客户端安装步骤 1:上传安装文件到服务器目录(可以使用正常用户上传) 2:使用root用户安装,否则会提示权限不够报错,此外非X86架构服务器也可能会报错(如linuxone服务器报错:package clickhouse-common-static-0:23.3. 阅读全文

posted @ 2023-09-27 14:43 剑道第一仙 阅读(531) 评论(0) 推荐(0)

2023年9月15日 #

excel查找内容是否在某一列中

摘要: 【1】excel查找内容是否在某一列中 查询J553 是否在 $H$1:$H1006 范围内,如找到显示行号,否则显示“未找到” =IFNA(MATCH(J553,$H$1:$H1006,0),"未找到") 翻译 搜索 复制 阅读全文

posted @ 2023-09-15 13:53 剑道第一仙 阅读(96) 评论(0) 推荐(0)

2023年9月11日 #

gbase查看表结构

摘要: show create table tablename desc tablename; 翻译 搜索 复制 阅读全文

posted @ 2023-09-11 14:02 剑道第一仙 阅读(291) 评论(0) 推荐(0)

2023年9月8日 #

java正则表达式(一)

摘要: 转: https://www.cnblogs.com/-w-k-/p/16040896.html 一、校验数字的表达式 1 数字:^[0-9]*$ 2 n位的数字:^\d{n}$ 3 至少n位的数字:^\d{n,}$ 4 m-n位的数字:^\d{m,n}$ 5 零和非零开头的数字:^(0|[1-9] 阅读全文

posted @ 2023-09-08 15:36 剑道第一仙 阅读(71) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 7 ··· 13 下一页