上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 55 下一页
摘要: https://www.cnblogs.com/jenrrychen/p/4869438.html 阅读全文
posted @ 2022-09-02 11:08 雪竹子 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 背景 适用于:Microsoft SQL Server 2008、Microsoft SQL Server 2008 R2、Microsoft SQL Server 2012、Microsoft SQL Server 2014、Microsoft SQL Server 2016、Microsoft 阅读全文
posted @ 2022-08-22 20:52 雪竹子 阅读(612) 评论(0) 推荐(0) 编辑
摘要: https://sqlserverbuilds.blogspot.com/2012/01/sql-server-2012-versions.html 阅读全文
posted @ 2022-08-19 13:17 雪竹子 阅读(7) 评论(0) 推荐(0) 编辑
摘要: Let consider the below example, where we list all the indexes in the database. sql> select index_name from dba_indexes where tablespace_name ='EXAMPLE 阅读全文
posted @ 2022-08-11 21:57 雪竹子 阅读(48) 评论(0) 推荐(0) 编辑
摘要: In this article I would like talk about TNS connection issues. One of the application was facing connection issues to database. Application was config 阅读全文
posted @ 2022-08-01 10:14 雪竹子 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 测试数据库版本 SQL server 2012 批量备份脚本 设定好备份目录,以及备份文件名格式,此处我们备份目录为d:\backup 备份文件格式为{dbname}.bak 1 DECLARE 2 @FileName VARCHAR(200), 3 @CurrentTime VARCHAR(50) 阅读全文
posted @ 2022-07-22 19:51 雪竹子 阅读(901) 评论(0) 推荐(0) 编辑
摘要: 收到mysql主从中断报警邮件,马上登上服务器查看,发现是中继日志损坏。 Show slave status\G,提示中继日志损坏,按以往的做法,根据提示重新指定合适的日志文件以及pos点。 Relay log read failure: Could not parse relay log even 阅读全文
posted @ 2022-07-20 21:13 雪竹子 阅读(187) 评论(0) 推荐(0) 编辑
摘要: Oracle script to check the database growth SET LINESIZE 200SET PAGESIZE 200COL "Database Size" FORMAT a13COL "Used Space" FORMAT a11COL "Used in %" FO 阅读全文
posted @ 2022-07-12 15:48 雪竹子 阅读(32) 评论(0) 推荐(0) 编辑
摘要: find . -name "*" -type f -size 0c | xargs -n 1 rm -f 用这个还可以删除指定大小的文件,只要修改对应的 -size 参数就行,例如: find . -name "*" -type f -size 1024c | xargs -n 1 rm -f 就是 阅读全文
posted @ 2022-07-05 15:42 雪竹子 阅读(1590) 评论(0) 推荐(1) 编辑
摘要: 一、方法一(通过font方法): <font color="red" size="10">This is text</font> 二、方法二 1.文本颜色设置 $\textcolor{Blue}{文字} $。 替换颜色代码就可以实现不同的颜色。代码也可以简写为: $\color{Blue}{文字} 阅读全文
posted @ 2022-06-29 17:20 雪竹子 阅读(2738) 评论(0) 推荐(0) 编辑
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 55 下一页