Links detected and saved by the analyzer
Link Type | When is this type of link created ? |
CALL | When:
|
DDL
| DDL Create example: CREATE PROCEDURE SP_CreateTable_Table0001 () MODIFIES SQL DATA NOT DETERMINISTIC CALLED ON NULL INPUT LANGUAGE SQL P1: BEGIN Declare Error int default 0; CREATE Table Table0001 ( ID CHARACTER(4), Qty INTEGER); return Error; END P1 DDL Drop example: CREATE PROCEDURE SP_DDL_DropTable_Table0001 () MODIFIES SQL DATA NOT DETERMINISTIC CALLED ON NULL INPUT LANGUAGE SQL P1: BEGIN Declare Error int default 0; DROP Table Table0001; return Error; END P1 |
FIRE
| When a table or view fires a trigger before or after the table or view is modified (for each row / for all rows). |
INHERIT | When:
|
LOCK | When a procedure contains a LOCK type instruction on a table. The "lock" on the table is removed by a new LOCK, a COMMIT or a ROLLBACK. |
PROTOTYPE | When an alias is the prototype of a table or view. |
REFER | When a referential "delete" or "update" link exists between two tables. |
RELY ON | When:
|
USE
| When:
|