Video Screencast Help
Search Video Help Close Back
to help

Archiving and eDiscovery Community Blog

Showing posts in English
Wayne Humphrey | 13 Dec 2009 | 0 comments
This SQL Script will get all List of all Archives and dispaly the following:
  • Mailbox Name
  • Exchange Server
  • Number of Items (Mailbox) 
  • Number of (Archive)
  • Mailbox Size (MB) 
  • Archive Size (MB)
  • Total Size (MB) 
  • Archive Created
  • Archive Updated
SELECT 
LEFT(MbxDisplayName,20) AS 'Mailbox', 
ExchangeComputer AS 'Exchange Server',
MbxItemCount AS '#Items (Mailbox)', 
VS1.ArchivedItems AS '#Items (Archive)',
MbxSize/1024 AS 'Mbx Size (MB)', 
VS1.ArchivedItemsSize/1024 AS  'Archive Size(MB)',
(mbxsize+VS1.ArchivedItemsSize)/1024 AS 'Total Size(MB)', 
VS1.CreatedDate AS 'Archive Created',
VS1.ModifiedDate AS 'Archive Updated', 
MbxExchangeState AS 'Exchange State'
 
FROM
EnterpriseVaultDirectory.dbo.ExchangeMailboxEntry AS EME,
EnterpriseVaultDirectory.dbo.ExchangeServerEntry AS...
Wayne Humphrey | 08 Dec 2009 | 0 comments
Often the question of what is the different states of MbxArchivingState and MbxExchangeState in the ExchangeMailboxEntry table.

The Archiving State translates as follows:

0 = Not Enabled
1 = Enabled
2 = Disabled
3 = Re-Link

To view the Archiving State you can use the following:

SELECT count(MbxArchivingState) as '# Mailboxes',
MbxArchivingState as 'Archiving State'
FROM ExchangeMailboxEntry
GROUP BY MbxArchivingState

The Exchange State translates as follows: 
 

0 = Normal
1 = Hidden
2 = Deleted

To view the Exchange State you can use the following:

SELECT count(MbxExchangeState) as '# Mailboxes',
MbxExchangeState as 'Exchange State'
FROM ExchangeMailboxEntry
GROUP BY MbxExchangeState

Wayne Humphrey | 06 Dec 2009 | 1 comment

Lots of times I refer back to the EV manuals to see whether something that I “discover” is actually documented.  I have a copy locally on my machine in the office of many of the manuals, from many of the different versions.  I had often wondered about an externalised version of them, and whether they were easy to find.

With the power of Google, I found :

http://seer.support.veritas.com/docs/277782.htm

That goes back as far as V6, which is the beginning of time (almost) as far as I am concerned

Wayne Humphrey | 06 Dec 2009 | 0 comments

In the EV Outlook Client trace you very often see the Connection Status listed as a number.. well, what does the number mean ?

0 = Unknown connection.  You sometimes see that near the start of a client trace.
1 = Online
2 = Offline
3 = No Exchange
4 = Disconnected
5 = Cached Mode, Offline
6 = Cached Mode, Disconnected
7 = Cached Connected, headers only
8 = Cached Connected, Full items
9 = Cached Connected, “Drizzle Mode”
 
These are of course the Outlook to Exchange connection states, and the EV Outlook Add-in often needs to know what state things are in so that various operations can be performed (or not as the case may be).
BravoZulu | 05 Dec 2009 | 0 comments

I wanted to post this article from storagemagazine because I was suprised that 63 of the respondents to this survey are not using an age or quota based policy.....

Growing need for email archiving
by Rich Castagna
Issue: Oct 2009
...
GregRountree | 05 Dec 2009 | 1 comment

Virtual Vault (Can't move the items. You don't have appropriate permission to perform this operation.)

 

Untitled.png

Hi Group,

I wanted to post this error because it is a little vague. When moving items from Outlook or PST's you might get this error for a couple of reasons:

Make sure you have a calendar in Virtual Vault (create a blank Calendar) Calendar items will not be ingested if you do not have some place to put them
Make sure all IPM. files are added to the Admin Console under the Directory Exchange Message Classes tab. Here is a link to the Microsoft Message Classes. http://msdn.microsoft.com/en-us/library/bb176446.aspx
Make...

Rob.Wilcox | 13 Nov 2009 | 1 comment

A question arose the other day about why EV 8 creates a fingerprint database, even if the vault store group you are going to create is only ever going to be used with partitions relating to Centera.

This was, I think, initially raised during the EV 8 Beta program, and it is for two reasons :-
a) Consistency
b) At _some point_ in the future it might be that OSIS including Centera data is added to the product
Note: No fingerprints are written to the fingerprint database if the partitions in the vault stores in the vault store group are Centera only.
Hopefully that makes sense.
Rob.Wilcox | 12 Nov 2009 | 5 comments

 Many EV customers are doing PST migrations, and this is something that you should be aware of, I think.

EV will scan machines for anything with a PST extension.   It doesn't really know at this point whether a file that it finds is truly a PST or not.  There are two issues here :-

* EV finds a file that has a PST extension, and it's not a PST..  opening it with MAPI will then cause all sorts of issues!

* EV finds a file that is in fact a PST.... but it's a Sharepoint PST.

With Sharepoint 2007 you can synch document libraries to a "client", ie Outlook.  When you do that a PST is created on the client machine which contains hooks back up to the Sharepoint document library and things are kept in synch by Outlook.  It's really good, and it's really bad.. for PST migrations.

The first issue above has been fixed in Enterprise Vault already (8 SP 2)

The second issue is to be fixed shortly....

Darren Locke | 03 Nov 2009 | 1 comment

We are repeating the FSA with Mac webinar we did last month on Thursday this week, 2PM EST, 11AM PST. Anyone who is interested in file archiving and using a Mac to access the archived content should attend. Registration is here:

https://www2.gotomeeting.com/register/631882339

Further details of the issues Mac systems can cause with FSA along with the solution can be found in my blog entry here:

https://www-secure.symantec.com/connect/blogs/usin...

Darren

Stephanie Guaman | 04 Nov 2009 | 0 comments

The Symantec User Research team is interested in collecting some feedback on Enterprise Vault during a group interactive discussion. We believe that the only way to build truly useful products is to ensure that our users have a voice in the design process. This is a great opportunity for you to get involved in shaping the future direction of Enterprise Vault.

We are looking for experienced EV or Messaging administrators willing to join us for an interactive discussion on Thursday, November 12, 2009 from 1-5pm Pacific time (lunch will be provided) at our offices in Mountain View, California. The focus of the discussion will be on managing and upgrading indexes. We are interested in the challenges you face managing indexes on a day to day basis.

Based on the feedback you provide, we will make recommendations to the product team to help improve its user experience. If permissible by your company policy, we will offer...