redir_defn

The redir_defn table holds information about which queues are being redirected and which queues they are being redirected to.

Structure

The redir_defn table has the following structure:

TABLE redir_defn (
redir_id number(5) NOT NULL,
start_time number(4) NOT NULL,
start_date number(7) NOT NULL,
end_time number(4) NOT NULL,
end_date number(7) NOT NULL,
queue_name varchar2(24) NOT NULL,
destination varchar2(49) NOT NULL)

Column

Description

redir_id

Unique ID for this redirection record.

start_time

Time that this queue redirection starts.

start_date

Date that this queue redirection starts.

end_time

Time that this queue redirection ends.

end_date

Date that this queue redirection ends.

queue_name

Name of the queue from which work items are to be redirected, as defined in the user_names table.

destination

Name of the queue to which work items are to be redirected, as defined in the user_names table.

Primary Key

The following primary key is defined for this table.

Key Name

Column(s)

Index Tablespace

pk_redir_defn

redir_id

MEDIUMINDEXSPACE

Foreign Keys

None.

Indexes

None.

Storage

The following STORAGE values are defined for this table.

Value

Definition

Initial

MEDIUMTABLESIZE

Percentage Increase

MEDIUMTABLEPCTINCREASE

Tablespace

MEDIUMTABLESPACE

Table Activity

The redir_defn table contains one record for each redirection record defined on the system.

Rows are added, updated and deleted in the following situations.

A row is...

When...

added

a queue is redirected.

updated

the details of an existing redirection are updated.

deleted

redirection for a queue is turned off.