Oracle:从 systables/information_schema 查找索引创建日期?
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查询 DBA_OBJECTS 或 ALL_OBJECTS 的创建日期:
更多相关信息 此处:
Query DBA_OBJECTS or ALL_OBJECTS for the creation date:
More about it here:
查询 all_objects 或 dba_objects 以获取有关索引的信息。
这应该可以获取索引 DDL:
Query all_objects or dba_objects to get info on your indexes.
This should work to get index DDL:
基于这两个响应(我想将两者标记为最佳答案),这将获得所有索引的 DDL:
Building on both responses (I wanted to mark both as best answer), this gets DDL for all indices: