Oracle建立使用者表空間

2022-01-19 06:51:03 字數 1462 閱讀 3795

建立使用者

開啟命令提示框輸入以下內容

1.輸入:sqlplus /nolog //進入oralce控制台

2.輸入:conn /as sysdba //以管理員許可權登入

3.輸入:create user abc identified by 123456; //建立使用者名稱adc密碼123456

4.輸入:grant dba to abc; //授予dba許可權

/*分為四步 */

/*第1步:建立臨時表空間 */

create temporary tablespace user_temp

tempfile 'c:\software\oracle\product\12.2.0\dbhome_1\oradata\user_temp.dbf'

size 50m

autoextend on

next 50m maxsize 20480m

extent management local;

/*第2步:建立資料表空間 */

create tablespace user_data

logging

datafile 'c:\software\oracle\product\12.2.0\dbhome_1\oradata\user_data.dbf'

size 50m

autoextend on

next 50m maxsize 20480m

extent management local;

/*第3步:建立使用者並指定表空間 */

create user username identified by password

default tablespace user_data

temporary tablespace user_temp;

/*第4步:給使用者授予許可權 */

grant connect,resource,dba to username;

sql> create user terwer identified by 123456;

使用者已建立。

sql> grant dba to terwer;

授權成功。

sql>

例項

create user kms15 identified by 123456

default tablespace user_data

temporary tablespace user_temp;

grant dba to kms15;

create user kms16 identified by 123456

default tablespace user_data

temporary tablespace user_temp;

grant dba to kms16;

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...

oracle建立表空間,建立使用者

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

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...