Hello Thank you for your question and reaching out. I can understand you are having query\issues related to Exchange. You have to move to a new Mailbox in Order to end up with a smaller Database
Get-MailboxDatabase -Status | Select-Object Name, DatabaseSize, AvailableNewMailboxSpace | Format-Table -AutoSize Then create a new Mailbox Database and use the New-MoveRequest commandlet to move the Mailboxes to a new Mailbox Database. Get-Mailbox -Database MYOldDB New-MoveRequest -Identity <Identity> -TargetDatabase "MYNewDB" --If the reply is helpful, please Upvote and Accept as answer--