code前行

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2020年1月3日

摘要: tar命令相关 https://www.cnblogs.com/zhangyongsheng/p/6074829.html https://www.cnblogs.com/manong--/p/8012324.html 参数: -c: 建立压缩档案-x:解压-t:查看内容-r:向压缩归档文件末尾追加 阅读全文
posted @ 2020-01-03 17:31 code前行 阅读(506) 评论(0) 推荐(0) 编辑

2019年12月9日

摘要: IBM官网 https://www.ibm.com/support/knowledgecenter/zh/SSEPGG_9.7.0/com.ibm.db2.luw.sql.ref.doc/doc/r0000919.html 深入理解DB2索引 https://blog.csdn.net/idber/ 阅读全文
posted @ 2019-12-09 09:53 code前行 阅读(514) 评论(0) 推荐(0) 编辑

2019年12月4日

摘要: 遇到了:由于分发协议错误而导致,这个错误 其实是SQL语句的长度超出了db2缓存的大小,也有可能是驱动版本不对。 阅读全文
posted @ 2019-12-04 09:10 code前行 阅读(700) 评论(0) 推荐(0) 编辑

2019年9月17日

摘要: 替换换行 示例:将,替换为换行 搜索 > 替换 查找什么框中输入 ‘,’,替换为框中输入 ^r^n。然后替换。 大小写转换 转大写:alt+F5 转小写:ctrl+F5 阅读全文
posted @ 2019-09-17 09:13 code前行 阅读(439) 评论(0) 推荐(0) 编辑

摘要: 每隔5秒执行一次:*/5 * * * * ? 每隔1分钟执行一次:0 */1 * * * ? 每天23点执行一次:0 0 23 * * ? 每天凌晨1点执行一次:0 0 1 * * ? 每月1号凌晨1点执行一次:0 0 1 1 * ? 每月最后一天23点执行一次:0 0 23 L * ? 每周星期天 阅读全文
posted @ 2019-09-17 09:09 code前行 阅读(2420) 评论(0) 推荐(0) 编辑

2019年8月20日

摘要: 返回上一步 ctrl + alt + left 代码调试 下一步(不进入方法) F8 代码调试 下一步(进入方法) F7 代码调试直到下一个断点 alt + F9 生成类继承图 ctrl + shift + alt + u 搜索类 ctrl + n 进入实现类 选中方法 ctrl + b 1、第一中 阅读全文
posted @ 2019-08-20 15:47 code前行 阅读(720) 评论(0) 推荐(0) 编辑

2019年8月16日

摘要: HDFS 连接获取时注意事项: 使用 FileSystem.get(Configuration conf) 方式来获取 FileSystem,得到的将是一个单利对象。 该方式默认从缓存中取出一个连接。在多线程环境下可能造成 FileSystem 异常 使用 FileSystem.newInstanc 阅读全文
posted @ 2019-08-16 10:30 code前行 阅读(312) 评论(0) 推荐(0) 编辑

2019年8月15日

摘要: 删除文件夹:hdfs dfs -rm -r directory 删除文件: hdfs dfs -rm filepath 更改文件所有者:hdfs dfs -chown -R userName filepath 更改文件所属组:hdfs dfs -chgrp -R groupName filePath 阅读全文
posted @ 2019-08-15 17:24 code前行 阅读(155) 评论(0) 推荐(0) 编辑

2019年8月8日

摘要: --删除字段alter table studentinfo drop column abc; --修改字段类型alter table studentinfo alter column stutel set data type char(11);(颜色标记为,与SQL Server的区别) 增加字段 阅读全文
posted @ 2019-08-08 16:35 code前行 阅读(409) 评论(0) 推荐(0) 编辑

2019年7月16日

摘要: http://blog.itpub.net/31545816/viewspace-2215281/ https://www.cnblogs.com/liuling/p/2013-6-19-01.html https://blog.csdn.net/jiachengwin/article/detail 阅读全文
posted @ 2019-07-16 17:50 code前行 阅读(1453) 评论(0) 推荐(0) 编辑