该文被密码保护。 阅读全文
posted @ 2017-06-25 18:25 chenzechao 阅读(1) 评论(0) 推荐(0)
摘要: ### create data ## cat /dev/urandom | head -1 | md5sum | head -c 8 ## echo "$(date +%s)"|sha256sum|base64|head -c 16;echo ## cat /dev/urandom | awk 'NR==1{print $0|"md5sum|base64|grep -Eo '^.{16}'";e... 阅读全文
posted @ 2017-06-21 23:18 chenzechao 阅读(821) 评论(0) 推荐(0)
摘要: 在eclipse中定位到maven项目的pom.xml文件右击pom.xml文件,选择Run As--》Maven build…在打开的页面中,GOLAS栏输入“dependency:copy-dependencies”,后点击“Run”即可在当前项目的目录的“targed/dependency”下 阅读全文
posted @ 2017-05-30 15:26 chenzechao 阅读(312) 评论(0) 推荐(0)
摘要: 1. 准备6和7的 YUM源包 1.1 centos 下载后解压到同一个目录 http://mirrors.163.com/centos/6/isos/x86_64/CentOS-6.9-x86_64-bin-DVD1.iso http://mirrors.163.com/centos/6/isos 阅读全文
posted @ 2017-05-28 13:38 chenzechao 阅读(614) 评论(1) 推荐(0)
摘要: export NLS_LANG=AMERICAN_AMERICA.UTF8 阅读全文
posted @ 2017-03-25 21:16 chenzechao 阅读(1783) 评论(0) 推荐(0)
摘要: 要想编辑/etc/fstab文件,我们需要在系统中重新挂载根目录,使其具有可读写状态,使用如下命令: mount -o remount,rw / 该条命令的作用是,以可读写的形式重新挂载根分区。 然后再编辑/etc/fstab文件,就可以正常编辑。如下: 阅读全文
posted @ 2017-02-05 16:05 chenzechao 阅读(741) 评论(0) 推荐(0)
摘要: VMware station 安装报错 failed to install the hcmon driver 1.将 C:\Windows\System32\drivers 下的hcmon.sys改名 2.重启电脑 3.重新安装VMware station即可 附上12.5.2的SN 12.5.2V 阅读全文
posted @ 2016-12-29 23:08 chenzechao 阅读(8546) 评论(0) 推荐(0)
摘要: 有两种含义的表大小。一种是分配给一个表的物理空间数量,而不管空间是否被使用。可以这样查询获得字节数:select segment_name, bytes from user_segments where segment_type = 'TABLE'; 或者 Select Segment_Name,S 阅读全文
posted @ 2016-12-05 15:53 chenzechao 阅读(11055) 评论(0) 推荐(0)
摘要: -- 1.判断表是否存在,如果存在则drop表 -- 2.创建表 -- 3.插入1W条数据 -- 4.每1K条commit一次 declare v_table varchar2(222):='STUDENT'; --表名 v_table_exists number:=0; --如果大于0,则表存在 v_sql_create varchar2(222... 阅读全文
posted @ 2016-12-02 00:00 chenzechao 阅读(497) 评论(0) 推荐(0)
摘要: maven编译项目时出错,提示信息如下:[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:testCompile (default-testCompile) on project spr 阅读全文
posted @ 2016-11-29 18:51 chenzechao 阅读(162) 评论(0) 推荐(0)