Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: SQL Script that list total database size on server

    I use this script to retrieve database space information.

    DECLARE @TempFiles TABLE (

    [Name] [nvarchar](128) NULL,

    [DatabaseID] [int] NULL,

    [Type] [nvarchar](60) NULL,

    [State] [nvarchar](60) NULL,

    [SizeMB] [float] NULL,

    [SizeUsedMB] [float] NULL,

    [MaxSizeMB] [float] NULL,

    [AutoGrowSize] [float] NULL,

    [PercentGrowth] [bit]...

Viewing post 1 (of 1 total)