博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PerfMon.exe通过命令管理计数器
阅读量:4914 次
发布时间:2019-06-11

本文共 863 字,大约阅读时间需要 2 分钟。

通过PerfMon命令可以管理计数器,添加删除调整等等。

例1:Logman:在本地和远程系统上,管理和调度性能计数器和事件跟踪日志。

master..xp_cmdshell 'logman query'

例2:停止Performance计数器

master..xp_cmdshell 'logman Stop Performance'

例3:删除Performance计数器

master..xp_cmdshell 'logman Delete Performance'

例4:bcp导出到文本文件上

"/CRAW"参数来禁止字符代码自动转换

"-T"信任链接,否则需指定-U, -P

"-c"使用char类型做为存储类型,没有前缀且以"\t"做为字段分割符,以"\n"做为行分割符

master..xp_cmdshell 'BCP TempDB.dbo.Temp_PfConfigure OUT "d:\PerformanceConfigure.txt" -T -c -CRAW'

例5:根据文件创建计数器

"-si"指定收集间隔,默认15秒

"-cf"创建计数器名称的路径

"-f"计数器结果的输出方式,这里指定:SQL

"-o"计数器结果的输出位置,这里指定输出ODBC连接Performance和日志名称为Performance

"-v"将版本控制信息添加到输出文件和路径名称的末尾

master..xp_cmdshell 'logman Create counter Performance -si 00:00:15 -cf "d:\PerformanceConfigure.txt" -f sql -o Performance!Performance -v mmddhhmm'

例6:启动Performance计数器

master..xp_cmdshell 'logman Start Performance'

转载于:https://www.cnblogs.com/chhuang/p/4170233.html

你可能感兴趣的文章
jquery插件
查看>>
tar的基础用法
查看>>
Python编码记录
查看>>
智能社js学习笔记
查看>>
Data Structures and Program Design in C++
查看>>
轮子:读取config.ini文件
查看>>
Java 最常见 200+ 面试题全解析:面试必备(转载)
查看>>
LinkedList
查看>>
Spring框架下PropertyPlaceholderConfigurer类配置roperties文件
查看>>
素因数分解式求法
查看>>
GarsiaWachs算法
查看>>
eclipse 快捷键
查看>>
mysql错误:Column ‘id’ in field list is ambiguous的解决方法
查看>>
HDFS超租约异常总结(org.apache.hadoop.hdfs.server.namenode.LeaseExpiredException)
查看>>
重构之路第二篇——在对象之间搬移特性的几种方法
查看>>
多线程杂谈
查看>>
linux python3获取ip地址
查看>>
神药iberogast
查看>>
SQL查询优化
查看>>
使用子查询
查看>>