mpi_appop
The mpi_appop table contains definitions of application operations.
- Expanded name
- Application Operations
- Table category
- Runtime configuration
- Purpose
- Defines the operations available for an application.
- Cross-reference
- Not applicable.
Attribute | Description |
---|---|
caudrecno | Creation of this particular record, from mpi_audhead |
maudrecno | Last time the record value was modified, from mpi_audhead |
recstat | Record status |
apprecno | Application record identifier |
opcode | Operations code |
mpi_appop SQL:
CREATE TABLE mpi_appop
(
caudrecno bigint NOT NULL,
maudrecno bigint NOT NULL,
recstat nchar(1) NOT NULL,
apprecno int NOT NULL,
opcode nvarchar(40) NOT NULL
)
CREATE UNIQUE INDEX mpi_appop1 ON mpi_apppop (apprecno, opcode)