摘要: 从克隆项目到修改并上传到自己 GitHub 仓库的流程(包括私钥配置) 生成 SSH 密钥 如果还没有生成 SSH 密钥,可以通过以下命令生成:ssh-keygen -t rsa -C "your-email@example.com" 系统会提示你保存密钥的位置,通常保存在 ~/.ssh/id_rs 阅读全文
posted @ 2024-10-19 16:03 林汉州win 阅读(553) 评论(0) 推荐(0)
摘要: 一、进行本地git信息配置 git config --global user.username xxxxx git config --global user.email xxxxx@github.com ssh-keygen -t rsa -C xxxx@github.com #本地生成私钥和密钥信 阅读全文
posted @ 2024-10-18 21:51 林汉州win 阅读(134) 评论(0) 推荐(0)
摘要: 安装 Hexo 相当简单,只需要先安装下列应用程序即可:https://hexo.io/zh-cn/docs/setup Node.js (Node.js 版本需不低于 10.13,建议使用 Node.js 12.0 及以上版本) 推荐使用nvm Git 安装hexo $ npm config se 阅读全文
posted @ 2024-10-18 20:58 林汉州win 阅读(36) 评论(0) 推荐(0)
摘要: nvm是什么 nvm全英文也叫node.js version management,是一个nodejs的版本管理工具。nvm和n都是node.js版本管理工具,为了解决node.js各种版本存在不兼容现象可以通过它可以安装和切换不同版本的node.js。 下载地址:https://github.co 阅读全文
posted @ 2024-10-18 20:37 林汉州win 阅读(141) 评论(0) 推荐(0)
摘要: -- 7788 SCOTT ANALYST 7566 1987-04-19 3000.00 20 select * from emp as of timestamp sysdate-1*30/24/60--to_timestamp('2022-04-08 10:30:56','yyyy-mm-dd 阅读全文
posted @ 2022-04-08 10:44 林汉州win 阅读(31) 评论(0) 推荐(0)
摘要: begin merge into emp_test a using emp b on (a.empno=b.empno) when matched then update set a.comm=b.comm when not matched then insert values(b.empno,b. 阅读全文
posted @ 2022-04-07 10:43 林汉州win 阅读(87) 评论(0) 推荐(0)
摘要: /日期******/ select trunc(sysdate) from dual --2013-01-06 今天的日期为2013-01-06 select trunc(sysdate, 'mm') from dual --2013-01-01 返回当月第一天. select trunc(sysd 阅读全文
posted @ 2022-04-06 15:34 林汉州win 阅读(106) 评论(0) 推荐(0)
摘要: 间隔时间: (1).每分钟执行 Interval ⇒ TRUNC(sysdate,'mi') + 1/ (24*60) 每小时执行 Interval ⇒ TRUNC(sysdate,'hh') + 1/ (24) (2).每天定时执行 例如:每天的凌晨1点执行 Interval ⇒ TRUNC(sy 阅读全文
posted @ 2022-04-06 15:02 林汉州win 阅读(81) 评论(0) 推荐(0)
摘要: select * from user_jobs ; SELECT * FROM EMP_MIDDLE; SELECT * FROM ETL_PROCLOG; SELECT * FROM EMP; select job, next_date, next_sec, failures, broken fr 阅读全文
posted @ 2022-04-02 17:51 林汉州win 阅读(124) 评论(0) 推荐(0)
摘要: create or replace procedure proc_batch_t IS --V_LOG ETL_PROCLOG%ROWTYPE; P_I_DATE varchar2(8); procname varchar2(100); v_sqlcount number(9); step_num 阅读全文
posted @ 2022-04-02 17:41 林汉州win 阅读(26) 评论(0) 推荐(0)