Microsoft
Software
Hardware
Network
Question : How to get SQL statement for a trigger in ORACLE v10.2 database
Would like to get the sql statements for a trigger in Oracle database. For example,
--trigger tr1
CREATE OR REPLACE TRIGGER tr1
......
end;
What sql statement should I issue to see the tr1's sql statements? i.e.,
--trigger tr1
CREATE OR REPLACE TRIGGER tr1
......
end;
Answer : How to get SQL statement for a trigger in ORACLE v10.2 database
SELECT *
FROM dba_source
WHERE TYPE = 'TRIGGER' AND name = 'TR1'
ORDER BY line
Random Solutions
IOErrorEvent not working
Send Outbound Mail through multiple Send Connectors based on sender address
Tranform Data in DTS
Downloading latest file from FTP
Sending a Criteria "Like [!A-Z]" from a form to a query
Any tools to monitor registry and program changes on remote computer?
Emailing from a distribution List in Lotus Notes
Windows 2000 Perflib 1008 application eventlog error log multiple times every second
Modify script to loop through all files in directories
Access Partition function (age segmentation)