Help for Enterprise Vault Search

Last Published:
Product(s): Enterprise Vault (12.4)
  1. Getting started with Enterprise Vault Search
    1. About Enterprise Vault Search
      1.  
        About retention of archived items
      2.  
        About retention folders
    2. Finding your way around Enterprise Vault Search
      1.  
        Keyboard shortcuts for Enterprise Vault Search
  2. Searching for archived items
    1. Running a simple search
      1.  
        Search suggestions for simple search
      2.  
        Query syntax to refine a simple search with Enterprise Vault Search
      3.  
        Boolean operators that you can use in a simple search
      4.  
        Examples of query syntax, wildcards, and Boolean operators
    2. Running an advanced search
      1.  
        Saving an advanced search
      2.  
        Rerunning a saved advanced search
  3. Working with search results
    1.  
      About working with search results
    2.  
      About the reading pane toolbar
    3.  
      Viewing items
    4.  
      Finding search terms in a selected item
    5.  
      Downloading items
    6.  
      Restoring items to your mailbox
    7.  
      Restoring items to another user's mailbox
    8.  
      Deleting items from the archive
    9.  
      Changing the retention categories of items
    10.  
      Exporting items
    11.  
      Copying or moving items
    12.  
      Moving a folder
    13.  
      Creating, renaming, and deleting a folder
    14.  
      Repeating a previous action using the recent list
  4. Customizing Enterprise Vault Search
    1.  
      About customizing Enterprise Vault Search
    2.  
      Showing or hiding the sidebar and favorites list
    3.  
      Choosing a starting archive or folder
    4.  
      Choosing the language of the search interface
    5.  
      Choosing the time and date format
    6.  
      Creating and arranging archive groups
    7.  
      Showing, hiding, and positioning the reading pane
    8.  
      Adding a frequently used folder to the favorites list
    9.  
      Choosing how to highlight search terms
    10.  
      Filtering results by type in the results pane
    11.  
      Customizing the columns displayed in the results pane
    12.  
      Showing items in a list in the results pane
    13.  
      Sorting items in the results pane
    14.  
      Showing custom fields in advanced search
    15.  
      Turning search suggestions off or on
    16.  
      Specifying the Exchange server and mailbox
    17.  
      Specifying the Domino server and mail database

Boolean operators that you can use in a simple search

Table: Boolean operators for use in simple searches describes the operators with which you can refine your searches by creating a relationship between multiple search terms. Type the operators in uppercase letters.

Table: Boolean operators for use in simple searches

Operator

Match criteria

Examples

AND, or + (plus)

Items that contain both of the specified terms.

The two terms do not need to be in the same part of the item. For example, one can be in the top-level item and the other can be in an attachment.

sales AND report

Matches items in which both of the words sales and report appear.

BEFORE

Items in which the first specified term appears within a maximum of 10 words before the second term. Optionally, you can specify a maximum number of words between the two terms.

John BEFORE Smith

Matches items in which John appears within 10 words before the word Smith. It does not match Sue Smith met John.

John BEFORE/1 Smith

Matches items that contain John Smith or John B. Smith. It does not match items that contain John has met Smith or Sue Smith met John.

NEAR

Items in which the first specified term appears within 10 words of the second term. Optionally, you can specify a maximum number of words between the two terms.

John NEAR Smith

Matches items in which John appears within 10 words of Smith.

John NEAR/1 Smith

Matches items in which John appears within one word of Smith, as in John Smith, John B. Smith, or Smith sued John. It does not match items that contain John has met Smith or Sue Smith asked for John.

NOT, or - (hyphen)

Items that do not contain the specified term.

You cannot use this operator with either term in a BEFORE query or NEAR query. See the examples at the right.

NOT report, or -report

Matches items that do not contain the word report.

stock NOT price, or stock -price

Matches items that contain the word stock but do not contain the word price.

The following query is invalid because you cannot use the NOT operator with either term in a BEFORE query or NEAR query:

hello NEAR (NOT world)

To conduct a valid search for the word hello, but not hello when it is within a few words of world, construct the query as follows:

hello AND NOT (hello NEAR world)

NOTWITHIN

Items in which the first specified term appears outside the context that you define with the second term.

confidential NOTWITHIN "Disclaimer: This email and any files transmitted with it are confidential"

Matches items that contain the word confidential outside the context of the disclaimer.

OR

Items that contain one or both of the specified terms.

The two terms do not need to be in the same part of the item. For example, one can be in the top-level item and the other can be in an attachment.

sales OR report

Matches items that contain either or both of the words sales and report.

Using parentheses to group parts of a search query

When a search query contains multiple operators, you can use parentheses to ensure that it performs as you intend. In effect, Enterprise Vault Search processes the query within the parentheses before it processes the rest of the query. Consider the following example:

(stock OR share) AND price

This query matches items that contain either of the words stock and share and that also contain the word price. In contrast, the following search query matches items that either contain both of the words share and price or that contain the word stock.

stock OR (share AND price)

The following query matches items that have bill as author and that contain either any word starting with stock or any six-character word starting with share:

from:bill AND (stock* OR share?)

Order of precedence rules

When a search query contains multiple operators, parentheses, and phrases in quotation marks, Enterprise Vault Search processes them in the following order:

  1. "

  2. ()

  3. NOTWITHIN

  4. NOT

  5. BEFORE

  6. NEAR

  7. OR

  8. AND

For example, consider the following query:

stock AND price NEAR/2 bill OR bob

Enterprise Vault Search interprets the query as follows:

stock AND (price NEAR/2 (bill OR bob))

This query matches items that contain the word stock and that also contain the word price within two words of the word bill or bob.