Oracle 19C 建立使用者 表空間

2021-10-08 07:01:55 字數 1405 閱讀 3749

宣告:本次操作基於win10系統安裝oracle 19c

1.建立使用者需要管理員許可權

執行 cmd 按如下輸入命令

sqlplus / as sysdba

---------以sys登陸 超級使用者(sysdba)

2新建使用者

create user 使用者名稱 identified by 密碼; 

如:create user c##scott identified by 123456;

3.建立表空間

create tablespace 表空間名稱 datafile 路徑 size 大小;

如:create tablespace scott_test_data datafile 'd:\devlop\oracle19c\oraclespace\scott_test.dbf' size 2048m;

注意:我們給使用者賦予新建的表空間許可權的時候,一定要重啟一下資料庫,否則會失敗

重啟資料庫

關閉資料庫:shutdown immediate

sql> shutdown immediate;

資料庫已經關閉。

已經解除安裝資料庫。

oracle 例程已經關閉。

啟動 startup

oracle 例程已經啟動。

total system global area 5133827960 bytes

fixed size 9277304 bytes

variable size 922746880 bytes

database buffers 4194304000 bytes

redo buffers 7499776 bytes

資料庫裝載完畢。

資料庫已經開啟。

5.分配表空間

alter user 使用者名稱 default tablespace 表空間名稱;

如:alter user c##scott default tablespace scott_test_data;

6.給使用者授權

dba是資料庫管理員 它除了重啟資料庫 修改字符集的許可權沒有外 具有其它全部許可權 如建表改表 表的增刪改查,建表空間 建索引 檢視

儲存過程,建使用者 給使用者授權等等

sql> grant dba to c##scott;

授權成功。

oracle 19c 新建使用者,表空間

建立臨時表空間 create temporary tablespace mmc temp mmc temp 為 臨時表空的 name 為示例可自行修改 tempfile d tools oracle oradata orcl mmc temp.dbf 表空間檔案存放位置 size 32m 表空間大小...

Oracle 19C資料庫建立

區別介紹 oracle11g和12c的區別如下 1 對應bai關係 在oracle12c前,例項du與資料zhi庫是一對一或多對一關係 daorac 即乙個例項只能與乙個資料庫相關聯,資料庫可以被多個例項所載入。當進入oracle12c後,例項與資料庫可以是一對多的關係。2 版本完善程度 oracl...

windows10安裝oracle19C辛酸路

windows10安裝oracle19c,裝了乙個多星期終於用pl sql連上了 t t 都是淚,下面總結一下遇到的坑 第乙個坑,中文目錄,oracle不能放在中文目錄下 第二個坑,配置net manager時,連線測試不通過,報錯無 需要改兩個配置檔案,1 listener.ora中 host d...