简体   繁体   中英

Get Details of Deleted Stored Procedures and Functions of DB2

I want to get the details of the Deleted Stored Procedures and Functions

Also i want to get the info like when it was created & removed in DB.

Please guide me.

Thanks in Advance...

You can see when procedures and functions were created by looking at the CREATE_TIME column tables in the system catalog like SYSCAT.PROCEDURES and SYSCAT.FUNCTIONS .

You will have no way of knowing when these objects were dropped unless you enable auditing within the database (and review the audit logs to find instances of DROP PROCEDURE or DROP FUNCTION ).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM