上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: vim /usr/share/vim/vim82/defaults.vim 将set mouse改为r,保存退出即可 阅读全文
posted @ 2024-03-23 10:32 zhaoguanhao 阅读(82) 评论(0) 推荐(0) 编辑
摘要: debian11.6 download https://cdimage.debian.org/cdimage/archive/11.6.0/amd64/iso-dvd/ 阅读全文
posted @ 2024-03-23 09:44 zhaoguanhao 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 将数据还原到新的测试库,通常涉及数据库备份文件的还原或数据迁移。这里提供一种通用的SQL Server数据库还原到测试库的方法: 1. 数据库备份文件还原: •如果你有一个数据库备份文件(.bak),你可以通过SQL Server Management Studio (SSMS) 或 T-SQL命令 阅读全文
posted @ 2024-03-19 13:23 zhaoguanhao 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 用户数据库迁移至其他盘 1. 分离数据库: •登录到SQL Server Management Studio (SSMS)。 •右键点击要迁移的用户数据库,选择“任务(Tasks)” -> “分离(Detach)”。 •在弹出的对话框中,勾选你要迁移的数据库,并确认分离操作。 2. 物理文件移动: 阅读全文
posted @ 2024-03-19 13:11 zhaoguanhao 阅读(383) 评论(0) 推荐(0) 编辑
摘要: SELECT t.name AS TableName, c.name AS ColumnName, c.system_type_id AS DataTypeID, s.name AS DataTypeName, c.max_length AS MaxLength, c.is_nullable AS 阅读全文
posted @ 2024-03-19 10:55 zhaoguanhao 阅读(14) 评论(0) 推荐(0) 编辑
摘要: sqlserver查询每张表的大小MB SELECT t.NAME AS TableName, s.NAME AS SchemaName, p.rows AS RowCounts, SUM(a.total_pages) * 8 /1024 AS TotalSizeMB FROM sys.tables 阅读全文
posted @ 2024-03-19 10:52 zhaoguanhao 阅读(170) 评论(0) 推荐(0) 编辑
摘要: https://grafana.com/grafana/dashboards/ 阅读全文
posted @ 2024-03-18 16:32 zhaoguanhao 阅读(1) 评论(0) 推荐(0) 编辑
摘要: update & build @echo off rem for /f "tokens=2 delims==" %I in ('wmic os get localdatetime /value') do set datetime=%I for /f "tokens=2 delims==" %%I i 阅读全文
posted @ 2024-03-18 16:30 zhaoguanhao 阅读(2) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/Bug-Hunter/p/17237328.html 阅读全文
posted @ 2024-03-18 16:28 zhaoguanhao 阅读(75) 评论(0) 推荐(0) 编辑
摘要: https://blog.51cto.com/u_13066/6995364 阅读全文
posted @ 2024-03-14 18:30 zhaoguanhao 阅读(4) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页