Oracle:从 systables/information_schema 查找索引创建日期?

发布于 2024-08-03 06:11:26 字数 209 浏览 10 评论 0原文

使用 Oracle,如何从 systables/information_schema 查找索引名称和创建日期?

如何从 systables/information_schema 重现创建索引的 DDL,例如,create index indexname on tablename(column_name [, column_name....]) [local];

Using Oracle, how can I find index names and creation dates from systables/information_schema?

How can I reproduce, from systables/information_schema, the DDL that created the index, e.g., create index indexname on tablename(column_name [, column_name....]) [local];

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

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

发布评论

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

评论(3

无语# 2024-08-10 06:11:27

查询 DBA_OBJECTS 或 ALL_OBJECTS 的创建日期:

select created from dba_objects where object_type = 'INDEX' and object_name='XXX';

更多相关信息 此处

Query DBA_OBJECTS or ALL_OBJECTS for the creation date:

select created from dba_objects where object_type = 'INDEX' and object_name='XXX';

More about it here:

清晰传感 2024-08-10 06:11:27

查询 all_objects 或 dba_objects 以获取有关索引的信息。

这应该可以获取索引 DDL

select dbms_metadata.get_ddl('INDEX','DEPT_IDX','SCOTT') from dual;

Query all_objects or dba_objects to get info on your indexes.

This should work to get index DDL:

select dbms_metadata.get_ddl('INDEX','DEPT_IDX','SCOTT') from dual;
不语却知心 2024-08-10 06:11:27

基于这两个响应(我想将两者标记为最佳答案),这将获得所有索引的 DDL:

select '/*' || created || '*/' || dbms_metadata.get_ddl('INDEX',object_name) 
from dba_objects 
where object_type = 'INDEX' 
order by created, object_name;

Building on both responses (I wanted to mark both as best answer), this gets DDL for all indices:

select '/*' || created || '*/' || dbms_metadata.get_ddl('INDEX',object_name) 
from dba_objects 
where object_type = 'INDEX' 
order by created, object_name;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文