Oracle自學筆記(一)

2021-09-08 10:14:33 字數 1943 閱讀 1827

1、建立使用者並指定表空間

create

user gy_3004 identified by

gy_3004

default

tablespace gy_3004_data

temporary tablespace gy_3004_temp;

2、給使用者授予許可權

--

方式一:

grant

create session, create

anytable,

create

anyview ,create

anyindex,create

anyprocedure,

alter

anytable, alter

anyprocedure,

drop

anytable, drop

anyview, drop

anyindex, drop

anyprocedure,

select

anytable, insert

anytable, update

anytable, delete

anytable

togy_3004;

--方式二:

grant connect,resource,dba to gy_3004;

3、建立臨時表空間

create

temporary

tablespace mytablespace_temp

tempfile

'd:\oracle_11g\oradata\orcl\mytablespace_temp.dbf

'size 5m autoextend

onnext

1m maxsize 5m

extent management local;

4、建立資料表空間

create

tablespace mytablespace_data

logging datafile

'd:\oracle_11g\oradata\orcl\mytablespace_data.dbf

'size 5m autoextend

onnext

1m maxsize 5m

extent management local;

5、查詢資料庫名

select name from v$database

; select instance_name from v$instance;

6、查詢系統表空間

select tablespace_name from dba_tablespaces;

7、刪除使用者

drop

user gy_3004 cascade;

8、刪除表空間

drop

tablespace gy_3004_temp including contents;

drop tablespace gy_3004_data including contents;

9、檢視表空間剩餘大小 

select tablespace_name,sum(bytes),max(bytes) from dba_free_space group

by tablespace_name;

10、檢視使用者

select

*from

dba_users;

select

*from

all_users;

select

*from user_users;

oracle自學筆記 flashback特性

flashback能夠用來 flashback query 閃回查詢 flashback table 閃回表 flashback database 閃回資料庫 一 開啟flashback 開啟了歸檔模式 1.指定 db recovery file dest size 和db recovery fil...

C 自學筆記 一

1.類組合的建構函式 類名 類名 物件成員所需的形參,本類成員形參 物件1 引數 物件2 引數 2.int a 10 int b a 即b a 10 myclass circle 將呼叫建構函式初始化 myclass newcircle circle 將呼叫 拷貝建構函式,若沒得,則呼叫預設的拷貝建...

TUXEDO自學筆記(一)

1.tpsvcinfo結構體 void tpservice tpsvcinfo svcinfo 只有乙個引數,該引數是指向tpsvcinfo結構的指標 atmi.h 該結構定義如下 2.除錯和出錯處理 當呼叫atmi出錯時,返回值為 1,全程變數tperrno被設值,該變數提供系統定義的出錯原因。函...