国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數(shù)據(jù)庫 > Oracle > 正文

oracle系統(tǒng)表查詢

2024-08-29 13:29:11
字體:
供稿:網(wǎng)友

最大的網(wǎng)站源碼資源下載站,

 
數(shù)據(jù)字典dict總是屬于oracle用戶sys的。
  1、用戶:
   select username from dba_users;
  改口令
   alter user spgroup identified by spgtest;
  2、表空間:
   select * from dba_data_files;
   select * from dba_tablespaces;//表空間

   select tablespace_name,sum(bytes), sum(blocks)
    from dba_free_space group by tablespace_name;//空閑表空間

   select * from dba_data_files
    where tablespace_name='rbs';//表空間對應(yīng)的數(shù)據(jù)文件

   select * from dba_segments
    where tablespace_name='indexs';
  3、數(shù)據(jù)庫對象:
   select * from dba_objects;
   cluster、database link、function、index、library、package、package body、
   procedure、sequence、synonym、table、trigger、type、undefined、view。
  4、表:
   select * from dba_tables;
   analyze my_table compute statistics;->dba_tables后6列
   select extent_id,bytes from dba_extents
   where segment_name='customers' and segment_type='table'
   order by extent_id;//表使用的extent的信息。segment_type='rollback'查看回滾段的空間分配信息
   列信息:
    select distinct table_name
    from user_tab_columns
    where column_name='so_type_id';
  5、索引: 
   select * from dba_indexes;//索引,包括主鍵索引
   select * from dba_ind_columns;//索引列
   select i.index_name,i.uniqueness,c.column_name
    from user_indexes i,user_ind_columns c
     where i.index_name=c.index_name
     and i.table_name ='acc_nbr';//聯(lián)接使用
  6、序列:
   select * from dba_sequences;
  7、視圖:
   select * from dba_views;
   select * from all_views;
  text 可用于查詢視圖生成的腳本
  8、聚簇:
   select * from dba_clusters;
  9、快照:
   select * from dba_snapshots;
  快照、分區(qū)應(yīng)存在相應(yīng)的表空間。
  10、同義詞:
   select * from dba_synonyms
    where table_owner='spgroup';
    //if owner is public,then the synonyms is a public synonym.
     if owner is one of users,then the synonyms is a private synonym.
  11、數(shù)據(jù)庫鏈:
   select * from dba_db_links;
  在spbase下建數(shù)據(jù)庫鏈
   create database link dbl_spnew
   connect to spnew identified by spnew using 'jhhx';
   insert into [email protected]_spnew
   select * from acc_nbr where nxx_nbr='237' and line_nbr='8888';
  12、觸發(fā)器:
   select * from dba_trigers;
  存儲過程,函數(shù)從dba_objects查找。
  其文本:select text from user_source where name='book_sp_example';
  建立出錯:select * from user_errors;
  oracle總是將存儲過程,函數(shù)等軟件放在system表空間。
  13、約束:
  (1)約束是和表關(guān)聯(lián)的,可在create table或alter table table_name add/drop/modify來建立、修改、刪除約束。
  可以臨時禁止約束,如:
   alter table book_example
   disable constraint book_example_1;
   alter table book_example
   enable constraint book_example_1;
  (2)主鍵和外鍵被稱為表約束,而not null和unique之類的約束被稱為列約束。通常將主鍵和外鍵作為單獨的命名約束放在字段列表下面,而列約束可放在列定義的同一行,這樣更具有可讀性。
  (3)列約束可從表定義看出,即describe;表約束即主鍵和外鍵,可從dba_constraints和dba_cons_columns 查。
   select * from user_constraints
   where table_name='book_example';
   select owner,constraint_name,table_name
    from user_constraints
    where constraint_type='r'
    order by table_name;
  (4)定義約束可以無名(系統(tǒng)自動生成約束名)和自己定義約束名(特別是主鍵、外鍵)
  如:create table book_example
    (identifier number not null);
    create table book_example
    (identifier number constranit book_example_1 not null);
  14、回滾段:
  在所有的修改結(jié)果存入磁盤前,回滾段中保持恢復該事務(wù)所需的全部信息,必須以數(shù)據(jù)庫發(fā)生的事務(wù)來相應(yīng)確定其大小(dml語句才可回滾,create,drop,truncate等ddl不能回滾)。
  回滾段數(shù)量=并發(fā)事務(wù)/4,但不能超過50;使每個回滾段大小足夠處理一個完整的事務(wù);
   create rollback segment r05
   tablespace rbs;
   create rollback segment rbs_cvt
   tablespace rbs
   storage(initial 1m next 500k);
  使回滾段在線
   alter rollback segment r04 online;
  用dba_extents,v$rollback_segs監(jiān)測回滾段的大小和動態(tài)增長。
  回滾段的區(qū)間信息
   select * from dba_extents
   where segment_type='rollback' and segment_name='rb1';
  回滾段的段信息,其中bytes顯示目前回滾段的字節(jié)數(shù)
   select * from dba_segments
    where segment_type='rollback' and segment_name='rb1';
  為事物指定回歸段
   set transaction use rollback segment rbs_cvt
  針對bytes可以使用回滾段回縮。
   alter rollback segment rbs_cvt shrink;
   select bytes,extents,max_extents from dba_segments
    where segment_type='rollback' and segment_name='rbs_cvt';
  回滾段的當前狀態(tài)信息:
   select * from dba_rollback_segs
    where segment_name='rb1';
  比多回滾段狀態(tài)status,回滾段所屬實例instance_num
  查優(yōu)化值optimal
   select n.name,s.optsize
    from v$rollname n,v$rollstat s
     where n.usn=s.usn;
  回滾段中的數(shù)據(jù)
   set transaction use rollback segment rb1;/*回滾段名*/
   select n.name,s.writes
    from v$rollname n,v$rollstat s
     where n.usn=s.usn;
  當事務(wù)處理完畢,再次查詢$rollstat,比較writes(回滾段條目字節(jié)數(shù))差值,可確定事務(wù)的大小。
  查詢回滾段中的事務(wù)
   column rr heading 'rb segment' format a18
   column us heading 'username' format a15
   column os heading 'os user' format a10
   column te heading 'terminal' format a10
   select r.name rr,nvl(s.username,'no transaction') us,s.osuser os,s.terminal te
    from v$lock l,v$session s,v$rollname r
     where l.sid=s.sid(+)
     and trunc(l.id1/65536)=r.usn
     and l.type='tx'
     and l.lmode=6
   order by r.name;
  15、作業(yè)
  查詢作業(yè)信息
   select job,broken,next_date,interval,what from user_jobs;
   select job,broken,next_date,interval,what from dba_jobs;
  查詢正在運行的作業(yè)
   select * from dba_jobs_running;
  使用包exec dbms_job.submit(:v_num,'a;',sysdate,'sysdate + (10/(24*60*60))')加入作業(yè)。間隔10秒鐘
exec dbms_job.submit(:v_num,'a;',sysdate,'sysdate + (11/(24*60))')加入作業(yè)。間隔11分鐘使用包exec dbms_job.remove(21)刪除21號作業(yè)。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 中山市| 弋阳县| 华安县| 遂溪县| 榕江县| 新乡市| 阜新市| 合川市| 宝兴县| 城市| 鸡西市| 鄯善县| 新密市| 林州市| 罗源县| 长丰县| 灵丘县| 北流市| 海伦市| 乾安县| 苗栗县| 自贡市| 宁化县| 平潭县| 福州市| 香格里拉县| 呼玛县| 枣阳市| 邛崃市| 平乡县| 修武县| 佛山市| 汝南县| 大冶市| 宁武县| 若尔盖县| 新昌县| 商都县| 军事| 德格县| 陈巴尔虎旗|