Oracle基本授權命令

2022-08-09 19:06:21 字數 1474 閱讀 6368

--

首先需要建立乙個表空間

--1.建立表空間

--2.規定檔案路徑

--3.設定檔案大小 自動增長開啟

create

tablespace product

datafile 

'e:\product.dbf

'size 10m autoextend on;

--建立使用者

--1.建立使用者

--2.設定密碼

--3.設定預設的表空間

create

user

prod

identified 

byprod

default

tablespace product;

--刪除使用者

--1.刪除使用者和使用者所有的模式物件

--2.刪除使用者

drop

user

prod 

cascade

;drop

user

prod;

--授權使用者登陸資料庫許可權(system名下)

grant

connect 

toprod;

--授權使用者建立表許可權(system名下)

grant

resource 

toprod;

--使用者a授權b操作表的許可權

--1.a給予b查詢許可權

--2.a給予b更新許可權

grant

select

ona 

tob;

grant

update

ona 

tob;

--建立表

create

table

productdetails

(pro_no 

number

,pro_id 

varchar2(10

),pro_name 

varchar2(10

),pro_price 

number(3

));--

察看表的資料型別

desc

productdetails;

--更新表(表必須為空)

--1.修改表的字段

--2.向表中新增新列

--3.刪除表的乙個字段

alter

table

productdetails 

modify(pro_no 

intnot

null

primary

key);

alter

table

productdetails 

add(pro_count 

int);

alter

table

productdetails 

drop

colum pro_count;

oracle 授權命令集合

一 建立 sys 系統管理員,擁有最高許可權 system 本地管理員,次高許可權 scott 普通使用者,密碼預設為tiger,預設未解鎖 二 登陸 sqlplus as sysdba 登陸sys帳戶 sqlplus sys as sysdba 同上 sqlplus scott tiger 登陸普...

Oracle命令 授權 收回許可權 角色

oracle grant 授權語句 select from dba users 查詢資料庫中的所有使用者 alter user test select account lock 鎖住使用者 alter user test select account unlock 給使用者解鎖 create use...

oracle基本命令

1 describe查詢表結構 describe xuesheng 名稱 空值 型別 id number 38 xing ming varchar2 25 yu wen number shu xue number 2 select 列名稱 from 表名稱 select from xuesheng ...