ml_connection_script

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

Column

Description

version_id

INTEGER. A number identifying the script version.

event

VARCHAR(128). The name of the event that triggers the connection script.

script_id

INTEGER. A number identifying the script. The text of the connection script is stored in the ml_script system table.

Remarks

There is a system view, ml_connection_scripts, that makes it easier to view the contents of this table.

For DB2 mainframe consolidated database types, this table is called ml_conn_script. See IBM DB2 mainframe system table name conversions.

Constraints

PRIMARY KEY( version_id, event )

FOREIGN KEY( version_id ) REFERENCES ml_script_version( version_id )

FOREIGN KEY( script_id ) REFERENCES ml_script( script_id )