Answered by:
Tracking mailbox growth inside the mailbox Database ? with or without Powershell

Question
-
Hi People,
I'd like to know what is the best way to monitor which mailbox in a database is growing out of control ?
At the moment with my Exchange Server 2007 SP3 CCR, the database is growing more than 250 GB which is not recommended as per CCR best practice.
/* Server Support Specialist */
Tuesday, November 12, 2013 12:20 PM
Answers
-
Hello,
According to the following article, the large amount of items in outbox also contributes to the transaction log files on the Exchange server growth. (Note: It also applies to exchange 2007)
http://technet.microsoft.com/zh-cn/library/aa996191(v=exchg.65).aspx
If you have any feedback on our support, please click here
Cara Chen
TechNet Community Support- Marked as answer by Senior System Engineer Monday, November 18, 2013 6:16 AM
Wednesday, November 13, 2013 3:10 AMModerator -
Hello,
Sorry for delayed response.
To stop the transaction log from continuing to grow, please delete the item out of the Outbox.
If you have any feedback on our support, please click here
Cara Chen
TechNet Community Support- Marked as answer by Senior System Engineer Monday, November 18, 2013 6:16 AM
Monday, November 18, 2013 6:10 AMModerator
All replies
-
Hi
Have a look at the end of this thread, ExInsight:
You can also check active sync partnerships causing issues:
http://blogs.technet.com/b/mikelag/archive/2009/07/12/troubleshooting-store-log-database-growth-issues.aspx?Redirected=true
Tuesday, November 12, 2013 1:07 PM -
ok, does the users with the large amount of items in Outbox also contributes to the Exchange Server log file growth ?
get-mailbox -ResultSize Unlimited | Get-MailboxFolderStatistics -folderscope Outbox | Sort-Object Foldersize -Descending | select-object identity,name,foldertype,itemsinfolder,@{Name="FolderSize MB";expression={$_.folderSize.toMB()}} | Export-Csv C:\Temp\Outbox.csv
I have executed the script above and got some users with more than 5 GB of size in Outbox and thousands of items.
Identity : domain.com/Retail Users/HQ/Retail/James Stravinsky\Outbox
Name : Outbox
FolderType : Outbox
ItemsInFolder : 27944
FolderSize MB : 5087/* Server Support Specialist */
Wednesday, November 13, 2013 12:46 AM -
Hello,
According to the following article, the large amount of items in outbox also contributes to the transaction log files on the Exchange server growth. (Note: It also applies to exchange 2007)
http://technet.microsoft.com/zh-cn/library/aa996191(v=exchg.65).aspx
If you have any feedback on our support, please click here
Cara Chen
TechNet Community Support- Marked as answer by Senior System Engineer Monday, November 18, 2013 6:16 AM
Wednesday, November 13, 2013 3:10 AMModerator -
Cara,
So in this case, shall I instruct the users to move the emails back to the inbox or deleted items ?
/* Server Support Specialist */
Wednesday, November 13, 2013 4:04 AM -
Hello,
Sorry for delayed response.
To stop the transaction log from continuing to grow, please delete the item out of the Outbox.
If you have any feedback on our support, please click here
Cara Chen
TechNet Community Support- Marked as answer by Senior System Engineer Monday, November 18, 2013 6:16 AM
Monday, November 18, 2013 6:10 AMModerator -
Cool, thanks Cara !
/* Server Support Specialist */
Monday, November 18, 2013 6:16 AM