SQL Server 用SSMS查看依赖关系有时候不准确,明明某个sp中有用到表tohen,查看表tohen的依赖关系的时候,却看不到这个sp 用代码查看方式如下: --依赖于表tohen的对象 SELECT * FROM sys.dm_sql_referencing_entities('dbo.tohen','OBJECT') --存储过程sp_tohen依赖的对象 SELECT distinct referenced_entity_name FROM sys.dm_sql_reference
查看mysql版本:select version();方法一: show profiles.1. Show profiles是5.0.37之后添加的,要想使用此功能,要确保版本在5.0.37之后. 查看方法: show variables like "%pro%";(查看profiling是否开启) 设置开启方法: set profiling = 1; 可以开始执行一些想要分析的sql语句了,执行完后,show profiles:即可查看所有sql的总的执行时间. show pro
查看执行时间 1 show profiles; 2 show variables;查看profiling 是否是on状态: 3 如果是off,则 set profiling = 1: 4 执行自己的sql语句: 5 show profiles:就可以查到sql语句的执行时间: 查看操作了多少行 在sql语句前面加上 explain就可以了: explain select * from event; +—-+————-+——-+——+—————+——+———+——+——+——-+ | id | s
查看执行时间 1 show profiles; 2 show variables;查看profiling 是否是on状态: 3 如果是off,则 set profiling = 1: 4 执行自己的sql语句: 5 show profiles:就可以查到sql语句的执行时间: 实例操作: mysql> show variables like '%profiling%'; +------------------------+-------+ | Variable_name | Value | +-
DBCC FREEPROCCACHE;SET STATISTICS PROFILE ON SET STATISTICS IO ON SET STATISTICS TIME ON go--SQL开始***--SQL结束go SET STATISTICS PROFILE OFF SET STATISTICS IO OFF SET STATISTICS TIME OFF