Oracle 视图 DBA_PROCEDURES 官方解释,作用,如何使用详细说明

本站中文解释

Oracle视图 DBA_PROCEDURES 是被内建的位于 data dictionary(数据字典)的一个数据库视图,能够用来查看系统中所有的存储过程,其可用于查看特定存储过程的相关信息。该视图中的每一行都提供了一个存储过程的基本信息,包括所有者,名称,类型,定义等。可以使用 DBA_PROCEDURES 视图来查看系统中所有可用的存储过程,并执行查询来查找一个特定的存储过程,并查看该存储过程的相关信息。例如执行如下查询:

SELECT * FROM DBA_PROCEDURES WHERE OBJECT_NAME = ‘My_Procedure’;

这将返回一个 My_Procedure 存储过程的基本信息。

官方英文解释

DBA_PROCEDURES lists all functions and procedures that are available in the database, along with their associated properties. Its columns are the same as those in ALL_PROCEDURES.

See Also:

  • “ALL_PROCEDURES”

  • “DBA_ARGUMENTS” for information about the arguments of all of the functions and procedures that are available in the database


数据运维技术 » Oracle 视图 DBA_PROCEDURES 官方解释,作用,如何使用详细说明