1.以dba身份登入
$ sqlplus sys/eastcom@orcl as sysdba(在命令視窗下)
也可以使用pl/sql
2.建立臨時表空間
createtemporary
tablespace zjph_newuser_temp
tempfile
'e:\oracle\product\10.2.0\oradata\orcl\zjph_newuser_temp.dbf
'size 100m
autoextend
onnext
32m
maxsize 2048m
extent management local;
--tempfile 存放資料庫檔案的地方,一般是安裝資料庫後有控制檔案,資料檔案和日誌檔案的資料夾,再加上要建立表空間的名字+dbf(資料檔案)
3.建立表空間
createtablespace zjph_newuser logging
datafile
'e:\oracle\product\10.2.0\oradata\orcl\zjph_newuser.dbf
'size 100m
autoextend
onnext
32m
maxsize 2048m
extent management local;
4.建立使用者並指定表空間
createuser
zjph_newuser
identified
by zjph_newuser --
(如果是數字則要加雙引號」111111」,如果是字母就不用)
default
tablespace zjph_newuser
temporary tablespace zjph_newuser_temp;
5.使用者授予許可權
grant connect,resource,sysdba,dba to zjph_newuser;
6.測試
$ sqlplus zjph_newuser/xinghua@orcl as sysdba(命令視窗下)
或者使用新使用者登入pl/sql
也可以用下列語句檢視使用者
1 --檢視所有使用者:2select
*from
dba_users;
3select
*from
all_users;
4select
*from user_users;
oracle 建立新使用者
create the user create user personnel manage identified by mwq default tablespace users temporary tablespace temp profile default quota 1024m on sysau...
Oracle建立新使用者
黑視窗輸入 sqlplus as sysdba連線資料庫 輸入create tablespacetestdatafile d oracle oradata test.dbf size50m 建立資料庫表空間 test表空間名稱 d oracle oradata test.dbf表空間檔案路徑 檔名稱...
建立新使用者
新增新使用者 允許本地 ip 訪問 localhost,127.0.0.1 create user test localhost identified by 123456 允許外網 ip 訪問 create user test identified by 123456 為新使用者分配許可權 授予使用...