SQLdiag Utility用于搜集诊断信息,给Microsoft技术支持人员做为判断依据. 使用SQLdiag 会进行信息搜集类型 Windows 系统性能日志 Windows 系统日志 SQL Server 性能信息 SQL Server 阻塞信息 SQL Server 配置信息 如何使用Sqldiag.exe 在Command Prompt中输入sqlDiag 第一次配置会出现以下信息,Ctrl+C结束 在以下目录(SQL Server2012(x64) for Windows 8)不同
Linux显示系统的诊断信息 youhaidong@youhaidong-ThinkPad-Edge-E545:~$ dmesg [ 1.492480] EDD information not available. [ 1.492521] PM: Hibernation image not present or could not be loaded. [ 1.506437] input: AT Translated Set 2 keyboard as /devices/platform/i80
使用该脚本可收集与undo相关的信息,在undo表空间出问题时可使用该脚本来诊断. 使用方法: 1.将脚本拷贝到服务器,创建文件保存,文件名可随意取,例如:diag.out 2.以sys用户登录数据库,执行脚本.执行方式为: SQL> @diag.out spool Undo_Diag.out ttitle off set verify off set termout off set trimout on set trimspool on REM REM --------------------
===================================== 查看当前连接到数据库的用户和Host ## 查看当前连接到数据库的用户和Host ## SELECT DISTINCT USER,HOST FROM `information_schema`.`PROCESSLIST` P WHERE P.USER NOT IN('root','repl','system user') \G ===================================== 查看每个host的当
Linux的ip命令和ifconfig类似,但前者功能更强大,并旨在取代后者. ifconfig属于net-tools.ip属于iproute2 设置一个IP地址,可以使用下列ip命令: ip addr add 192.168.17.30/24 dev eth0 请注意IP地址要有一个后缀,比如/24.这种用法用于在无类域内路由选择(CIDR)中来显示所用的子网掩码. 删除IP地址, ip addr del 192.168.17.30/24 dev eth0 列出路由表条目 ip route s