偷偷摘套内射激情视频,久久精品99国产国产精,中文字幕无线乱码人妻,中文在线中文a,性爽19p

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

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

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

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

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

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

一般至少有以下幾個(gè)用戶:

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

客戶端:

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

Oracle數(shù)據(jù)庫的體系結(jié)構(gòu)包括物理存儲(chǔ)結(jié)構(gòu)和邏輯存儲(chǔ)結(jié)構(gòu)。由于它們是相分離的,所以在管理數(shù)據(jù)的物理存儲(chǔ)結(jié)構(gòu)時(shí)并不會(huì)影響對(duì)邏輯存儲(chǔ)結(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;  

 

這樣的操作似乎只能在同一個(gè)數(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)容就是對(duì)Oracle數(shù)據(jù)庫與Oracle修改表owner的部分內(nèi)容的介紹,望你能有所收獲。

【編輯推薦】

  1. Oracle約束的添加可以用六種方法解決
  2. 對(duì)Oracle綁定變量的實(shí)際操作
  3. Oracle清理臨時(shí)表空間的實(shí)際操作
  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-09-02 10:06:51

OracleSqlLoad常用技巧

2010-04-22 09:42:00

2011-08-18 16:42:04

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

2010-05-18 10:27:50

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

2010-04-15 10:51:52

2024-03-26 00:05:13

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

2010-04-15 15:52:12

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

2009-06-05 11:55:00

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

2010-04-01 09:46:04

Oracle日期函數(shù)

2010-04-19 15:01:10

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

2010-04-21 14:11:56

Oracle數(shù)據(jù)庫
點(diǎn)贊
收藏

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