SQL Server 2008 中的 DMF 和 DMV
SQL Server 2005/2008 中的动态管理函数 (DMF) 和视图 (DMV) 是什么?
What are Dynamic Management Functions (DMF) and Views (DMV) in SQL Server 2005/2008 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
动态管理视图和函数 (Transact-SQL) 文档:
该链接包含更多信息,包括视图和内容的细分。功能以及更具体的信息...
Dynamic Management Views and Functions (Transact-SQL) documentation:
The link includes more information, including a breakdown of the views & functions along with more specific information...
在 SQL Server 2005 中引入,它们提供了一种一致的方法来查看 SQL Server 实例的内部结构,而这在以前需要进行大量的修改。它们向管理员提供有关 SQL Server 实例的各种状态的信息 - 例如会话、内存等。
Introduced in SQL Server 2005 they provide a consistent way to look at the internals of SQL Server instances which previously required a fair bit of hacks. They provide the administrator about the various state of the SQL Server instances - for example sessions, memory etc.
这是 Ian W. Stirk 的引言
信息记录
当查询在 SQLServer 数据库上运行时,SQLServer 会自动将有关正在发生的活动的
到内存中的结构中。您可以通过 DMV 访问此信息。
DMV 基本上是一些非常重要的内部内存结构上的 SQL 视图。
有关更多知识,请参阅此链接并阅读此电子书:SQL Server DMV 实际操作
This is the quote
Ian W. Stirk
As queries run on a SQLServer database, SQLServer automatically records informa-tion
about the activity that’s taking place, internally into structures in memory;
you can access this information via DMVs.
DMVs are basically SQLviews on some pretty important internal memory structures.
For more knowlage see this link and read this ebook : SQL Server DMVs in Action