常用ORACLE表及作用。
資料字典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';//表空間對應的資料檔案
select * from dba_segments
where tablespace_name='INDEXS';
3、資料庫物件:
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';//聯接使用
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;
快照、分割槽應存在相應的表空間。
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、資料庫鏈:
select * from dba_db_links;
在spbase下建資料庫鏈
create database link dbl_spnew
connect to spnew identified by spnew using 'jhhx';
insert into acc_nbr@dbl_spnew
select * from acc_nbr where nxx_nbr='237' and line_nbr='8888';
12、觸發器:
select * from dba_trigers;
儲存過程,函式從dba_objects查詢。
其文字:select text from user_source where name='BOOK_SP_EXAMPLE';
建立出錯:select * from user_errors;
oracle總是將儲存過程,函式等軟體放在SYSTEM表空間。
13、約束:
(1)約束是和表關聯的,可在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)定義約束可以無名(系統自動生成約束名)和自己定義約束名(特別是主鍵、外來鍵)
如:create table book_example
(identifier number not null);
create table book_example
(identifier number constranit book_example_1 not null);
14、回滾段:
在所有的修改結果存入磁碟前,回滾段中保持恢復該事務所需的全部資訊,必須以資料庫發生的事務來相應確定其大小(DML語句才可回滾,create,drop,truncate等DDL不能回滾)。
回滾段數量=併發事務/4,但不能超過50;使每個回滾段大小足夠處理一個完整的事務;
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監測回滾段的大小和動態增長。
回滾段的區間資訊
select * from dba_extents
where segment_type='ROLLBACK' and segment_name='RB1';
回滾段的段資訊,其中bytes顯示目前回滾段的位元組數
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';
回滾段的當前狀態資訊:
select * from dba_rollback_segs
where segment_name='RB1';
比多回滾段狀態status,回滾段所屬例項instance_num
查優化值optimal
select n.name,s.optsize
from v$rollname n,v$rollstat s
where n.usn=s.usn;
回滾段中的資料
set transaction use rollback segment rb1;/*回滾段名*/
select n.name,s.writes
from v$rollname n,v$rollstat s
where n.usn=s.usn;
當事務處理完畢,再次查詢$rollstat,比較writes(回滾段條目位元組數)差值,可確定事務的大小。
查詢回滾段中的事務
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、作業
查詢作業資訊
select job,broken,next_date,interval,what from user_jobs;
select job,broken,next_date,interval,what from dba_jobs;
查詢正在執行的作業
select * from dba_jobs_running;
使用包exec dbms_job.submit(:v_num,'a;',sysdate,'sysdate + (10/(24*60*60))')加入作業。間隔10秒鐘
exec dbms_job.submit(:v_num,'a;',sysdate,'sysdate + (11/(24*60))')加入作業。間隔11分鐘使用包exec dbms_job.remove(21)刪除21號作業。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25736250/viewspace-703295/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ORACLE 程式的作用及檢視Oracle
- ORACLE EBS常用表及查詢語句(最終整理版)Oracle
- Oracle常用資料字典表Oracle
- Oracle常用問題及解答Oracle
- Oracle中password file的作用及說明Oracle
- 表及索引 move tablespace 常用指令碼索引指令碼
- 【ORACLE】Oracle常用SQL及重點功能說明OracleSQL
- oracle 定期表及索引分析Oracle索引
- ORACLE_系統字典常用表整理Oracle
- Oracle分割槽表常用命令Oracle
- oracle 分割槽表 概念以及常用操作Oracle
- 【AUDIT]Oracle審計配置及常用sqlOracleSQL
- oracle表及表空間使用情況Oracle
- Mybatis的Mapper對映檔案中常用標籤及作用MyBatisAPP
- (zt)Oracle中password file orapwd的作用及說明Oracle
- Oracle中passwordfile的作用及說明考試大全Oracle
- 【SCRIPT】Oracle表管理段管理常用語句Oracle
- Oracle表的建立及設計Oracle
- oracle 常用命令及參照方法Oracle
- 電腦常用埠號作用
- Oracle - 表空間相關常用操作語句Oracle
- Oracle Database中DBA常用的表和檢視OracleDatabase
- Oracle分割槽表及分割槽索引Oracle索引
- 一些常用jar包作用JAR
- 1-庫表檢視及常用資料型別資料型別
- Maven介紹,包括作用、核心概念、用法、常用命令、擴充套件及配置Maven套件
- Oracle 常用資料字典表、檢視的總結Oracle
- Oracle調優-常用表KEEP到記憶體中Oracle記憶體
- Oracle 常用效能檢視一覽表(10g)Oracle
- Oracle 常用資料字典檢視、表的總結Oracle
- Oracle Undo的作用Oracle
- Oracle11g RAC常用操作 (維護及管理)Oracle
- ST 's Ch01 Oracle常識及常用SQLOracleSQL
- Oracle表與索引的分析及索引重建Oracle索引
- oracle分割槽表學習及應用Oracle
- Oracle表碎片起因及解決辦法Oracle
- element-ui自定義表單校驗規則及常用表單校驗UI
- 常用TCP 埠作用及其操作建議TCP