Guest

Cisco E-Mail Manager Option

Which Database Table Contains the Outgoing Messages in Cisco E-Mail Manager?

Document ID: 44382




Questions

Introduction
Which database table contains the outgoing messages in E-Mail Manager?
NetPro Discussion Forums - Featured Conversations
Related Information

Introduction

Cisco E-Mail Manager supports both Oracle and Microsoft Structured Query Language (SQL) database management systems. This document identifies the database table that contains the outgoing messages in E-Mail Manager. This document is for database administrators that have experience with the E-Mail Manager schema.

For more information on document conventions, see the Cisco Technical Tips Conventions.

Q. Which database table contains the outgoing messages in E-Mail Manager?

A. At message receipt, E-Mail Manager stores all e-mail messages in raw form, and some internal headers, in the messages table. The messages include incoming and outgoing messages, as well as drafts. The messages table contains two fields. This table shows the messages table structure in detail:

Name Type Size Key
Message text 16  
MessageKey varchar 32 Primary Key

Note: The schema in this table refers to SQL Server. For additional information, refer to:

In order to identify the type of item that E-Mail Manager has stored, join the mess_type table with the messages table. The mess_table is one of the main tables for storage of dynamic information about incoming and outgoing messages. The mess_type table contains nine fields. This table shows the mess_type table structure in detail:

Name Type Size Key
LastModified datetime 8  
MessageKey varchar 32 Primary Key
Owner varchar 32  
PksOwner_id int 4  
ReadStatus int 4  
StatusFlags int 4  
TimeDone int 4  
TimeStored datetime 8  
Type int 4  

Main values for Type code are:

  • 0: archived incoming message
  • 1: active incoming message
  • 2: pending outgoing message
  • 9: sent outgoing message
  • 11: active internal message
  • 12: archive internal message

This SQL statement extracts all outgoing messages from the Cisco E-Mail Manager database after the send of the messages:

select a.Message from messages a, mess_type b where 
  a.MessageKey=b.MessageKey and b.type=9

Note: This value displays over two lines due to space limitations.

NetPro Discussion Forums - Featured Conversations

Networking Professionals Connection is a forum for networking professionals to share questions, suggestions, and information about networking solutions, products, and technologies. The featured links are some of the most recent conversations available in this technology.
NetPro Discussion Forums - Featured Conversations for Customer Contact Software
IP Communications and Video: Contact Center

Related Information



Updated: Mar 29, 2005Document ID: 44382