Problems deleting a old mailbox database
I have a customer, where we have taken over the support from an old supplier, so we don’t know much about their background. The first thing we do, was to update the Exchange Server....
Kenneth Qvistgaard Dalbjerg, IT Konsulent i århus
I have a customer, where we have taken over the support from an old supplier, so we don’t know much about their background. The first thing we do, was to update the Exchange Server....
To get a list of the databases files, and the current disk size in MB, and the Free Space in MB in each fil, you can use this commands
1 2 3 4 5 6 7 |
USE [DATABASE_NAME] SELECT DB_NAME() AS DbName, name AS FileName, size/128.0 AS CurrentSizeMB, size/128.0 - CAST(FILEPROPERTY(name, 'SpaceUsed') AS INT)/128.0 AS FreeSpaceMB FROM sys.database_files; |
If you need a...
Sidste kommentar