摘要: git安装与常用命令的使用 阅读全文
posted @ 2024-03-24 22:00 Incercadi 阅读(23) 评论(1) 推荐(0) 编辑
摘要: -- 查看当前所有事件 show events; -- 查看定时器功能是否开启 show variables like 'event_scheduler'; -- 开启/关闭定时器功能 set global event_scheduler = on/off; -- 针对某一事件开启与关闭 -- 开启 阅读全文
posted @ 2022-11-10 20:11 Incercadi 阅读(166) 评论(0) 推荐(0) 编辑
摘要: CMD运行 java -verbose 查找 JAVA 安装位置 找到kettle spoon安装目录找到一下位置修改 @echo off setlocal cd /D %~dp0 REM ************************************************** REM 阅读全文
posted @ 2022-08-16 10:26 Incercadi 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 新建 test.bat 文件,输入以下内容 @echo off set filePath=E://Desktop/pinglog.txt set ping_url=127.0.0.1 set sleep_times=1 :top echo starting test network... echo 阅读全文
posted @ 2022-07-25 09:38 Incercadi 阅读(1779) 评论(0) 推荐(0) 编辑
摘要: SELECT A.name AS table_name, B.name AS column_name, C.value AS column_description FROM sys.tables A INNER JOIN sys.columns B ON B.object_id = A.object 阅读全文
posted @ 2022-05-18 14:47 Incercadi 阅读(267) 评论(1) 推荐(0) 编辑
摘要: 使用MySQL将varchar转换成float是报错 执行语句: SELECT CAST(2000 AS FLOAT) as result 错误信息: 1064 - You have an error in your SQL syntax; check the manual that corresp 阅读全文
posted @ 2022-03-17 15:36 Incercadi 阅读(856) 评论(0) 推荐(0) 编辑
摘要: 获取当前系统时间并从中依次取出对应的年月日和时间和周 select year(now()) as year; select month(now()) as month; select day(now()) as day; select time(now()) as time; SELECT YEAR 阅读全文
posted @ 2022-03-17 14:29 Incercadi 阅读(1808) 评论(0) 推荐(0) 编辑
摘要: -- 查询死锁 select request_session_id spid, OBJECT_NAME(resource_associated_entity_id) tableName from sys.dm_tran_locks where resource_type='OBJECT' order 阅读全文
posted @ 2022-03-14 16:15 Incercadi 阅读(1131) 评论(0) 推荐(0) 编辑
摘要: 安装 dante-server apt-get install dante-server 为系统添加专用于代理服务器的用户 # 添加用户 useradd zhangjiagang # 修改添加的用户 zhnagjiagang 的密码 passwd zhangjiagang # 反复输入两次密码即可 阅读全文
posted @ 2021-08-21 14:55 Incercadi 阅读(3280) 评论(0) 推荐(0) 编辑
摘要: **原理:**通过修改DNS映射关系提高访问速度 找到Windows系统中 host 文件的位置,一般位于 C:\Windows\System32\drivers\etc。 修改 host 文件,以访问 github 网站为例,添加一下内容 140.82.113.4 https://github.c 阅读全文
posted @ 2021-08-21 13:52 Incercadi 阅读(84) 评论(0) 推荐(0) 编辑