是否可以追溯到“创建索引”?在表上使用的语句
我想在表上创建索引。我没有意识到它的大小会增长得如此之快,以至于我什至无法选择几行。现在,我希望这张桌子与另一张桌子非常相似。所以我想检查索引以及该表上使用的确切创建索引语句。
I want to create indices on a table. I didn't realize it will grow so fast in size that I'm not even able to select a handful of rows. Now, I want this table to be so alike another table. So I want to check the indices and the exact create index statement used on that table.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 SQL Developer 查看索引并导出特定表的 DDL 脚本(包括创建索引)。
You can use SQL developer to see the indexes of your tables and export the DDL script (including the create index) of a particular table too.
另一种方法是使用特定表名查询 USER_INDEXES 表并使用 DBMS_METADATA.GET_DDL() 获取 DDL
Another way is to query
USER_INDEXES
table using the particular table name and get the DDL usingDBMS_METADATA.GET_DDL()