使用plsql建立表空間和使用者

2022-08-17 10:00:23 字數 710 閱讀 8695

使用plsql建立oracle資料庫的表空間和使用者,並授權的語句。

1.建立表空間:

說明:datafile是指定建立位置,指向oracle資料庫的預設位置;

autoextend 設定容量為自動增長,50m是自增的大小

create

tablespace test

datafile ''

size 1m autoextend

onnext 50m maxsize unlimited;

2.建立新的使用者:

說明:identified by後為使用者登入密碼;

default tablespace為預設表空間;

profile設為系統預設;

account unlock解鎖使用者;

create

user

test

identified

by "123

"default

tablespace test

profile

default

account unlock;

3.授限:

說明:分別給使用者授dba許可權和表空間授無限增長許可權

grant dba to

test;

grant unlimited tablespace to test;

使用PL SQL建立表空間

create tablespace 是建立表空間,和表名一點關係都沒有 1 2 3 4 5 6 createtablespace shopping 建立表空間shopping datafile shopping.dbf 表空間使用的資料檔案 size50m 大小50m autoextendon 自動...

用PLSQL建立表空間及使用者

1.登入 用sys 登入 dba許可權 2.建立表空間 備註 datafile為儲存表空間位置,autoextend 為設定容量為自動增長,50m是自增大小 3.建立使用者 create user temp1 identified by temp1 default tablespace ajzlpc...

使用pl sql來Oracle建立表空間和建立使用者

建立臨時表空間 create temporary tablespace test temp tempfile e oracle product 10.2.0 oradata testserver test temp01.dbf size 32m autoextend on next 32m maxs...