建立和刪除Oracle資料庫使用者 表空間

2021-05-22 14:49:42 字數 1017 閱讀 3744

1. 建立普通使用者

>create user username identified by username;

>grant create tablespace, resource ,connect to username;

2. 建立表空間和使用者

2.1 建立臨時表空間

>create temporary tablespace db_temp

tempfile '/opt/oracle/oradata/mydb/ts_db_temp01.dbf'

size 200m

autoextend on

next 50m maxsize unlimited

extent management local;

2.2 建立資料表空間

>create tablespace db_tablespace

logging

datafile '/opt/oracle/oradata/mydb/ts_db_data01.dbf'

size 500m 

autoextend on 

next 50m  maxsize unlimited

extent management local;

2.3 建立使用者並指定表空間

>create user username identified by password

default tablespace db_tablespace

temporary tablespace db_temp;

2.4 給使用者授予許可權

>grant connect,resource to username;

3. 刪除oracle資料庫使用者和表空間

3.1 刪除oracle資料庫使用者

>drop user user cascade;

3.2 刪除oracle資料庫空間

>drop tablespace tsname including contents and datafiles;

Oracle資料庫管理之建立和刪除資料庫

一 資料庫管理概述 圖1 圖2圖3 圖4圖5 圖6圖7 圖8圖9 圖10圖11 圖12圖13 14 單擊 完成 按鈕,出現 確認 視窗,如圖14 圖14 15 單擊 另存為html檔案 按鈕,可以將這些詳細資料儲存為html檔案,以供以後檢視。16 單擊 確定 按鈕,出現自動建立資料庫的過程介面,如...

Oracle建立 刪除資料庫

在我們將乙個專案資料庫移植到另外乙個計算機上的時候我們通常需要新建資料庫。它的操作步驟是 開始 所有程式 oracle oradb10 home1 配置和移植工具 database configration assistant 在這個工具中我們相應的有 建立資料庫 刪除資料庫 管理模板等等。我們選擇...

oracle 資料庫使用者建立和許可權管理

create user user identified by password 建立完之後使用plsql登入會提示連線失敗,是因為沒有許可權導致的,將normal更改為sysdba,然後登入 建立完使用者以後,我們要賦予使用者許可權 sql命令為 grant privilege privilege....