oracle概要檔案

2021-08-01 14:51:23 字數 1088 閱讀 6399

connect sys/12345678 as sysdba

使用概要檔案

建立乙個概要檔案,僅用於限制使用者對一下資源的使用

1.不限制使用者建立的併發會話數

2.每個會話中,不限制使用者使用的cpu時間

3.單個會話中的持續時間不能超過三小時

4.會話中的持續空閒時間不能超過5min

5.單個會話在sga中分配的記憶體了不能超過60kb;

sessions_per_user unlimited

cpu_per_session unlimited

connect_time 180

idle_time 5

private_sga 60k;

修改概要檔案

1.嘗試登陸連續失敗5次後鎖定賬戶1天

2.口令的有效期為30天

3.口令的寬限期是1天

4.密碼修改至少5次以後,該密碼在20天以後可以使用

failed_login_attempts 5

password_lock_time 1

password_life_time 30

password_grace_time 1

password_reuse_max 5

password_reuse_time 20;

啟用資源限制  用來限制使用者資源使用

alter system set resource_limit=true;

為使用者指定概要檔案  (只能給使用者,不能給角色或者其他概要檔案)

alter user scott account unlock;  //identified by 密碼

set time on

conn scott/tiger  //鏈結scott

select * from dept;//鏈結scott檢視影響   會報錯

select * from dba_profiles

order by resource_type;  //查詢前面建立的概要檔案中所有的引數以及其取

值,其中包括未定義的取值,他們為default

select username,profile from dba_users;

Oracle 17概要檔案

概要檔案用於限制由使用者使用的系統和資料庫資源,並可以對口令進行管理。如果在建立使用者時沒有指定概要檔案,將使用預設的概要檔案。1 使用create profile命令建立概要檔案 語法格式如下 create profile profile name limit resource parameter...

Oracle 17概要檔案

概要檔案用於限制由使用者使用的系統和資料庫資源,並可以對口令進行管理。如果在建立使用者時沒有指定概要檔案,將使用預設的概要檔案。1 使用create profile命令建立概要檔案 語法格式如下 create profile profile name limit resource parameter...

oracle 資源限制概要檔案

create profile luck prof limit sessions per user 8 利用同乙個使用者名稱和口令可以同時開啟8個回話 cpu per session 16800 每個會話最多可以使用的cpu時間為16800個1 秒 168秒 logical reads per ses...