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 INTEGER NOT NULL,
start_time SMALLINT NOT NULL,
start_date INTEGER NOT NULL,
end_time SMALLINT NOT NULL,
end_date INTEGER NOT NULL,
queue_name VARCHAR(24) NOT NULL,
destination VARCHAR(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)

pk_redir_defn

redir_id

Triggers

None.

Indexes

None.

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.