profiler跟踪事件存为表之后性能分析工具
使用profiler建立跟踪,将跟踪结果存到表中,使用下面存储过程执行 exec temp_profiler 'tra_tablename'对表数据进行处理归类,然后进行性能分析
1.先建存储过程
2.再执行下面的查询
--处理trace数据
--exec temp_profiler 'temp_profiler201509061618'
select top 10000 * from temp_profiler201509061618 order by reads desc
--1)查出最耗时的语句或过程
select * from temp_profiler201509061618_stat order by total_duration desc
--3) 统计某个过程或者sql语句的个数
select proc_sql_id ,count(1) counts from temp_profiler201509061618 group by proc_sql_id order by counts desc
--2)查询某个过程或者sql语句详情
select * from temp_profiler201509061618 where proc_sql_id = 3--
select * from temp_profiler201509061618 where proc_sql_id = 22--
select * from temp_profiler201509061618 where proc_sql_id = 18--
exec temp_profiler 'temp_profiler201508210920'
select top 10000 * from temp_profiler201508210920 order by reads desc
select * from temp_profiler201508210920_stat order by total_duration desc
select proc_sql_id ,count(1) counts from temp_profiler201508210920 group by proc_sql_id order by counts desc
select * from temp_profiler201508210920 where proc_sql_id = 2--5761
select * from temp_profiler_2015060816 where textdata like 'exec PageList%'
USE [temp_profiler]
GO /****** Object: StoredProcedure [dbo].[temp_profiler] Script Date: 08/26/2015 10:16:31 ******/
SET ANSI_NULLS ON
GO SET QUOTED_IDENTIFIER ON
GO -- =============================================
--http://www.cnblogs.com/davidhou
-- Author: <houpeidong>
-- Create date: <20150611>
-- Description: <profiler抓取到的数据存入表中,此存储过程功能为性能分析工具,表名不能加中括号>
-- =============================================
CREATE PROCEDURE [dbo].[temp_profiler]
@tblName NVARCHAR(500)
as
begin SET NOCOUNT ON --DECLARE @tblName NVARCHAR(500) ;
--set @tblName = 'temp_profiler_20151' ; DECLARE @sqlStr NVARCHAR(2000); --10. 对trace表的数据进行处理前的一些准备:
-- 时间改为毫秒
SET @sqlStr = N'update ' + @tblName +' set duration = duration / 1000 where duration is not null ';
EXECUTE sp_executesql @sqlStr ; --update temp_profiler_2015060917 set duration = duration / 1000 where duration is not null -- 时间改为毫秒 --修改 textdata 为 nvarchar(max)类型,因为textdata默认保存为ntext类型,处理不方便
SET @sqlStr = N'alter table '+@tblName+' alter column textdata nvarchar(max)';
EXECUTE sp_executesql @sqlStr ;
--alter table temp_profiler_2015060917 alter column textdata nvarchar(max) --新增两个字段
SET @sqlStr = N'alter table '+@tblName+' add proc_sql nvarchar(max)';
EXECUTE sp_executesql @sqlStr ;
--alter table temp_profiler_2015060917 add proc_sql nvarchar(max) -- 保存该textdata调用的存储过程,原始sql等; SET @sqlStr = N'alter table '+@tblName+' add proc_sql_id int';
EXECUTE sp_executesql @sqlStr ;
--alter table temp_profiler_2015060917 add proc_sql_id int -- 为存储过程和原始sql指定一个编号 --11. 处理trace数据
-- 1)找出执行的sql脚本(带参数) ,更新到 proc_sql 字段
SET @sqlStr = N'
update '+@tblName+'
set proc_sql = replace(left(textdata,charindex('''''',N'''''',textdata) - 1),''exec sp_executesql N'''''','''')
where (proc_sql is null or proc_sql = '''' )
and charindex(''exec sp_executesql N'', textdata ) = 1
';
EXECUTE sp_executesql @sqlStr ; --2)找出执行的存储过程,更新到 proc_sql 字段
SET @sqlStr = N'
update '+@tblName+'
set proc_sql =
replace(
replace(
left(
right(textdata,len(textdata) - charindex(''exec '',textdata) + 3),
charindex(''@'',
right(textdata,len(textdata) - charindex(''exec '',textdata) + 3)
)
),''exec '','''')
,''@'','''')
where (proc_sql is null or proc_sql = '''' )
and charindex(''exec '',textdata) > 0
';
EXECUTE sp_executesql @sqlStr ; --3)找出没有参数的sql脚本,更新到 proc_sql 字段
--update temp_profiler_2015060917 set proc_sql = textdata where proc_sql is null and textdata is not null
SET @sqlStr = N'update '+@tblName+' set proc_sql = textdata where proc_sql is null and textdata is not null'
EXECUTE sp_executesql @sqlStr ; --12. 统计
--1)新建表,用于保存统计数据,trace_20130910每个proc_sql对应一行
SET @sqlStr = N'
create table ['+@tblName+'_stat]
(
id int identity(1,1) primary key,
databaseid int,
proc_sql nvarchar(max), -- 对应trace_20130910的proc_sql
total_duration bigint, -- 总耗时
max_duration int, -- 该语句最大耗时
min_duration int, -- 该语句最小耗时
rate_duration int -- 所耗时间百分比
)
';
EXECUTE sp_executesql @sqlStr ; --2)生成统计数据,存入1)步的表中 trace_20130910_stat]
SET @sqlStr = N'
;with cte
(
databaseid,
proc_sql,
total_duration,
max_duration ,
min_duration
) as
(select databaseid,
proc_sql,
sum(duration) as total_duration,
max(duration) as max_duration,
min(duration) as min_duration
from '+@tblName+'
where proc_sql is not null and proc_sql <> ''''
group by databaseid,proc_sql
)
, cte2 as
(-- 总耗时,用来计算百分比
select sum(total_duration) as total_duration from cte
)
insert into ['+@tblName+'_stat]
(
databaseid,
proc_sql,
total_duration,
max_duration ,
min_duration ,
rate_duration
)
select
databaseid,
proc_sql,
total_duration,
max_duration ,
min_duration ,
100 * total_duration / ( select total_duration from cte2 ) as rate_duration
from cte
order by rate_duration desc
';
EXECUTE sp_executesql @sqlStr ; -- 3)更新记录表[trace_20130910]的 proc_sql_id
SET @sqlStr = N'
update ['+@tblName+'] set proc_sql_id = b.id
from ['+@tblName+'] a inner join ['+@tblName+'_stat] b
on a.databaseid = b.databaseid and a.proc_sql = b.proc_sql
';
EXECUTE sp_executesql @sqlStr ;
end ;
GO
profiler跟踪事件存为表之后性能分析工具的更多相关文章
- CLR Profiler 性能分析工具
CLR Profiler 性能分析工具 CLR Profiler 性能分析工具 CLR Profiler 有两个版本,分别用于CLR1.1 和 CLR2.0,至于CLR4试了一些也可以,但不知道是否完 ...
- Java 性能分析工具 , 第 1 部分: 操作系统工具
引言 性能分析的前提是将应用程序内部的运行状况以及应用运行环境的状况以一种可视化的方式更加直接的展现出来,如何来达到这种可视化的展示呢?我们需要配合使用操作系统中集成的程序监控工具和 Java 中内置 ...
- 11个Visual Studio代码性能分析工具
软件开发中的性能优化对程序员来说是一个非常重要的问题.一个小问题可能成为一个大的系统的瓶颈.但是对于程序员来说,通过自身去优化代码是十分困难的.幸运的是,有一些非常棒的工具可以帮助程序员进行代码分析和 ...
- 系统级性能分析工具 — Perf
从2.6.31内核开始,linux内核自带了一个性能分析工具perf,能够进行函数级与指令级的热点查找. perf Performance analysis tools for Linux. Perf ...
- 系统级性能分析工具perf的介绍与使用[转]
测试环境:Ubuntu16.04(在VMWare虚拟机使用perf top存在无法显示问题) Kernel:3.13.0-32 系统级性能优化通常包括两个阶段:性能剖析(performance pro ...
- .NET 11 个 Visual Studio 代码性能分析工具
原文地址 软件开发中的性能优化对程序员来说是一个非常重要的问题.一个小问题可能成为一个大的系统的瓶颈.但是对于程序员来说,通过自身去优化代码是十分困难的.幸运的是,有一些非常棒的工具可以帮助程序员进行 ...
- Android 常用的性能分析工具详解:GPU呈现模式, TraceView, Systrace, HirearchyViewer(转)
此篇将重点介绍几种常用的Android性能分析工具: 一.Logcat 日志 选取Tag=ActivityManager,可以粗略地知道界面Displaying的时间消耗.当我们打开一个Activit ...
- 11 个 Visual Studio 代码性能分析工具
软件开发中的性能优化对程序员来说是一个非常重要的问题.一个小问题可能成为一个大的系统的瓶颈.但是对于程序员来说,通过自身去优化代码是十分困难的.幸运的是,有一些非常棒的工具可以帮助程序员进行代码分析和 ...
- 系统级性能分析工具 — Perf【转】
转自:https://blog.csdn.net/zhangskd/article/details/37902159 版权声明:本文为博主原创文章,转载请注明出处. https://blog.csdn ...
随机推荐
- 所以学树分块的时候为什么要看vector啊sjb
明明应该拼命刷题却悠哉补着vector和指针 -------------------------------------------------------------------题记 http:// ...
- OpenSSL Heartbleed “心脏滴血”漏洞简单攻击示例
OpenSSL Heartbleed漏洞的公开和流行让许多人兴奋了一把,也让另一些人惊慌了一把. 单纯从攻击的角度讲,我已知道的,网上公开的扫描工具有: 1. Nmap脚本ssl-heartblee ...
- python开发_搜索本地文件信息写入文件
功能:#在指定的盘符,如D盘,搜索出与用户给定后缀名(如:jpg,png)相关的文件 #然后把搜索出来的信息(相关文件的绝对路径),存放到用户指定的 #文件(如果文件不存在,则建立相应的文件)中 之前 ...
- VS2015启动拷贝过来的项目无法启动IIS Express
最近将VS2015开发的项目考给同事,告知无法启动,大概分析了一下原因: 1.查看端口是否占用冲突 2.在解决方案上右键选择,清理解决方案->重建解决方案 3.以上两个方法还不生效的话,在Web ...
- POJ 1222 POJ 1830 POJ 1681 POJ 1753 POJ 3185 高斯消元求解一类开关问题
http://poj.org/problem?id=1222 http://poj.org/problem?id=1830 http://poj.org/problem?id=1681 http:// ...
- ubuntu上安装systemtap
http://www.cnblogs.com/hdflzh/archive/2012/07/25/2608910.html
- chrome插件开发-----------将网址转化成二维码website2QRcode
微信自带的浏览器无法输入链接,仅仅能通过扫描二维码实现.可是有时候看到一个有趣的站点,想分享,还得先去将链接转化成二维码的站点.先转成二维码.再扫描.有点麻烦.所以写了一个插件.直接生成二维码. 须要 ...
- Oracle简单脚本演示样例
Oracle简单脚本演示样例 1.添加表 --改动日期:2014.09.21 --改动人:易小群 --改动内容:新增採购支付情况表 DECLARE VC_STR VARCHAR2( ...
- 开始整理iOS职位面试问题及答案
Object-c的类可以多重继承么?可以实现多个接口么?Category是什么?重写一个类的方式用继承好还是分类好?为什么? 答: Object-c的类不可以多重继承;可以实现多个接口,通过实现多个接 ...
- Spring Data JPA -1-CRUD入门
1) 引入jar包支持 <dependency> <groupId>org.springframework.boot</groupId> <artifactI ...