posts - 310, comments - 6939, trackbacks - 0, articles - 3
            BlogJava :: 首頁 :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理

          轉(zhuǎn)載:Oracle系統(tǒng)表查詢

          Posted on 2008-04-03 15:18 詩特林 閱讀(518) 評論(0)  編輯  收藏 所屬分類: Oracle

          Oracle系統(tǒ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 acc_nbr@dbl_spnew
          主站蜘蛛池模板: 文山县| 康平县| 游戏| 宁明县| 绥棱县| 裕民县| 台山市| 崇义县| 工布江达县| 乌审旗| 蒲江县| 天祝| 彰化市| 五原县| 星子县| 渑池县| 礼泉县| 天祝| 永川市| 乐平市| 桂东县| 十堰市| 丰城市| 桦川县| 沙河市| 武安市| 昌吉市| 绵竹市| 铁力市| 灵武市| 麻江县| 黄浦区| 旅游| 三原县| 永丰县| 忻城县| 通海县| 湾仔区| 苏尼特左旗| 南京市| 宁德市|