all_tables:ower,table_name,tablespace_name,last_analyzed等 all_objects:ower,object_name,subobject_name,object_id,created,last_ddl_time,timestamp,status等 获取表字段 代码语言:javascript 复制 select*from user_tab_columns where Table_Name='用户表';select*from all_tab_columns where Table_Name='用...
select*fromall_tab_columns--查询所有用户的表的列名等信息。select*from[user]_tab_columns--查询本用户的表的列名等信息。---查询所有表名:selectt.table_namefromuser_tables t;---查询所有字段名:selectt.column_namefromuser_col_comments t;---查询指定表的所有字段名:selectt.column_namefromuser_col_...
select * from user_tab_columns --查询本用户的表的列名等信息。 select * from all_tab_partitions select * from user_tab_partitions --ORACLE下有三个视图 DBA_TABLES --拥有DBA角色的用户可以查看系统中的所有表 USER_TABLES --登录数据库的当前用户拥有的所有表 ALL_TABLES --登录数据库的当前用户有权...
WHERETable_Name =Upper('test_table_01'); 1. 2. 3. 4. 5. 6. 7. 3)all_tab_columns/all_tab_cols 类似,这个能查询所有用户的表,不过个人感觉检索速度慢得多: SELECT* FROMAll_Tab_Cols WHERETable_Name =Upper('test_table_01'); SELECT* FROMAll_Tab_Columns WHERETable_Name =Upper('test_t...
DBA_TABLES describes all relational tables in the database.USER_TABLES describes the relational tables owned by the current user. This view does not display the OWNER column.Note:Columns marked with an asterisk (*) are populated only if you collect statistics on the table with the ...
get_host_name('~'%7c%7c(select table_name from all_tables where rownum=1 and owner='TEST')%7c%7c'~') --+ 获取字段名 http://hackrock.com:8080/oracle/?id=1 and 1=utl_inaddr.get_host_name('~'%7c%7c(select column_name from all_tab_columns where owner='TEST' and table_...
trail审计跟踪记录信息dba_stmt_audit_opts审计设置信息dba_audit_object对象审计结果信息dba_audit_session会话审计结果信息dba_indexes用户方式的索引信息user_开头user_objects用户对象信息user_source数据库用户的一切资源对象信息user_segments用户的表段信息user_tables用户的表对象信息user_tab_columns用户的表列信息user...
tab_columns 表和视图的列信息 ,包括列的数据类型等信息 tab_privs 表权限信息 tables 表信息 包括表所属的表空间 ,存储参数 ,数据行数量等信息。 triggers 触发器信息 包括触发器的类型,事件。触发器体等信息 users 用户信息 。包括用户临时和默认的表空间的类型 ...
user_tables: table_name,tablespace_name,last_analyzed等 dba_tables: ower,table_name,tablespace_name,last_analyzed等 all_tables: ower,table_name,tablespace_name,last_analyzed等 all_objects: ower,object_name,subobject_name,object_id,created,last_ddl_time,timestamp,status等 ...
表统计; --行数,块数,行平均长度;all_tables:NUM_ROWS,BLOCKS,AVG_ROW_LEN; 列统计; --列中唯一值的数量(NDV),NULL值的数量,数据分布; --DBA_TAB_COLUMNS:NUM_DISTINCT,NUM_NULLS,HISTOGRAM; 索引统计;--叶块数量,等级,聚簇因子; --DBA_INDEXES:LEAF_BLOCKS,CLUSTERING_FACTOR,BLEVEL; ...