Forum Replies Created

Viewing post 1 (of 2 total)

  • RE: SQL 2000 and SQL 2005 file space used

    Or this one :-

    USE DatabaseName

    SELECT [name] as PhysicalFileName, SUM(size) / 128.00 AS [Total (Mb)],

    SUM(ISNULL(FILEPROPERTY([name], 'SpaceUsed') / 128.00, 0)) AS [Used (Mb)],

    CASE...

Viewing post 1 (of 2 total)