oracle資料庫常用操作(1)

2021-05-23 06:23:34 字數 1837 閱讀 8909

一、建立表空間

1.臨時表空間

create temporary tablespace test_temp tempfile 'e:/test_temp01.dbf' size 32m autoextend on next 32m maxsize 2048m

extent management local;

2.非臨時表空間

create tablespace test_data logging datafile 'e:/test_data01.dbf' size 32m autoextend on next 32m maxsize 2048m

extent management local;

二、刪除表空間(即使是臨時表空間也不用加temporary)

drop tablespace test_temp including contents and datafiles;

三、建立使用者

1. create user jiangyi identified by yi default tablespace test_data;

2. create user jiangyi identified by yi default tablespace test_data temporary tablespace test_temp;

四、刪除使用者

drop user jiangyi cascade;

五、連線使用者

用法: conn[ect] [logon] [as ]

其中 ::= [/][@] | /

eg.   conn system/map@map;

六、給使用者授予許可權

1.grant

create session, create any table, create any view ,create any index, create any procedure,

alter any table, alter any procedure,

drop any table, drop any view, drop any index, drop any procedure,

select any table, insert any table, update any table, delete any table

to jiangyi;(如果沒有給使用者授予許可權,是無法連線該使用者的。例如,error: ora-01045: user jiangyi lacks create

session privilege; logon denied)

2.將role這個角色授與username,也就是說,使username這個使用者可以管理和使用role所擁有的資源

grant role to username;

七、檢視使用者

select * from dba_users;

select * from all_users;

select * from user_users;

八、檢視使用者系統許可權

select * from dba_sys_privs;

select * from user_sys_privs;

九、檢視使用者物件或角色許可權

select * from dba_tab_privs;

select * from all_tab_privs;

select * from user_tab_privs;

檢視所有角色

select * from dba_roles

檢視使用者或角色所擁有的角色

select * from dba_role_privs;

select * from user_role_privs;

Oracle資料庫常用操作

為a使用者賦給b使用者表的許可權 grant select 使用者b.表名 to 使用者a查詢主表與引用表之間的關係 select a.owner as 主鍵擁有者 a.table name as 主鍵表 b.column name as 主鍵列 c.owner as 外來鍵擁有者 c.table ...

Oracle資料庫常用操作

oracle資料庫 oracle資料庫建立表空間 1 建立臨時表空間 create temporary tablespace givaname temp tempfile f orcal orcalan hsj givaname temp.dbf size 50m autoextend on nex...

oracle資料庫常用知識1

1.資料庫中rownum是內建函式把查出的結果集排序從1開始排,可用於在分頁系統中。關於oracle資料中rownum的理解使用,rownum這個函式變數必須是從1開始編號。是加的一列偽序列 例 select rownum r from a table where r 3 查的肯定是空集,因為查詢的...