應用Oracle(使用者建立和授權)

2022-07-26 01:30:20 字數 497 閱讀 5461

使用oracle命令建立使用者,並授權。

cmd中,

sqlplus / as sysdba

若登入失敗,則

sqlplus system/[資料庫建立時指定密碼] as sysdba

create user suzhw identified by [密碼];

grant dba to suzhw;

注意,此處授予使用者suzhw最高許可權

實際操作時,可按需授予許可權

cmd中,

sqlplus suzhw/[密碼]

注意,上述命令需要先退出當前使用者

使用以下命令,無需退出

connect suzhw/[密碼]

oracle 建立表空間 建立和授權使用者

建立大檔案表空間 create bigfile tablespace zhang datafile d oracle product 10.2.0 oradata zhang.dbf size 64m autoextend on next 64m maxsize 1048576m 刪除表空間 dro...

oracle簡單的使用者建立和授權

create user 使用者名稱 identified by 密碼 這裡記得加雙引號。建立使用者 grant create session to 使用者名稱登入許可權 grant create table to 使用者名稱 建表許可權 grant create view to 使用者名稱 建立檢視...

oracle建立使用者和授權

建立使用者 create user root identified by root 建立 表空間 test為表空間名字,datafile 為表空間存放的位置 位置可以隨意指定 size指定表空間的大小。create tablespace test datafile d tablespace test...