.NET 中通过 WMI 的数据库大小
Is there a way to find out the size of a SQL Server database using WMI from .NET?
I've had a look at the WMI documentation but I'm not clear how I'd be able to locate that information.
We're using SQL Server 2008.
-dave
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过 Microsoft.SqlServer.Management.Smo 访问此属性。 尝试一下:MSDN
You can access this property via Microsoft.SqlServer.Management.Smo. Give this a try: MSDN
有点离题的答案,但每当我想使用 WMI 时,我都会首先快速浏览一下 Scriptomatic,微软的 WMI 浏览器。
针对 SQL Express 2005 这样做,唯一的 WMI 功能似乎与服务器本身有关,而不是与任何数据库有关。
A bit of a tangential answer, but whenever I want to play with WMI, I first take a quick look with Scriptomatic, Microsoft's WMI browser.
Doing so against SQL Express 2005, the only WMI functionality seems to be with regard to the server itself, and not for any of the databases.