SPOOL-NAME

The name of a trigger's output file, as specified in the THEN or ELSE section of the create trigger statement.

Syntax

name1.name2.name3

Type

name (see MaxL Syntax Notes)

Example

In the following create trigger statement, the bold section is the spool name.

create or replace trigger Sample.Basic.Trigger_Jan_20
where "(Jan,Sales,[100],East,Actual)"
when Jan > 20 and is(Year.currentmember,Jan) then
spool Trigger_Jan_20
end;

Referenced By

display trigger spool

drop trigger spool