Oracle 培訓筆記

2021-06-18 09:51:08 字數 471 閱讀 1626

how to create and manage view?

1、create user:

create user username identified by password

2、set authority

grant authorityname to username

3、set authority for creating view

grant create view to username

4、lock or unlock user

alter user username account[lock/unlock]

5、delete user

drop user username

about view:

檢視可以被看作乙個虛擬表,它將乙個查詢結果當作乙個表來使用,所有對檢視的操作都會反映在基表上,因此對檢視的操作必須符合基表資料的完整性約束。

oracle 培訓筆記 約束

約束分類 primary key not null foreign key check unique 查詢約束狀態 drop table t01 purge create table t01 id number primary key,name varchar2 20 select from use...

oracle 培訓筆記 3

在輸入sqlplus assysdba時,自動鏈結上的資料庫不一定是本機的資料庫,而是系統環境變數中oracle sid所指定的變數,安裝oracle後,會預設將windows下的這個環境變數設定成你新建的這個sid archiveloglist可以顯示出當前資料庫的歸檔模式 如果要長期的修改sql...

Oracle高階培訓 第2課 學習筆記

oracle高階培訓 第2課 學習筆記 本課筆記中的頁碼與 oracle9i 資料庫管理基礎ii ed 1.1 vol.1.pdf 對應 資料庫啟動的三種狀態 1.nomount 2.mount 3.open 資料庫開啟的3個步驟 1.進入nomount狀態,開啟引數檔案 2.進入mount狀態,開...