自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

Oracle數(shù)據(jù)庫中常用的用戶

數(shù)據(jù)庫 Oracle
本文主要介紹的是Oracle數(shù)據(jù)庫所對應(yīng)的唯一的一個實例名SID,在Oracle數(shù)據(jù)庫的服務(wù)器啟動之后,會出現(xiàn)幾個用戶,具體是那幾個本文會給出答案。

Oracle作為一種超大規(guī)模型的數(shù)據(jù)庫,所存儲數(shù)據(jù)的量和一般數(shù)據(jù)庫的相比要大的多,以下就是對Oracle數(shù)據(jù)庫的體系結(jié)構(gòu)的相關(guān)內(nèi)容的介紹,以下是文章的具體介紹,望你瀏覽完以下的內(nèi)容會有所收獲。

Oracle數(shù)據(jù)庫包括Oracle數(shù)據(jù)庫服務(wù)器和客戶端。

Oracle數(shù)據(jù)庫服務(wù)器:

Oracle Server是一個對象一關(guān)系數(shù)據(jù)庫管理系統(tǒng)。它提供開放的、全面的、和集成的信息管理方法。每個Server由一個 Oracle DB和一個 Oracle Server實例組成。它具有場地自治性(Site Autonomy)和提供數(shù)據(jù)存儲透明機(jī)制,以此可實現(xiàn)數(shù)據(jù)存儲透明性。每個 Oracle數(shù)據(jù)庫對應(yīng)唯一的一個實例名SID,Oracle數(shù)據(jù)庫服務(wù)器啟動后,

一般至少有以下幾個用戶:

Internal,它不是一個真實的用戶名,而是具有SYSDBA優(yōu)先級的Sys用戶的別名,它由DBA用戶使用來完成數(shù)據(jù)庫的管理任務(wù),包括啟動和關(guān)閉數(shù)據(jù)庫;Sys,它是一個 DBA用戶名,具有***的數(shù)據(jù)庫操作權(quán)限;System,它也是一個 DBA用戶名,權(quán)限僅次于 Sys用戶。

客戶端:

為數(shù)據(jù)庫用戶操作端,由應(yīng)用、工具、SQL* NET組成,用戶操作數(shù)據(jù)庫時,必須連接到一服務(wù)器,該數(shù)據(jù)庫稱為本地數(shù)據(jù)庫(Local DB)。在網(wǎng)絡(luò)環(huán)境下其它服務(wù)器上的 DB稱為遠(yuǎn)程數(shù)據(jù)庫(Remote DB)。用戶要存取遠(yuǎn)程 DB上的數(shù)據(jù)時,必須建立數(shù)據(jù)庫鏈。

Oracle數(shù)據(jù)庫的體系結(jié)構(gòu)包括物理存儲結(jié)構(gòu)和邏輯存儲結(jié)構(gòu)。由于它們是相分離的,所以在管理數(shù)據(jù)的物理存儲結(jié)構(gòu)時并不會影響對邏輯存儲結(jié)構(gòu)的存取。

Oracle修改表owner

  1. create user test identified by test  
  2. grant resource,connect to test;  
  3. create table t1 (id number,name varchar2(20));  
  4. insert into t1 values (1,'xx');  
  5. commit;  
  6. grant all on t1 to test1;  

 

這樣的操作似乎只能在同一個數(shù)據(jù)庫中操作。

 

  1. create user test1 identified by test1  
  2. grant resource,connect to test1;  
  3. conn test1/test1  
  4. create table temp(id number,name varchar2(20)) 
    partition by range(id)  
  5. (partition part0 values less than (-1),  
  6. partition part1 values less than (maxvalue));  
  7. create table t1(id number,name varchar2(20));  
  8. alter table temp exchange partition part1 with
     table test.t1  
  9. including indexes without validation;  
  10. alter table temp exchange partition part1 with 
    table t1 including indexes without validation;  

 

以上的相關(guān)內(nèi)容就是對Oracle數(shù)據(jù)庫與Oracle修改表owner的部分內(nèi)容的介紹,望你能有所收獲。

【編輯推薦】

  1. Oracle約束的添加可以用六種方法解決
  2. 對Oracle綁定變量的實際操作
  3. Oracle清理臨時表空間的實際操作
  4. Sun Oracle數(shù)據(jù)庫機(jī)的開發(fā)
  5. Oracle數(shù)據(jù)庫的體系很復(fù)雜的原因介紹
責(zé)任編輯:佚名 來源: 博客園
相關(guān)推薦

2011-05-26 14:31:57

Oracle數(shù)據(jù)庫

2010-05-07 13:28:43

Oracle數(shù)據(jù)庫

2010-04-19 13:56:19

Oracle數(shù)據(jù)庫服務(wù)

2010-05-31 09:50:13

MySQL數(shù)據(jù)庫

2010-05-21 16:33:02

MySQL數(shù)據(jù)庫

2015-07-23 17:02:55

oracle創(chuàng)建數(shù)據(jù)庫

2010-04-06 11:02:30

Oracle 數(shù)據(jù)庫

2023-12-26 09:34:43

MySQL數(shù)據(jù)庫優(yōu)化

2010-07-13 10:43:26

SQL Server數(shù)

2011-08-18 16:42:04

Oracle數(shù)據(jù)庫維護(hù)SQL代碼示例

2011-09-02 10:06:51

OracleSqlLoad常用技巧

2010-04-22 09:42:00

2010-05-18 10:27:50

MySQL數(shù)據(jù)庫

2010-04-15 10:51:52

2009-06-05 11:55:00

數(shù)據(jù)庫用戶管理數(shù)據(jù)導(dǎo)入導(dǎo)出

2010-04-19 15:01:10

Oracle數(shù)據(jù)庫

2010-04-01 09:46:04

Oracle日期函數(shù)

2024-03-26 00:05:13

數(shù)據(jù)庫數(shù)據(jù)結(jié)構(gòu)

2010-04-15 15:52:12

Oracle數(shù)據(jù)庫

2017-12-26 15:10:30

數(shù)據(jù)庫Oracle操作語句
點贊
收藏

51CTO技術(shù)棧公眾號