Oracle 视图 ALL_SQLSET_REFERENCES 官方解释,作用,如何使用详细说明
本站中文解释
ALL_SQLSET_REFERENCES是Oracle中的一个数据视图,用于显示跨实体引用条件信息。该视图中存储着实体相关联之间的关联信息。用户可以使用ALL_SQLSET_REFERENCES视图,查看跨实体的引用关系。该视图中的字段包括:COLUMN_NAME(所引用的列的名称)、OWNER(拥有该列的对象的拥有者)和NAME(引用列所在的对象的名称)。
Oracle视图ALL_SQLSET_REFERENCES的使用可以通过以下步骤来实现:
1. 首先,用户应建立一个选择语句,用来查询ALL_SQLSET_REFERENCES视图。例如,用户可以使用如下查询语句:
SELECT * FROM ALL_SQLSET_REFERENCES;
2. 接下来,用户可以按需要指定查询条件,更明确地查询用户感兴趣的数据。例如,用户可以使用如下查询语句:
SELECT * FROM ALL_SQLSET_REFERENCES WHERE OWNER=’test’;
3. 用户还可以利用Oracle的LIKE关键字,模糊查询跨实体的引用相关信息。例如,用户可以使用如下查询语句:
SELECT * FROM ALL_SQLSET_REFERENCES WHERE COLUMN_NAME LIKE ‘%name%’;
以上就是Oracle视图ALL_SQLSET_REFERENCES及其使用方法的详细介绍。视图可以通过设定相关查询条件,帮助用户更好地进行查询。
官方英文解释
ALL_SQLSET_REFERENCES
describes whether or not the SQL tuning sets accessible to the current user are active.
Related Views
-
DBA_SQLSET_REFERENCES
describes whether or not all SQL tuning sets in the database are active. A SQL tuning set cannot be dropped if it is referenced. -
USER_SQLSET_REFERENCES
describes whether or not the SQL tuning sets owned by the current user are active.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Name of the SQL tuning set |
|
|
User name of SQL tuning set owner |
|
|
|
|
Identifier of the SQL tuning set |
|
|
|
Reference identifier |
|
|
User who registered to use the SQL tuning set |
|
|
|
Description of the usage of the SQL tuning set |
|
|
|
Date the reference was created |
See Also:
-
“DBA_SQLSET_REFERENCES”
-
“USER_SQLSET_REFERENCES”