速查表的名称和建表语句
Posted 书山有路勤为径
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了速查表的名称和建表语句相关的知识,希望对你有一定的参考价值。
select table_name from dict where table_name like ‘%STATIS%‘;
先设置set long 1000
select dbms_metadata.get_ddl(‘TABLESPACE‘,‘TEMP‘) from dual;
select dbms_metadata.get_ddl(‘TABLE‘,‘KU$_LIST_FILTER_TEMP‘) from dual;
侧重区上:这个分区表显示数据库所有分区表的详细分区信息
Desc dba_tab_partitions |
侧重表上:显示当前用户可访问的所有分区表的信息
Desc dba_part_tables |
--查看表的stats
select * from user_tab_statistics where table_name = ‘STUDENT‘
--查看列的stats
select * from user_tab_col_statistics where table_name = ‘STUDENT‘
--查看索引的stats
select * from user_ind_statistics where table_name = ‘STUDENT‘
以上是关于速查表的名称和建表语句的主要内容,如果未能解决你的问题,请参考以下文章