exchange 2019 database increasing

Ibrahim AlHusari 151 Reputation points
2023-01-22T06:03:12.7566667+00:00

Dears,

 

one of my DBs on exchange 2019 is increasing more than 300 MB per day although it has only 15 users, how can I trace which user is causing this problem by using Exmon tool or any different approach ?

 

Regards,

Exchange Server
Exchange Server
A family of Microsoft client/server messaging and collaboration software.
1,099 questions
Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,379 questions
0 comments No comments
{count} votes

1 additional answer

Sort by: Most helpful
  1. Thameur-BOURBITA 32,596 Reputation points
    2023-01-22T20:18:35.5566667+00:00

    Hi,

    You can use the following powershell command to get the size of each mailbox:

    Get-Mailbox -ResultSize Unlimited | foreach { Get-MailboxStatistics -identity $_.userprincipalName | select Displayname,TotalItemSize} 

    Please don't forget to mark helpful answer as accepted

    0 comments No comments