溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

淺談Oracle數(shù)據(jù)庫的對(duì)象

發(fā)布時(shí)間:2020-07-08 17:49:10 來源:網(wǎng)絡(luò) 閱讀:1386 作者:藍(lán)月CC 欄目:關(guān)系型數(shù)據(jù)庫

Oracle數(shù)據(jù)庫---對(duì)象中最基本的是表和視圖,其他還有約束、索引、序列、函數(shù)、存儲(chǔ)過程、甚至創(chuàng)建同義詞。對(duì)數(shù)據(jù)庫的操作可以基本歸結(jié)為對(duì)數(shù)據(jù)對(duì)象的操作,因此,在上篇博文講述了基本操作的基礎(chǔ)上,本篇博文將介紹其對(duì)象的基本操作。

一、表和視圖

  • Oracle中表是數(shù)據(jù)存儲(chǔ)的基本結(jié)構(gòu)。隨之引入了分區(qū)表和對(duì)象表,后來又引入了臨時(shí)表,使表的功能更強(qiáng)大。
  • 視圖是一個(gè)或多個(gè)表中數(shù)據(jù)的邏輯表達(dá)式。用戶可以將視圖看成一個(gè)存儲(chǔ)查詢(stored query)或一個(gè)虛擬表(virtual table).查詢僅僅存儲(chǔ)在oracle數(shù)據(jù)字典中,實(shí)際的數(shù)據(jù)沒有存放在任何其它地方,所以建立視圖不用消耗其他的空間。視圖也可以隱藏復(fù)雜查詢。
1、表操作

在上一篇博文已詳細(xì)闡述,創(chuàng)建表空間---創(chuàng)建用戶(c##jerry)---創(chuàng)建表(info),表環(huán)境如下:

//創(chuàng)建表

SQL>create table info
2 (
3 id number(4) constraint PK_id primary key, #constraint :約束
4 name varchar2(10),
5 score number(5,2),
6 born date,
7 address varchar2(50)
8 );

//插入數(shù)據(jù)

SQL>insert into info values(1,'zhangsan',88,to_date('2018-10-9','yyyy-mm-dd'),'nanjing');
SQL>insert into info values(2,'lisi',77,null,null);
SQL>insert into info values(3,'lwangwu',77,null,null);
SQL>commit;

淺談Oracle數(shù)據(jù)庫的對(duì)象

2、創(chuàng)建視圖
SQL>create view view_info as select * from info;             #創(chuàng)建視圖
          select view view_info as select * from info;             #查看視圖
          drop view view_info;                                                      #刪除視圖

淺談Oracle數(shù)據(jù)庫的對(duì)象

3、物化視圖

物化視圖是包括一個(gè)查詢結(jié)果的數(shù)據(jù)庫對(duì)像,它是遠(yuǎn)程數(shù)據(jù)的的本地副本,或者用來生成基于數(shù)據(jù)表求和的匯總表。物化視圖存儲(chǔ)基于遠(yuǎn)程表的數(shù)據(jù),也可以稱為快照。

//給c##jerry用戶授權(quán)
SQL>conn sys/abc123 as sysdba                            #切換到管理員

grant create materialized view to c##jerry;      #創(chuàng)建物化視圖  
grant query rewrite to c##jerry;                          #查詢重寫
grant create any table to c##jerry;                     #創(chuàng)建任何表
grant select any table to c##jerry;                      #查看任何表

淺談Oracle數(shù)據(jù)庫的對(duì)象

//創(chuàng)建物化視圖日志

SQL>create materialized view log on info;

//創(chuàng)建物化視圖語句
SQL>create materialized view mtrlview_info     #建立物化視圖名稱
           build immediate                                          #立馬生成數(shù)據(jù) 
           refresh fast                                                  #刷新(不開啟此功能=快照)
           on commit                                                   #開啟提交功能
           enable query rewrite                                  #開啟查詢重寫
           as
           select語句;
//刪除物化視圖

SQL>drop materialized view mtrlview_info;
淺談Oracle數(shù)據(jù)庫的對(duì)象

二、索引

索引是一種可以提高查詢性能的數(shù)據(jù)結(jié)構(gòu),分為以下幾類:

//B-tree索引

SQL>create index score_index on info(score);

//唯一索引(針對(duì)主鍵,唯一、非空)

SQL>create unique index uni_index_info on info(id);

//反向索引

SQL>create index re_index_info on info(score) reverse;

//位圖索引

SQL>create bitmap index bit_index_info on info(address);

//其他索引(如函數(shù)索引)

SQL>create index upp_index_info on info(upper(name)); #大寫函數(shù)索引

//查看索引

SQL>select index_name,index_type,table_name,tablespace_name from user_indexes;

淺談Oracle數(shù)據(jù)庫的對(duì)象

//重建索引

SQL>alter index 索引名稱 rebuild;
SQL>alter index 索引名稱 rebuild tablespace 表空間

//合并索引碎片

SQL>alter index 索引名稱 coalesce;

//刪除索引

SQL>drop index 索引名稱

三、序列

Oracle序列是一個(gè)連續(xù)的數(shù)字生成器。序列常用于人為的關(guān)鍵字,或給數(shù)據(jù)行排序否則數(shù)據(jù)行是無序的。

//創(chuàng)建序列
SQL>create sequence toy_seq
start with 10                      #初始值
increment by 1                #增量
maxvalue 2000               #最大值
nocycle                            #非循環(huán)(超過2000不重新開始)
cache 30;                       #緩存30個(gè)序列數(shù)字
//創(chuàng)建表toy
SQL>create table toy
  2  (
  3 id number(4) constraint PK_id primary key,
  4  name varchar2(10),
  5  score number(5,2),
  6  born date,          
  7 );

淺談Oracle數(shù)據(jù)庫的對(duì)象

//插入數(shù)據(jù),驗(yàn)證序列號(hào)

SQL>insert into toy values (toy_seq.nextval,'zhangsan',88); #nextval:指針(固定) .為調(diào)用
SQL>insert into toy values (toy_seq.nextval,'zhangsan',77);

//查看序列當(dāng)前值

SQL>select toy_seq.currval from dual;

淺談Oracle數(shù)據(jù)庫的對(duì)象

//刪除序列

drop sequence toy_seq;

四、同義詞

  • 對(duì)另一個(gè)數(shù)據(jù)對(duì)象而言同義詞是一個(gè)別名。
  • 分類:公有同義詞(public)是針對(duì)所有用戶的;私有同義詞(private)則只針對(duì)對(duì)象擁有者或被授予權(quán)限的賬戶。
  • 在本地?cái)?shù)據(jù)庫中同義詞可以表示表、視圖、序列、程序、函數(shù)或包等數(shù)據(jù)對(duì)象,也可以通過鏈接表示另一個(gè)數(shù)據(jù)庫的對(duì)象。
    //創(chuàng)建私有同義詞(針對(duì)info表)

    SQL>create synonym pr_info for info;
    SQL>select * from pr_info; #通過同義詞查看

