Oracle 查找给定索引名称的表名

发布于 12-11 06:26 字数 67 浏览 0 评论 0原文

我有一个索引的名称,该索引存在于数据库(oracle 11g)中某个列的某个表上。知道索引的名称,如何找到它属于哪个表?

I have the name of an index that is existing on some table on some column in the db(oracle 11g). Knowing the name of the index, how can i find which table it belongs to?

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

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

发布评论

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

评论(2

心如狂蝶2024-12-18 06:26:36
SELECT table_name
FROM all_indexes
WHERE index_name = 'YOUR_INDEX'
SELECT table_name
FROM all_indexes
WHERE index_name = 'YOUR_INDEX'
倒数2024-12-18 06:26:36

有时您需要通过报告的约束名称查找索引,该名称可能与索引名称不同,那么您可以使用:

select * from DBA_CONSTRAINTS where CONSTRAINT_NAME='YOUR_CNAME'

select * from DBA_CONSTRAINTS where INDEX_NAME='YOUR_INAME'

sometimes you need to find a index by reported constraint name, which might differ from the indexes name, then you could use:

select * from DBA_CONSTRAINTS where CONSTRAINT_NAME='YOUR_CNAME'

or

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