oracle在schema是什麼意思?

來源:互聯網
上載者:User

標籤:

看來有些人還在schema不明白的真正含義,今天,我再次整理,我希望能協助。

我們先來看看它們的定義:
A schema is a collection of database objects (used by a user.).
Schema objects are the logical structures that directly refer to the database’s data.
A user is a name defined in the database that can connect to and access objects.
Schemas and users help database administrators manage database security.

從定義中我們能夠看出schema為資料庫物件的集合,為了區分各個集合,我們須要給這個集合起個名字,這些名字就是我們在企業管理器的方案下看到的很多相似username的節點,這些相似username的節點事實上就是一個schema。schema裡麵包括了各種對象如tables, views, sequences, stored procedures, synonyms, indexes, clusters, and database links。



一個使用者一般相應一個schema,該使用者的schema名等於username,並作為該使用者預設schema。這也就是我們在企業管理器的方案下看到schema名都為資料庫username的原因。

Oracle資料庫中不能新建立一個schema,要想建立一個schema,僅僅能通過建立一個使用者的方法解決(Oracle中儘管有create schema語句,可是它並非用來建立一個schema的),在建立一個使用者的同一時候為這個使用者建立一個與username同名的schem並作為該使用者的預設shcema。

即schema的個數同user的個數同樣,並且schema名字同user名字一一 相應並且同樣,全部我們能夠稱schema為user的別名。儘管這樣說並不準確,可是更easy理解一些。

一個使用者有一個預設的schema,其schema名就等於username。當然一個使用者還能夠使用其它的schema。假設我們訪問一個表時,沒有指明該表屬於哪一個schema中的,系統就會自己主動給我們在表上加上預設的sheman名。比方我們在訪問資料庫時,訪問scott使用者下的emp表,通過select * from emp; 事實上,這sql語句的完整寫法為select * from scott.emp。在資料庫中一個對象的完整名稱為schema.object,而不屬user.object。相似假設我們在建立對象時不指定該對象的schema。在該對象的schema為使用者的預設schema。這就像一個使用者有一個預設的資料表空間,可是該使用者還能夠使用其它的資料表空間,假設我們在建立對象時不指定資料表空間,則Object Storage Service在預設資料表空間中,要想讓Object Storage Service在其它資料表空間中,我們須要在建立對象時指定該對象的資料表空間。

咳,說了這麼多,給大家舉個範例。否則,一切枯燥無味。
SQL> Gruant dba to scott

SQL> create table test(name char(10));
Table created.

SQL> create table system.test(name char(10));
Table created.

SQL> insert into test values(‘scott‘);
1 row created.

SQL> insert into system.test values(‘system‘);
1 row created.

SQL> commit;
Commit complete.

SQL> conn system/manager
Connected.

SQL> select * from test;
NAME
----------
system

SQL> ALTER SESSION SET CURRENT_SCHEMA = scott; --改變使用者預設schema名
Session altered.

SQL> select * from test;
NAME
----------
scott

SQL> select owner ,table_name from dba_tables where table_name=upper(‘test‘);
OWNER TABLE_NAME
------------------------------ ------------------------------
SCOTT TEST
SYSTEM TEST
--以上就是我說的這個查詢schema如user據別名。實際使用,shcema與user完全不同,無差異,在的情況下schema地名可以出現user名字。

oracle在schema是什麼意思?

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.