SQL Server查询所有存储过程信息、触发器、索引
1. [代码]查询所有存储过程
01 |
select Pr_Name as [存储过程], [参数]=stuff(( select ',' +[Parameter] |
02 |
from ( |
03 |
select Pr. Name as Pr_Name,parameter. name + ' ' +Type. Name + ' (' + convert ( varchar (32),parameter.max_length)+ ')' as Parameter |
04 |
from sys.procedures Pr left join |
05 |
sys.parameters parameter on Pr.object_id = parameter.object_id |
06 |
inner join sys.types Type on parameter.system_type_id = Type.system_type_id |
07 |
where type = 'P' |
08 |
) t where Pr_Name=tb.Pr_Name for xml path( '' )), 1, 1, '' ) |
09 |
from ( |
10 |
select Pr. Name as Pr_Name,parameter. name + ' ' +Type. Name + ' (' + convert ( varchar (32),parameter.max_length)+ ')' as Parameter |
11 |
from sys.procedures Pr left join |
12 |
sys.parameters parameter on Pr.object_id = parameter.object_id |
13 |
inner join sys.types Type on parameter.system_type_id = Type.system_type_id |
14 |
where type = 'P' |
15 |
)tb |
16 |
where Pr_Name not like 'sp_%' --and Pr_Name not like 'dt%' |
17 |
group by Pr_Name |
18 |
order by Pr_Name |
2. [代码]查询所有触发器
01 |
select triggers. name as [触发器],tables. name as [表名],triggers.is_disabled as [是否禁用], |
02 |
triggers.is_instead_of_trigger AS [触发器类型], |
03 |
case when triggers.is_instead_of_trigger = 1 then 'INSTEAD OF' |
04 |
when triggers.is_instead_of_trigger = 0 then 'AFTER' |
05 |
else null |
06 |
end as [触发器类型描述] |
07 |
from sys.triggers triggers |
08 |
inner join sys.tables tables on triggers.parent_id = tables.object_id |
09 |
where triggers.type = 'TR' |
10 |
order by triggers.create_date |
3. [代码]查询所有索引
01 |
select indexs.Tab_Name as [表名],indexs.Index_Name as [索引名] ,indexs.[Co_Names] as [索引列], |
02 |
Ind_Attribute.is_primary_key as [是否主键],Ind_Attribute.is_unique AS [是否唯一键], |
03 |
Ind_Attribute.is_disabled AS [是否禁用] |
04 |
from ( |
05 |
select Tab_Name,Index_Name, [Co_Names]=stuff(( select ',' +[Co_Name] from |
06 |
( select tab. Name as Tab_Name,ind. Name as Index_Name,Col. Name as Co_Name from sys.indexes ind |
07 |
inner join sys.tables tab on ind.Object_id = tab.object_id and ind.type in (1,2) |
08 |
inner join sys.index_columns index_columns on tab.object_id = index_columns.object_id and ind.index_id = index_columns.index_id |
09 |
inner join sys.columns Col on tab.object_id = Col.object_id and index_columns.column_id = Col.column_id |
10 |
) t where Tab_Name=tb.Tab_Name and Index_Name=tb.Index_Name for xml path( '' )), 1, 1, '' ) |
11 |
from ( |
12 |
select tab. Name as Tab_Name,ind. Name as Index_Name,Col. Name as Co_Name from sys.indexes ind |
13 |
inner join sys.tables tab on ind.Object_id = tab.object_id and ind.type in (1,2) |
14 |
inner join sys.index_columns index_columns on tab.object_id = index_columns.object_id and ind.index_id = index_columns.index_id |
15 |
inner join sys.columns Col on tab.object_id = Col.object_id and index_columns.column_id = Col.column_id |
16 |
)tb |
17 |
where Tab_Name not like 'sys%' |
18 |
group by Tab_Name,Index_Name |
19 |
) indexs inner join sys.indexes Ind_Attribute on indexs.Index_Name = Ind_Attribute. name |
20 |
order by indexs.Tab_Name |
4. [代码][SQL]代码
01 |
DECLARE @s VARCHAR (4000),@n INT ,@i INT ,@s1 VARCHAR (100) |
02 |
SELECT IDENTITY( INT ) id,text INTO ## |
03 |
FROM syscomments |
04 |
SELECT @n=@@ROWCOUNT,@i=0 |
05 |
WHILE @i<@n |
06 |
BEGIN |
07 |
SELECT @i=@i+1,@s= '' |
08 |
SELECT @s1= REPLACE ( REPLACE (RTRIM(LTRIM(STUFF(STUFF(text,CHARINDEX( 'AS' ,text),40000, '' ),1, |
09 |
CHARINDEX( 'PROC' ,STUFF(text,CHARINDEX( 'AS' ,text),40000, '' ))+4, '' ))), CHAR (10), '' ), CHAR (13), '' ) |
10 |
FROM ## WHERE ID=RTRIM(@i) |
11 |
--SELECT @s1,ASCII(SUBSTRING(@s1,3,1)) |
12 |
--SELECT LEN(REPLACE(REPLACE(@s1,CHAR(13),''),CHAR(10),'')) |
13 |
SELECT @s= 'SELECT text FROM tempdb.dbo.## WHERE ID=' + RTRIM(@i) |
14 |
EXEC ( 'EXEC master..xp_cmdshell ' 'bcp "' + @s + ' " queryout "e:\ProcTXT\' + @s1 + ' .txt" -S "ROBINHOME\SQLEXPRESS" -c -U "sa" -P "bd5178" '' ') |
15 |
END |
16 |
DROP TABLE ## |
17 |
18 |
--自己写的 如何识别换行??? 还有些非存储过程的对象 |
19 |
SELECT top 10 text FROM syscomments where id in( |
20 |
select object_id from sys.procedures where type = ' P ') |
21 |
22 |
SELECT text FROM syscomments where id in( |
23 |
select object_id from sys.procedures where type = ' P ') |
24 |
and charindex(' ALLSTOCK ',text)>0 |
25 |
and charindex(' CREATE PROCEDURE ',text)>0 |
5. [代码]显示存储过程内容
1 |
SELECT TEXT FROM syscomments WHERE id=object_id( 'SP_NAME' ) |
2 |
3 |
SP_HELPTEXT 'SP_NAME' |
6. [代码]获取只有用户定义的存储过程
1 |
USE [your_database_name_here]; |
2 |
GO |
3 |
SELECT * FROM sys.all_objects |
4 |
WHERE ([type] = 'P' OR [type] = 'X' OR [type] = 'PC' ) AND [is_ms_shipped] = 0 ORDER BY [ name ]; |
5 |
GO |
6 |
SELECT * FROM sysobjects where type= 'P' |
SQL Server查询所有存储过程信息、触发器、索引的更多相关文章
- 遍历SQL SERVER中所有存储过程和触发器
如果需要查找某个存储过程或触发器中是否含有某段文本(比如:你想知道有哪些存储过程操作了某个表) 可以这么写 select name from sysobjects o, syscomments s w ...
- SQL命令查询Oracle存储过程信息(代码内容等)
SELECT * FROM ALL_SOURCE where TYPE='PROCEDURE' AND TEXT LIKE '%0997500%'; --查询ALL_SOURCE中,(脚本代码)内 ...
- SQL Server 查询性能优化 相关文章
来自: SQL Server 查询性能优化——堆表.碎片与索引(一) SQL Server 查询性能优化——堆表.碎片与索引(二) SQL Server 查询性能优化——覆盖索引(一) SQL Ser ...
- 数据库表设计时一对一关系存在的必要性 数据库一对一、一对多、多对多设计 面试逻辑题3.31 sql server 查询某个表被哪些存储过程调用 DataTable根据字段去重 .Net Core Cors中间件解析 分析MySQL中哪些情况下数据库索引会失效
数据库表设计时一对一关系存在的必要性 2017年07月24日 10:01:07 阅读数:694 在表设计过程中,我无意中觉得一对一关系觉得好没道理,直接放到一张表中不就可以了吗?真是说,网上信息什么都 ...
- Sql Server查询性能优化之走出索引的误区
据了解绝大多数开发人员对于索引的理解都是一知半解,局限于大多数日常工作没有机会.也什么没有必要去关心.了解索引,实在哪天某个查询太慢了找到查询条件建个索引就ok,哪天又有个查询慢了,再建立个索引就是, ...
- SQL Server查询性能优化——堆表、碎片与索引(二)
本文是对 SQL Server查询性能优化——堆表.碎片与索引(一)的一些总结. 第一:先对 SQL Server查询性能优化——堆表.碎片与索引(一)中的例一的SET STATISTICS IO之 ...
- VFP获取 SQL Server 的数据表、触发器、存储过程、视图等脚本
本文代码转载自红雨先生 *-----------------------------------------------* SqlServer 相关函数*----------------------- ...
- SQL Server查询性能优化——覆盖索引(一)
覆盖索引又可以称为索引覆盖. 解释一: 就是select的数据列只用从索引中就能够取得,不必从数据表中读取,换句话说查询列要被所使用的索引覆盖. 解释二: 索引是高效找到行的一个方法,当能通过检索索引 ...
- SQL Server查询性能优化——覆盖索引(二)
在SQL Server 查询性能优化——覆盖索引(一)中讲了覆盖索引的一些理论. 本文将具体讲一下使用不同索引对查询性能的影响. 下面通过实例,来查看不同的索引结构,如聚集索引.非聚集索引.组合索引等 ...
随机推荐
- bootstrap全局css样式
以下从官网抄来的,感觉还是很实用的,运用得好,灵活运用,非常方便快捷,能大大提高开发效率,也为调整不同尺寸的屏幕节省了时间. hidden-xs @media (max-width: 767px){ ...
- [Winform][C#]获取系统颜色预定义颜色和现有字体集
转自: http://zhidao.baidu.com/link?url=ozY7tJRNBYHUsImE6jn1psqc8owib7MWcDMEmZw48q8iD9Hz9MWgnQQcBDO0VYO ...
- php去除换行符的方法小结(PHP_EOL变量的使用)
本来在unix世界换行就用/n来代替,但是windows为了体现他的不同,就用/r/n,更有意思的是在mac中用/r.因此unix系列用 /n,windows系列用 /r/n,mac用 /r,这样就用 ...
- 北京师范大学第十六届程序设计竞赛决赛-重现赛-B题
一.题目链接 https://www.nowcoder.com/acm/contest/117/B 二.题意 给定一组序列$a_1,a_2,\cdots,a_n$,表示初始序列$b_1,b_2,\cd ...
- CentOS7 安装svn
1 yum install subversion 2 运行 svn --version 报错 svn: error while loading shared libraries: libaprutil ...
- 「小程序JAVA实战」小程序的视频点赞功能开发(62)
转自:https://idig8.com/2018/09/24/xiaochengxujavashizhanxiaochengxudeshipindianzangongnengkaifa61/ 视频点 ...
- 跟我学算法- tensorflow VGG模型进行测试
我们使用的VGG模型是别人已经训练好的一个19层的参数所做的一个模型 第一步:定义卷积分部操作函数 mport scipy.io import numpy as np import os import ...
- ubuntu 安装google输入法
第五步:通常情况下,IBus图标(一个小键盘)会出现在桌面右上角的任务栏中.有时候这个图标会自行消失,可使用以下命令,找回消失的IBus图标: ibus-daemon -drx 不建议用googl ...
- nginx tcp负载均衡配置
1. nginx从1.9.0后引入模块ngx_stream_core_module,模块是没有编译的,需要用到编译需添加--with-stream配置参数 2. 在 nginx.conf 文件中, 与 ...
- LUA全总结
------------------------------------------------------------------------------ --2018.7.21 do --开启或关 ...