2022年12月1日
摘要: 1、文本背景色 <table><tr><td bgcolor=#E8FFE8>标题一</td></tr></table> <table><tr><td bgcolor=#B45B3E><font color=white>标题二</font></td></tr></table> <table><tr> 阅读全文
posted @ 2022-12-01 11:06 蜗牛也是妞 阅读(17) 评论(0) 推荐(0) 编辑
  2022年8月19日
摘要: 创建新的表空间 创建数据库示例参考:https://www.cnblogs.com/zyxnhr/p/11789306.html #1、切换到oracle用户: su - oracle #2、在/home/oracle下创建tablespace文件夹 mkdir /home/oracle/table 阅读全文
posted @ 2022-08-19 15:30 蜗牛也是妞 阅读(686) 评论(0) 推荐(0) 编辑
  2022年8月17日
摘要: 1、docker-compose安装 参考:https://www.cnblogs.com/snailgirl/p/15503867.html2、安装git & 配置github yum -y install git 配置github参考:https://blog.csdn.net/qq_42690 阅读全文
posted @ 2022-08-17 10:01 蜗牛也是妞 阅读(638) 评论(1) 推荐(0) 编辑
摘要: 1、docker安装参考: https://www.cnblogs.com/snailgirl/p/15503867.html2、拉取镜像 docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 3、创建容器 docker r 阅读全文
posted @ 2022-08-17 09:28 蜗牛也是妞 阅读(1751) 评论(0) 推荐(0) 编辑
  2022年7月20日
摘要: 保留2位小数 SELECT to_char('3223.23366755','fm999990.00') from dual --查询结果 3223.23 阅读全文
posted @ 2022-07-20 10:58 蜗牛也是妞 阅读(115) 评论(0) 推荐(0) 编辑
  2022年7月8日
摘要: 一、安装python3.6.8环境二、python3需要安装的库: 安装方式一: 安装requests库: pip install requests 安装robotframework: pip install robotframework 安装robotframework-ride: pip ins 阅读全文
posted @ 2022-07-08 15:49 蜗牛也是妞 阅读(597) 评论(0) 推荐(0) 编辑
  2022年7月6日
摘要: 1、列内容去重,【姓名】列去重保存至【姓名1】列,公式:=IFERROR(INDEX(A1:A8,SMALL(IF(MATCH(A1:A8&"",A1:A8&"",)=ROW(A1:A8),ROW(A1:A8)),ROW(2:2))),"") 2、【姓名2】列内容是否在【姓名1】列中存在,1表示存在 阅读全文
posted @ 2022-07-06 14:17 蜗牛也是妞 阅读(663) 评论(0) 推荐(0) 编辑
  2022年7月4日
摘要: 添加 - 断言 - BeanShell断言: // 1. 状态码断言 // 字符串只能使用双引号,字符串相等要使用 " ".equals(" ")表达式 log.info("状态码:" + ResponseCode); if (ResponseCode.equals("200")){ Failure 阅读全文
posted @ 2022-07-04 10:07 蜗牛也是妞 阅读(545) 评论(0) 推荐(0) 编辑
  2022年4月29日
摘要: 已删除的文件的进程占用空间导致根分区爆满 方式1:不建议采用,风险大 du -sh ./ # 查看后发现根目录空间并未沾满 lsof |grep delete #查看已删除的文件,但还占用空间 # java 28893 jenkins 19r REG 8,3 1484022 5376261 /tmp 阅读全文
posted @ 2022-04-29 20:59 蜗牛也是妞 阅读(266) 评论(0) 推荐(0) 编辑
  2022年3月24日
摘要: 1. 用户名和密码设置 # 设置用户名 git config --global user.name "username" # 设置邮箱 (没有双引号) git config --global user.email useremail@qq.com # 查看用户名和密码 git config user 阅读全文
posted @ 2022-03-24 11:00 蜗牛也是妞 阅读(40) 评论(0) 推荐(0) 编辑