黑視窗輸入:sqlplus / as sysdba
連線資料庫
輸入create tablespace
test
datafile
'd:\oracle\oradata\test.dbf'
size
50m;
建立資料庫表空間;
test
表空間名稱
d:\oracle\oradata\test.dbf
表空間檔案路徑\檔名稱
50m
表空間大小
補充:1),若表空間檔案路徑需要為系統中任意可以找到的路徑,否則建立報錯;
2),若表空間建立後需要刪除,輸入:
drop
tablespace
test
including contents and datafiles;
刪除表空間;
輸入create user
c##test
identified by
123456
default tablespace
test;
建立新使用者
c##test
新使用者名稱(新使用者名稱需要以c##開頭)
123456
使用者登入口令(密碼)
test
表空間名稱
補充:1),若使用者建立失敗,找不到相應的表空間,
—a,檢查表空間名稱是否正確;
—b,若表空間名稱正確,則需要重啟資料庫
-------a,輸入:
shutdown immediate
; 關閉資料庫-------- b,輸入
startup
; 啟動資料庫2),新使用者名稱需要以c##開頭,是由於oracle12c以後引入了cdb與pdb的新特性,允許乙個資料庫容器(cdb)承載多個可插拔資料庫(pdb),oracle安裝時:典型安裝中 預設勾選了:建立為容器資料庫,若不想以c##開頭建立新使用者,需要中安裝資料庫將預設勾選去掉即可;
3),使用者刪除,輸入:
drop user c##test cascade;
(c##test 自定義使用者名稱)
1),輸入:exit
退出sqlplus
2),輸入:sqlplus
進行使用者登入,驗證資料庫連線oracle 建立新使用者
create the user create user personnel manage identified by mwq default tablespace users temporary tablespace temp profile default quota 1024m on sysau...
Oracle建立新使用者
1.以dba身份登入 sqlplus sys eastcom orcl as sysdba 在命令視窗下 也可以使用pl sql 2.建立臨時表空間 create temporary tablespace zjph newuser temp tempfile e oracle product 10....
建立新使用者
新增新使用者 允許本地 ip 訪問 localhost,127.0.0.1 create user test localhost identified by 123456 允許外網 ip 訪問 create user test identified by 123456 為新使用者分配許可權 授予使用...