sql SQL列表的DMV。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql SQL列表的DMV。相关的知识,希望对你有一定的参考价值。

--Displays all of the open sessions and also displays the login name of the current user
select * from sys.dm_exec_sessions
select original_login()
--Returns size and fragmentation information for the data and indexes of the specified table or view in SQL Server.
select * from sys.dm_db_index_physical_stats (DB_ID(N'T1'), OBJECT_ID(N'ix_t1'), NULL, NULL , 'DETAILED')
sys.dm_exec_requests
--information about alerts that have been defined on the server
sp_help_alert

以上是关于sql SQL列表的DMV。的主要内容,如果未能解决你的问题,请参考以下文章

sql SQL DMV显示当前和历史的等待任务

sql 获取数据库文件大小的SQL DMV

sql server DMV汇总

sql DMV的SQL查询以显示所有当前活动的会话

SQL Server ->> 与SQL Server服务配置相关的DMV

sql 缺失索引DMV