您的位置:首页 > 博客中心 > 数据库 >

oracle系统表的查询

时间:2022-03-14 03:42

oracle查询用户下的所有表

select * from all_tab_comments -- 查询所有用户的表,视图等
select * from user_tab_comments   -- 查询本用户的表,视图等
select * from all_col_comments --查询所有用户的表的列名和注释.
select * from user_col_comments -- 查询本用户的表的列名和注释
select * from all_tab_columns --查询所有用户的表的列名等信息(详细但是没有备注).
select * from user_tab_columns --查询本用户的表的列名等信息(详细但是没有备注).

--一般使用1:
select t.table_name,t.comments from user_tab_comments t

--一般使用2:
select r1, r2, r3, r5
from (select a.table_name r1, a.column_name r2, a.comments r3
          from user_col_comments a),
       (select t.table_name r4, t.comments r5 from user_tab_comments t)
where r4 = r1

oracle 系统表 查询

1、用户: 
gxlsystem.com,布布扣   select username from dba_users; 
gxlsystem.com,布布扣  改口令 
gxlsystem.com,布布扣   alter user spgroup identified by spgtest; 
gxlsystem.com,布布扣  2、表空间: 
gxlsystem.com,布布扣   select * from dba_data_files; 
gxlsystem.com,布布扣   select * from dba_tablespaces;//表空间 
gxlsystem.com,布布扣
gxlsystem.com,布布扣   select tablespace_name,sum(bytes), sum(blocks) 
gxlsystem.com,布布扣    from dba_free_space group by tablespace_name;//空闲表空间 
gxlsystem.com,布布扣
gxlsystem.com,布布扣   select * from dba_data_files 
gxlsystem.com,布布扣    where tablespace_name=‘RBS‘;//表空间对应的数据文件 
gxlsystem.com,布布扣
gxlsystem.com,布布扣   select * from dba_segments 
gxlsystem.com,布布扣    where tablespace_name=‘INDEXS‘; 
gxlsystem.com,布布扣  3、数据库对象: 
gxlsystem.com,布布扣   select * from dba_objects; 
gxlsystem.com,布布扣   CLUSTER、DATABASE LINK、FUNCTION、INDEX、LIBRARY、PACKAGE、PACKAGE BODY、 
gxlsystem.com,布布扣   PROCEDURE、SEQUENCE、SYNONYM、TABLE、TRIGGER、TYPE、UNDEFINED、VIEW。 
gxlsystem.com,布布扣  4、表: 
gxlsystem.com,布布扣   select * from dba_tables; 
gxlsystem.com,布布扣   analyze my_table compute statistics;->dba_tables后6列 
gxlsystem.com,布布扣   select extent_id,bytes from dba_extents 
gxlsystem.com,布布扣   where segment_name=‘CUSTOMERS‘ and segment_type=‘TABLE‘ 
gxlsystem.com,布布扣   order by extent_id;//表使用的extent的信息。segment_type=‘ROLLBACK‘查看回滚段的空间分配信息 
gxlsystem.com,布布扣   列信息: 
gxlsystem.com,布布扣    select distinct table_name 
gxlsystem.com,布布扣    from user_tab_columns 
gxlsystem.com,布布扣    where column_name=‘SO_TYPE_ID‘; 
gxlsystem.com,布布扣  5、索引:  
gxlsystem.com,布布扣   select * from dba_indexes;//索引,包括主键索引 
gxlsystem.com,布布扣   select * from dba_ind_columns;//索引列 
gxlsystem.com,布布扣   select i.index_name,i.uniqueness,c.column_name 
gxlsystem.com,布布扣    from user_indexes i,user_ind_columns c 
gxlsystem.com,布布扣     where i.index_name=c.index_name 
gxlsystem.com,布布扣     and i.table_name =‘ACC_NBR‘;//联接使用 
gxlsystem.com,布布扣  6、序列: 
gxlsystem.com,布布扣   select * from dba_sequences; 
gxlsystem.com,布布扣  7、视图: 
gxlsystem.com,布布扣   select * from dba_views; 
gxlsystem.com,布布扣   select * from all_views; 
gxlsystem.com,布布扣  text 可用于查询视图生成的脚本 
gxlsystem.com,布布扣  8、聚簇: 
gxlsystem.com,布布扣   select * from dba_clusters; 
gxlsystem.com,布布扣  9、快照: 
gxlsystem.com,布布扣   select * from dba_snapshots; 
gxlsystem.com,布布扣  快照、分区应存在相应的表空间。 
gxlsystem.com,布布扣  10、同义词: 
gxlsystem.com,布布扣   select * from dba_synonyms 
gxlsystem.com,布布扣    where table_owner=‘SPGROUP‘; 
gxlsystem.com,布布扣    //if owner is PUBLIC,then the synonyms is a public synonym. 
gxlsystem.com,布布扣     if owner is one of users,then the synonyms is a private synonym. 
gxlsystem.com,布布扣  11、数据库链: 
gxlsystem.com,布布扣   select * from dba_db_links; 
gxlsystem.com,布布扣  在spbase下建数据库链 
gxlsystem.com,布布扣   create database link dbl_spnew 
gxlsystem.com,布布扣   connect to spnew identified by spnew using ‘jhhx‘; 
gxlsystem.com,布布扣   insert into acc_nbr@dbl_spnew 
gxlsystem.com,布布扣   select * from acc_nbr where nxx_nbr=‘237‘ and line_nbr=‘8888‘; 
gxlsystem.com,布布扣  12、触发器: 
gxlsystem.com,布布扣   select * from dba_trigers; 
gxlsystem.com,布布扣  存储过程,函数从dba_objects查找。 
gxlsystem.com,布布扣  其文本:select text from user_source where name=‘BOOK_SP_EXAMPLE‘; 
gxlsystem.com,布布扣  建立出错:select * from user_errors; 
gxlsystem.com,布布扣  oracle总是将存储过程,函数等软件放在SYSTEM表空间。 
gxlsystem.com,布布扣  13、约束: 
gxlsystem.com,布布扣  (1)约束是和表关联的,可在create table或alter table table_name add/drop/modify来建立、修改、删除约束。 
gxlsystem.com,布布扣  可以临时禁止约束,如: 
gxlsystem.com,布布扣   alter table book_example 
gxlsystem.com,布布扣   disable constraint book_example_1; 
gxlsystem.com,布布扣   alter table book_example 
gxlsystem.com,布布扣   enable constraint book_example_1; 
gxlsystem.com,布布扣  (2)主键和外键被称为表约束,而not null和unique之类的约束被称为列约束。通常将主键和外键作为单独的命名约束放在字段列表下面,而列约束可放在列定义的同一行,这样更具有可读性。 
gxlsystem.com,布布扣  (3)列约束可从表定义看出,即describe;表约束即主键和外键,可从dba_constraints和dba_cons_columns 查。 
gxlsystem.com,布布扣   select * from user_constraints 
gxlsystem.com,布布扣   where table_name=‘BOOK_EXAMPLE‘; 
gxlsystem.com,布布扣   select owner,CONSTRAINT_NAME,TABLE_NAME 
gxlsystem.com,布布扣    from user_constraints 
gxlsystem.com,布布扣    where constraint_type=‘R‘ 
gxlsystem.com,布布扣    order by table_name; 
gxlsystem.com,布布扣  (4)定义约束可以无名(系统自动生成约束名)和自己定义约束名(特别是主键、外键) 
gxlsystem.com,布布扣  如:create table book_example 
gxlsystem.com,布布扣    (identifier number not null); 
gxlsystem.com,布布扣    create table book_example 
gxlsystem.com,布布扣    (identifier number constranit book_example_1 not null); 
gxlsystem.com,布布扣  14、回滚段: 
gxlsystem.com,布布扣  在所有的修改结果存入磁盘前,回滚段中保持恢复该事务所需的全部信息,必须以数据库发生的事务来相应确定其大小(DML语句才可回滚,create,drop,truncate等DDL不能回滚)。 
gxlsystem.com,布布扣  回滚段数量=并发事务/4,但不能超过50;使每个回滚段大小足够处理一个完整的事务; 
gxlsystem.com,布布扣   create rollback segment r05 
gxlsystem.com,布布扣   tablespace rbs; 
gxlsystem.com,布布扣   create rollback segment rbs_cvt 
gxlsystem.com,布布扣   tablespace rbs 
gxlsystem.com,布布扣   storage(initial 1M next 500k); 
gxlsystem.com,布布扣  使回滚段在线 
gxlsystem.com,布布扣   alter rollback segment r04 online; 
gxlsystem.com,布布扣  用dba_extents,v$rollback_segs监测回滚段的大小和动态增长。 
gxlsystem.com,布布扣  回滚段的区间信息 
gxlsystem.com,布布扣   select * from dba_extents 
gxlsystem.com,布布扣   where segment_type=‘ROLLBACK‘ and segment_name=‘RB1‘; 
gxlsystem.com,布布扣  回滚段的段信息,其中bytes显示目前回滚段的字节数 
gxlsystem.com,布布扣   select * from dba_segments 
gxlsystem.com,布布扣    where segment_type=‘ROLLBACK‘ and segment_name=‘RB1‘; 
gxlsystem.com,布布扣  为事物指定回归段 
gxlsystem.com,布布扣   set transaction use rollback segment rbs_cvt 
gxlsystem.com,布布扣  针对bytes可以使用回滚段回缩。 
gxlsystem.com,布布扣   alter rollback segment rbs_cvt shrink; 
gxlsystem.com,布布扣   select bytes,extents,max_extents from dba_segments 
gxlsystem.com,布布扣    where segment_type=‘ROLLBACK‘ and segment_name=‘RBS_CVT‘; 
gxlsystem.com,布布扣  回滚段的当前状态信息: 
gxlsystem.com,布布扣   select * from dba_rollback_segs 
gxlsystem.com,布布扣    where segment_name=‘RB1‘; 
gxlsystem.com,布布扣  比多回滚段状态status,回滚段所属实例instance_num 
gxlsystem.com,布布扣  查优化值optimal 
gxlsystem.com,布布扣   select n.name,s.optsize 
gxlsystem.com,布布扣    from v$rollname n,v$rollstat s 
gxlsystem.com,布布扣     where n.usn=s.usn; 
gxlsystem.com,布布扣  回滚段中的数据 
gxlsystem.com,布布扣gxlsystem.com,布布扣   set transaction use rollback segment rb1;/**//*回滚段名*/ 
gxlsystem.com,布布扣   select n.name,s.writes 
gxlsystem.com,布布扣    from v$rollname n,v$rollstat s 
gxlsystem.com,布布扣     where n.usn=s.usn; 
gxlsystem.com,布布扣  当事务处理完毕,再次查询$rollstat,比较writes(回滚段条目字节数)差值,可确定事务的大小。 
gxlsystem.com,布布扣  查询回滚段中的事务 
gxlsystem.com,布布扣   column rr heading ‘RB Segment‘ format a18 
gxlsystem.com,布布扣   column us heading ‘Username‘ format a15 
gxlsystem.com,布布扣   column os heading ‘Os User‘ format a10 
gxlsystem.com,布布扣   column te heading ‘Terminal‘ format a10 
gxlsystem.com,布布扣   select r.name rr,nvl(s.username,‘no transaction‘) us,s.osuser os,s.terminal te 
gxlsystem.com,布布扣    from v$lock l,v$session s,v$rollname r 
gxlsystem.com,布布扣     where l.sid=s.sid(+) 
gxlsystem.com,布布扣     and trunc(l.id1/65536)=R.USN 
gxlsystem.com,布布扣     and l.type=‘TX‘ 
gxlsystem.com,布布扣     and l.lmode=6 
gxlsystem.com,布布扣   order by r.name; 
gxlsystem.com,布布扣  15、作业 
gxlsystem.com,布布扣  查询作业信息 
gxlsystem.com,布布扣   select job,broken,next_date,interval,what from user_jobs; 
gxlsystem.com,布布扣   select job,broken,next_date,interval,what from dba_jobs; 
gxlsystem.com,布布扣  查询正在运行的作业 
gxlsystem.com,布布扣   select * from dba_jobs_running; 
gxlsystem.com,布布扣  使用包exec dbms_job.submit(:v_num,‘a;‘,sysdate,‘sysdate + (10/(24*60*60))‘)加入作业。间隔10秒钟 
gxlsystem.com,布布扣exec dbms_job.submit(:v_num,‘a;‘,sysdate,‘sysdate + (11/(24*60))‘)加入作业。间隔11分钟使用包exec dbms_job.remove(21)删除21号作业。

热门排行

今日推荐

热门手游