摘要:
--动态管理视图和函数--两种:服务器范围:用户具有服务器的view server state权限-- 数据库范围:用户需数据库view database state权限--grand view server state to 要授权主体--每笔记录描述得绘画状态select * from sys.dm_exec_sessionswhere Session_id=@@spid--连接数据库方式,登陆认证方式,网络配置,认证方式,协议类型与网络IPselect * from sys.dm_exec_connectionswhere Session_id=@@spid--前5项平均使用CUP时 阅读全文
摘要:
--返回数据库的所有数据表所包含记录笔数,创建日期use TestDBselect db_name(), sys.schemas.name, o.name, i.rows, o.crdatefrom sys.sysobjects oleft join sys.sysindexes i on o.id=i.id and i.indid=1join sys.schemas on schema_id=uidwhere Type='U'--查询各数据表是否包含Identity 字段select s.Name AS SchemaName,t.Name as tableName,case when c. 阅读全文