首页 > 编程 > shell > 正文

Powershell查看SSAS Cube占用磁盘空间

2024-07-21 02:46:25
字体:
来源:转载
供稿:网友
Powershell查看SSAS Cube占用磁盘空间

以下是用powershell查看Cube占用磁盘空间大小的方式。可以编译成函数也可以直接把参数改成需要的服务器名称。

Param($ServerName="SERVERNAME")$loadInfo = [Reflection.Assembly]::LoadWithPartialName("Microsoft.AnalysisServices")$server = New-Object Microsoft.AnalysisServices.Server$server.connect($ServerName)if ($server.name -eq $null) { Write-Output ("Server '{0}' not found" -f $ServerName) break } $sum=0foreach ($d in $server.Databases ) { Write-Output ("Database: {0}; Status: {1}; Size: {2}MB" -f $d.Name, $d.State, ($d.EstimatedSize/1024/1024).ToString("#,##0") ) $sum=$sum+$d.EstimatedSize/1024/1024 } $SizeGB=$Sum/1024 write-host 'Sum of Database = '$sum 'MB'Write-host 'Total Size of Cube Databases =' $SizeGB  'GB'

 

结果

image


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选