Oracle 视图 USER_JAVA_LAYOUTS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图USER_JAVA_LAYOUTS可以用来查询当前用户所拥有的Java类型的布局(也有可能查询其他用户的,只要指定OWNER参数)。它的列包括:OWNER、NAME、SOURCE、DESCRIPTION等信息。
使用方法:可以在PL/SQL中,使用select来查询USER_JAVA_LAYOUTS表中的相关信息,例如:
select owner, name, source, description from user_java_layouts;
也可以使用Oracle的Data Dictionary Views来查询此表中的信息,例如:
select owner, name, source, description from dba_java_layouts;
官方英文解释
USER_JAVA_LAYOUTS
displays class layout information about the stored Java classes owned by the current user. Its columns (except for OWNER
) are the same as those in ALL_JAVA_LAYOUTS
.
See Also:
“ALL_JAVA_LAYOUTS”