tags:

views:

56

answers:

0

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