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

本站中文解释

ALL_JAVA_COMPILER_OPTIONS 是Oracle数据库中内置的一个视图,它可以用来查看当前数据库实例中启用和禁用的java编译时选项。

用法:

SELECT * FROM ALL_JAVA_COMPILER_OPTIONS;

这条语句可以用来查看当前数据库实例中启用或禁用的java编译时选项。它会返回一个包含选项名称和当前状态(启用或禁用)的结果集。

官方英文解释

ALL_JAVA_COMPILER_OPTIONS displays information about the native compiler options accessible to the current user.

Related Views

  • DBA_JAVA_COMPILER_OPTIONS displays information about all native compiler options in the database.

  • USER_JAVA_COMPILER_OPTIONS displays information about the native compiler options owned by the current user. This view does not display the OWNER column.

Column Datatype NULL Description

OWNER

VARCHAR2(128)

NOT NULL

Owner of the native compiler option

OPTION_NAME

VARCHAR2(64)

Name of the native compiler option

VALUE

VARCHAR2(4000)

Value of the native compiler option

See Also:

  • “DBA_JAVA_COMPILER_OPTIONS”

  • “USER_JAVA_COMPILER_OPTIONS”


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