Oracle PL/SQL – Display source code for a Trigger
By:Roy.LiuLast updated:2019-08-11
The following SQL shows you how to get the source code for a specified trigger :
select text from user_source where name ='&trigger_name' and type ='TRIGGER';
References
From:一号门
COMMENTS