ml_table_script

For a given script version, this table associates a table script with a given table and event.

Column

Description

version_id

INTEGER. A number identifying the script version.

table_id

INTEGER. A number identifying the table.

event

VARCHAR(128). The name of the event.

script_id

INTEGER. An number identifying the script. The script is stored in the ml_script table.

Remarks

There is a system view, ml_table_scripts, that makes it easier to view the contents of the ml_table_script MobiLink system table.

Constraints

FOREIGN KEY( version_id ) REFERENCES ml_script_version( version_id )

FOREIGN KEY( table_id ) REFERENCES ml_table( table_id )

FOREIGN KEY( script_id ) REFERENCES ml_script( script_id )