DB2 Server for VSE & VM: Database Services Utility


IN_TRAY Table

The IN_TRAY table contains a person's note log. The table contents are shown in Figure 109; a description of the columns is shown in Figure 110.

Figure 109. IN_TRAY Table Contents





RECEIVED
SOURCE
SUBJECT
NOTE_TEXT
1965-01-01-07.00.00
SQLDBA
English
Here is a note from your DBA.

Figure 110. Columns of the IN_TRAY Table








Column Name
Description
RECEIVED
Date and time note was received
SOURCE
User id of person sending note
SUBJECT
Brief description
NOTE_TEXT
The text of the note

This table was created with:

CREATE TABLE IN_TRAY
     (RECEIVED     TIMESTAMP   NOT NULL,
      SOURCE       CHAR(8)     NOT NULL,
      SUBJECT      CHAR(64)            ,
      NOTE_TEXT    VARCHAR(4000)       )


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]