Having an issue with calling a stored procedure from within a trigger. From documentation and other technical sites, this functionality is available. But I'm having a hard time determining whether it is available for the platform we are using or it is syntax. Getting compilation error about CALL.
CREATE TRIGGER ....
....
BEGIN ATOMIC
CALL schema.storedproc;
END
@
CREATE TRIGGER ....
....
BEGIN ATOMIC
CALL schema.storedproc;
END
@