A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

How/Where store a LOT of Outlook Items? Mailbox or Folder?



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old March 16th 06, 12:10 PM posted to microsoft.public.exchange.admin,microsoft.public.exchange.development,microsoft.public.outlook.general,microsoft.public.outlook.program_vba
Pieter
external usenet poster
 
Posts: 27
Default How/Where store a LOT of Outlook Items? Mailbox or Folder?

Hi,

My document-management-application must store the emails (using Outlook
2003) of the users to a common folder, and a link is added in a database.
From an other application these emails can be opened.

I'm now using a public MailBox on our Exchange (2000, in some months 2003)
server, and I use the StoreID and EntryID of the OutlookItems and Folder to
get the right Mail and open it.

The only problem is: after 4 months of use, the public mailbox takes
alreaddy 100 Megabytes.

So my questions a
- Won't I get a performance-problem in the future when the public mailbox is
growing? It will be used more intensively soon, so I think it will grow evey
year with 1 giga...
- Doesn't such a big mailbox doesn't get corrupted or
I-don't-know-what-can-happens with soemthing like that?
- Should I better chose another way of storing the items? Just on a
networkshare saving all the emails ass *.msg-files? Or any better idea? But
won't that give less performance?

Any help, hints, links, experiences would be really appreciated!

Thanks a lot in advance,

Pieter



Ads
  #2  
Old March 16th 06, 01:02 PM posted to microsoft.public.exchange.admin,microsoft.public.exchange.development,microsoft.public.outlook.general,microsoft.public.outlook.program_vba
Nuevo
external usenet poster
 
Posts: 5
Default How/Where store a LOT of Outlook Items? Mailbox or Folder?

100MB is not a problem and even growing to 1Gb while not ideal should cause
no problems. I would not recommend anything over 2GB so you have some
breathing room. You need an effective way to archive the mail in order to
prevent the growth. If this is not possible then you need to consider the
viability of using a different mailbox once a certain size is reached.

Nue
"Pieter" wrote in message
...
Hi,

My document-management-application must store the emails (using Outlook
2003) of the users to a common folder, and a link is added in a database.
From an other application these emails can be opened.

I'm now using a public MailBox on our Exchange (2000, in some months 2003)
server, and I use the StoreID and EntryID of the OutlookItems and Folder
to get the right Mail and open it.

The only problem is: after 4 months of use, the public mailbox takes
alreaddy 100 Megabytes.

So my questions a
- Won't I get a performance-problem in the future when the public mailbox
is growing? It will be used more intensively soon, so I think it will grow
evey year with 1 giga...
- Doesn't such a big mailbox doesn't get corrupted or
I-don't-know-what-can-happens with soemthing like that?
- Should I better chose another way of storing the items? Just on a
networkshare saving all the emails ass *.msg-files? Or any better idea?
But won't that give less performance?

Any help, hints, links, experiences would be really appreciated!

Thanks a lot in advance,

Pieter





  #3  
Old March 16th 06, 01:47 PM posted to microsoft.public.exchange.admin,microsoft.public.exchange.development,microsoft.public.outlook.general,microsoft.public.outlook.program_vba
Pieter
external usenet poster
 
Posts: 27
Default How/Where store a LOT of Outlook Items? Mailbox or Folder?

Thanks for the info. And you don't have any idea of what should be the
better solution?
- Give them every year a new Mailbox? And after 5 years they have 5 extra
mailboxes that loads etc...
- Save all the mails as *.msg in a Fodler somewhere on a server?
- Write the emails to a database? (sql server)
- ...?

"Nuevo" wrote in message
...
100MB is not a problem and even growing to 1Gb while not ideal should
cause no problems. I would not recommend anything over 2GB so you have
some breathing room. You need an effective way to archive the mail in
order to prevent the growth. If this is not possible then you need to
consider the viability of using a different mailbox once a certain size is
reached.

Nue



  #4  
Old March 16th 06, 01:54 PM posted to microsoft.public.exchange.admin,microsoft.public.exchange.development,microsoft.public.outlook.general,microsoft.public.outlook.program_vba
Nuevo
external usenet poster
 
Posts: 5
Default How/Where store a LOT of Outlook Items? Mailbox or Folder?