淺談Oracle數(shù)據(jù)庫的對(duì)象

//創(chuàng)建公有同義詞(針對(duì)info表)

SQL>create public synonym pub_info for info;
SQL> select * from pub_info; #查看

淺談Oracle數(shù)據(jù)庫的對(duì)象

五、分區(qū)表

為解決海量數(shù)據(jù)存儲(chǔ)問題

//創(chuàng)建四個(gè)表空間(tmp01、tmp02、tmp03、tmp04)

SQL>create tablespace tmp01
datafile '/orc/app/oracle/oradata/tmp01.dbf'
size 100M;
SQL>create tablespace tmp02
datafile '/orc/app/oracle/oradata/tmp02.dbf'
size 100M;
SQL>create tablespace tmp03
datafile '/orc/app/oracle/oradata/tmp03.dbf'
size 100M;
SQL>create tablespace tmp04
datafile '/orc/app/oracle/oradata/tmp04.dbf'
size 100M;

//創(chuàng)建分區(qū)表(sales)

create table sales
(
sales_id number,
product_id vachar2(5),
sales_date date
)
partition by range (sales_date)
(
partition p1 values less than (to_date('2018-04-03','yyyy-mm-dd')) tablespace tmp01,
partition p2 values less than (to_date('2018-05-03','yyyy-mm-dd')) tablespace tmp02,
partition p3 values less than (to_date('2018-06-03','yyyy-mm-dd')) tablespace tmp03,
partition p4 values less than (maxvalue) tablespace tmp04
);

//插入數(shù)據(jù),查看是否實(shí)現(xiàn)分布式存儲(chǔ)

insert into sales values(1,'abc',to_date('2018-05-23','yyyy-mm-dd'));
select * from sales partition(p3);

淺談Oracle數(shù)據(jù)庫的對(duì)象
#結(jié)果顯示:輸入數(shù)據(jù)日期為2018-05-23,應(yīng)該存儲(chǔ)在p3分區(qū)內(nèi),而其他分區(qū)沒有此條數(shù)據(jù)!

感謝大家的閱讀,希望共同進(jìn)步!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI