I have the next query for MSSQL that will return the amount of free space on a database. Is there any analog for OLAP cube-types DBs?
use [AxDWH_Central_Reporting]
GO
EXEC sp_spaceused @updateusage = N'TRUE'
GO
I have the next query for MSSQL that will return the amount of free space on a database. Is there any analog for OLAP cube-types DBs?
use [AxDWH_Central_Reporting]
GO
EXEC sp_spaceused @updateusage = N'TRUE'
GO