I would not save them as .msg. That is just not a good approach. Writing
emails to a database is also going to be tricky because of attachments.

How long do you need to retain these emails?

I would suggest that you set a size limit on the mailbox, say 500MB. Once it
reaches that limit you can create another mailbox. Once your retention
period is over delete the old mailboxes after backing up of course.

The best option if it works in your situation is to use an Email archiving
product like Enterprise Vault or EmailXtender.

Nue
"Pieter" wrote in message
...
Thanks for the info. And you don't have any idea of what should be the
better solution?
- Give them every year a new Mailbox? And after 5 years they have 5 extra
mailboxes that loads etc...
- Save all the mails as *.msg in a Fodler somewhere on a server?
- Write the emails to a database? (sql server)
- ...?

"Nuevo" wrote in message
...
100MB is not a problem and even growing to 1Gb while not ideal should
cause no problems. I would not recommend anything over 2GB so you have
some breathing room. You need an effective way to archive the mail in
order to prevent the growth. If this is not possible then you need to
consider the viability of using a different mailbox once a certain size
is reached.

Nue





  #5  
Old March 16th 06, 02:07 PM posted to microsoft.public.exchange.admin,microsoft.public.exchange.development,microsoft.public.outlook.general,microsoft.public.outlook.program_vba
Pieter
external usenet poster
 
Posts: 27
Default How/Where store a LOT of Outlook Items? Mailbox or Folder?

"Nuevo" wrote in message
...
I would not save them as .msg. That is just not a good approach. Writing
emails to a database is also going to be tricky because of attachments.


Well, I do have to admit that personally I prefer to have them in MailBoxes:
users can do searches on them etc like they normally do with emails etc.
And about the writing to the database: Isn't there a way to kind of write
them as a binery stream to a database-field?

How long do you need to retain these emails?


At least 3-4 years, but it will be in some case 5-10 years at least...

The best option if it works in your situation is to use an Email archiving
product like Enterprise Vault or EmailXtender.


I'm gonna take a look at them, thanks! :-)


  #6  
Old March 16th 06, 02:11 PM posted to microsoft.public.exchange.admin,microsoft.public.exchange.development,microsoft.public.outlook.general,microsoft.public.outlook.program_vba
Andy David - MVP
external usenet poster
 
Posts: 20
Default How/Where store a LOT of Outlook Items? Mailbox or Folder?

On Thu, 16 Mar 2006 13:10:04 +0100, "Pieter"
wrote:

Hi,

My document-management-application must store the emails (using Outlook
2003) of the users to a common folder, and a link is added in a database.
From an other application these emails can be opened.

I'm now using a public MailBox on our Exchange (2000, in some months 2003)
server, and I use the StoreID and EntryID of the OutlookItems and Folder to
get the right Mail and open it.

The only problem is: after 4 months of use, the public mailbox takes
alreaddy 100 Megabytes.

So my questions a
- Won't I get a performance-problem in the future when the public mailbox is
growing? It will be used more intensively soon, so I think it will grow evey
year with 1 giga...
- Doesn't such a big mailbox doesn't get corrupted or
I-don't-know-what-can-happens with soemthing like that?
- Should I better chose another way of storing the items? Just on a
networkshare saving all the emails ass *.msg-files? Or any better idea? But
won't that give less performance?

Any help, hints, links, experiences would be really appreciated!

Thanks a lot in advance,

Pieter




The size of the mailbox isnt the problem, its the item count.
http://209.34.241.68/exchange/archiv...14/395229.aspx

You may want to look at mailbox manager or a scripted exmerge job to
keep the number of items in check if you begin to see performance
problems.
 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Working offline - items not going to sent items folder after sync. okhuntin Outlook - Installation 0 March 14th 06 08:01 PM
A LOT of my e-mail has dissappeared. ionamic Outlook Express 5 February 24th 06 08:21 PM
Problem Getting OE to Recognize Location of Store Folder Bruce Kerievsky Outlook Express 5 February 12th 06 12:39 AM
Group mailbox, delegates and sent items Victor Ivanidze Outlook - Installation 1 January 22nd 06 11:19 PM
Store folder changes loses original folder iag Outlook Express 5 January 10th 06 11:49 AM


All times are GMT +1. The time now is 08:13 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.