Oracle 中 IBM 的 SYSIBM.SYSTABLES 相当于什么?

发布于 2024-09-26 01:11:52 字数 32 浏览 4 评论 0原文

SYSIBM.sys 的等效项是什么?在甲骨文中?

What are the equivalent of SYSIBM. in Oracle?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

友谊不毕业 2024-10-03 01:11:52

在Oracle中,大多数数据字典表都有三种形式来描述不同类型的对象

  • ALL_*
  • USER_*
  • DBA_*

DBA_*表有有关数据库中所有指定对象的信息。因此,无论您是否有权访问底层对象,DBA_TABLES 都将拥有数据库中每个表的信息。

ALL_* 表包含有关您有权访问的数据库中所有指定对象的信息。因此 ALL_TABLES 将包含您有权访问的数据库中所有表的信息。

最后,USER_* 表包含有关您拥有的数据库中所有指定对象的信息。因此 USER_TABLES 将包含有关您拥有的所有表(即模式中的所有表)的信息。

默认情况下,普通用户无权访问 DBA_* 表,只能访问 USER_* 和 ALL_* 表。如果要查询 DBA_* 表,则需要 SELECT ANY DICTIONARY 权限或 SELECT_CATALOG_ROLE 角色。

除了DBA/ALL/USER_*数据字典视图外,Oracle还提供了动态性能信息的V$视图(即V$SESSION包含了数据库中所有会话的信息)。对于每个 V$ 视图,还有一个 GV$ 视图,如果您位于 RAC 集群上,它会显示所有实例的信息。

In Oracle, there are three forms of most data dictionary tables that describe different types of objects

  • ALL_*
  • USER_*
  • DBA_*

The DBA_* tables have information about all of the specified objects in the database. So DBA_TABLES will have information about every table in the database whether or not you have access to the underlying object.

The ALL_* tables have information about all of the specified objects in the database that you have access to. So ALL_TABLES will have information about all the tables in the database that you have access to.

Finally, USER_* tables have information about all of the specified objects in the database that you own. So USER_TABLES will have information about all the tables that you own (i.e. all the tables in your schema).

By default, normal users do not have access to the DBA_* tables, just to the USER_* and ALL_* tables. If you want to query the DBA_* tables, you would need either the SELECT ANY DICTIONARY privilege or the SELECT_CATALOG_ROLE role.

In addition to the DBA/ ALL/ USER_* data dictionary view, Oracle also provides V$ views for dynamic performance information (i.e. V$SESSION includes information about all the sessions in the database). For every V$ view, there is also a GV$ view that shows you information from all instances if you're on a RAC cluster.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文