Forum Replies Created

Viewing post 1 (of 1 total)

  • Reply To: Check Azure SQL DB Space Used

    There's potential for deleted databases to show up as well, a join to sys.databases will prevent that:

    SELECT
    [database_name],
    start_time AS 'LastCollectionTime',
    ...

Viewing post 1 (of 1 total)