orcle新建用戶一共有三步:建立表空間、創建用戶、受權。數據庫
建議直接在SQL plus裏建,方便快捷。
首先,用system用戶鏈接到數據庫。
而後
1.建立表空間:
命令格式以下:create tablespace 表空間名 datafile‘數據文件’size 表空間大小
例子:create tablespace test_tablespace datafile 'C:\oracle\oradata\orcl\test_data.dbf' size 100m reuse default storage(initial 500k next 500k pctincrease 20);
注意:'C:\oracle\oradata\orcl\test_data.dbf' 此處爲你安裝oracle目錄下的oradata目錄,裏面有一個orcl文件夾,裏面有不少dbf文件,能夠去找一下你本身的。
2.建立用戶:
命令格式以下:create user 用戶名 identified by 用戶密碼 default tablespace 表空間名
例子:create user test_user identified by test_password default tablespace test_tablespace;
3.受權:
grant connect,resource to test_user;
grant dba to test_user;
回車後,會提示「受權成功」
至此,數據庫建立新用戶完成。