Oracle profile

perfychi發表於2014-02-13

一、目的: 

oracle系統中的profile 以用來對使用者所能使用的資料庫資源進行限制,使用create profile命令建立一個profile,用它來實現對資料庫資源的限制使用,如果把該profile分配給使用者,則該使用者所能使用的資料庫資源都在該 profile的限制之內。   

二、條件: 

建立profile必須要有 create profile的系統許可權。 為使用者指定資源限制,必須: 

1.動態地使用alter system或使用初始化引數resource_limit使資源限制生效。該改變對密碼資源無效,密碼資源總是可用。 sql> show parameter resource_limit   

name                                 type        value ------------------------------------ ----------- ------------------------------ 

resource_limit                       boolean     false   

sql> alter system set resource_limit=true;   

系統已更改。   

sql> show parameter resource_limit;   

name                                 type        value ------------------------------------ ----------- ------------------------------ 

resource_limit                       boolean     true   sql>   

2.使用create profile建立一個定義對資料庫資源進行限制的profile 3.使用create user alter user命令把profile分配給使用者。   

三、語法: 

     create profile profile 

limit { resource_parameters          | password_parameters          } 

           [ resource_parameters            | password_parameters            ]...    

 

 

 

名人堂:眾名人帶你感受他們的驅動人生馬雲任志強李嘉誠柳傳志史玉柱

 

 

 

{ { sessions_per_user  | cpu_per_session  | cpu_per_call  | connect_time  | idle_time 

 | logical_reads_per_session  | logical_reads_per_call  | composite_limit  } 

 { integer | unlimited | default } | private_sga 

 { integer [ k | m ] | unlimited | default } } 

  

 { { failed_login_attempts  | password_life_time  | password_reuse_time  | password_reuse_max  | password_lock_time  | password_grace_time  } 

 { expr | unlimited | default } 

| password_verify_function 

     { function | null | default } 

}   

四、語法解釋: 

       profile:配置檔案的名稱。oracle資料庫以以下方式強迫資源限制:        1.如果使用者超過了connect_timeidle_time的會話資源限制,資料庫就回滾當前事務,並結束會話。使用者再次執行命令, 資料庫則返回一個錯誤,        2.如果使用者試圖執行超過其他的會話資源限制的操作,資料庫放棄操作,回滾當前事務並立即返回錯誤。使用者之後可以提交或回滾當前事務,必須 結束會話。 

       提示:可以將一條分成多個段,如1小時(1/24)來限制時間,可以為使用者指定資源限制,但是資料庫只有在引數生效後才會執行限制。        

       unlimited:分配該profile的使用者對資源使用無限制,當使用密碼引數時,unlimited意味著沒有對引數加限制。   

       default:指定為default意味著忽略對profile中的一些資源限制,default profile初始定義對資源不限制,可以透過alter profile命令來改變。   

       resource_parameter部分 

 

 

 

 

 

 

       

       session_per_user:指定限制使用者的併發會話的數目。 

       cpu_per_session:指定會話的cpu時間限制,單位為百分之一秒。        cpu_per_call:指定一次呼叫(解析、執行和提取)的cpu時間限制,單位為百分之一秒。 

       connect_time:指定會話的總的連線時間,以分鐘為單位。 

       idle_time:指定會話允許連續不活動的總的時間,以分鐘為單位,超過該時間,會話將斷開。但是長時間執行查詢和其他操作的不受此限 制。        logical_reads_per_session:指定一個會話允許讀的資料塊的數目,包括從記憶體和磁碟讀的所有資料塊。 

       logical_read_per_call:指定一次執行sql(解析、執行和提取)呼叫所允許讀的資料塊的最大數目。 

       private_sga:指定一個會話可以在共享池(sga)中所允許分配的最大空間,以位元組為單位。(該限制只在使用共享伺服器結構時才 有效,會話在sga中的私有空間包括私有的sqlpl/sql,但不包括共享的sqlpl/sql)。        composite_limit:指定一個會話的總的資源消耗,以service units單位表示。oracle資料庫以有利的方式計算 cpu_per_sessionconnect_timelogical_reads_per_sessionprivate-sga總的 service units          

       password_parameter部分:        

       failed_login_attempts:指定在帳戶被鎖定之前所允許嘗試登陸的的最大次數。 

       password_life_time:指定同一密碼所允許使用的天數。如果同時指定了password_grace_time引數,如果 grace period內沒有改變密碼,則密碼會失效,連線資料庫被拒絕。如果沒有設定password_grace_time引數,預設值unlimited將引 發一個資料庫警告,但是允許使用者繼續連線。 

       password_reuse_timepassword_reuse_max:這兩個引數必須互相關聯設 置,password_reuse_time指定了密碼不能重用前的天數,而

password_reuse_max則指定了當前密碼被重用之前密碼改變的 次數。兩個引數都必須被設定為整數。        1.如果為這兩個引數指定了整數,則使用者不能重用密碼直到密碼被改變了password_reuse_max指定的次數以後在 password_reuse_time指定的時間內。        如:password_reuse_time=30password_reuse_max=10,使用者可以在30天以後重用該密碼,要求密碼必須被改變 超過10次。 

       2.如果指定了其中的一個為整數,而另一個為unlimited,則使用者永遠不能重用一個密碼。        3.如果指定了其中的一個為defaultoracle資料庫使用定義在profile中的預設值,預設情況下,所有的引數在 profile中都被設定為unlimited,如果沒有改變profile預設值,資料庫對該值總是預設為unlimited        4.如果兩個引數都設定為unlimited,則資料庫忽略他們。   

 

 

 

 

 

 

       password_lock_time:指定登陸嘗試失敗次數到達後帳戶的縮定時間,以天為單位。 

       password_grace_time:指定寬限天數,資料庫發出警告到登陸失效前的天數。如果資料庫密碼在這中間沒有被修改,則過期會 失效。        password_verify_function:該欄位允許將複雜的pl/sql密碼驗證指令碼做為引數傳遞到create profile語句。oracle資料庫提供了一個預設的指令碼,但是自己可以建立自己的驗證規則或使用第三方軟體驗證。 function名稱,指定的是密碼驗證規則的名稱,指定為null則意味著不使用密碼驗證功能。如果為密碼引數指定表示式,則該表示式可以是任意格 式,除了資料庫標量子查詢。        

五、舉例: 

       1.建立一個profile 

       create profile new_profile 

              limit password_reuse_max 10                      password_reuse_time 30;   

       2.設定profile資源限制:        create profile app_user limit 

              sessions_per_user unlimited               cpu_per_session unlimited               cpu_per_call 3000               connect_time 45 

              logical_reads_per_session default               logical_reads_per_call 1000               private_sga 15k 

              composite_limit 5000000; 

              總的resource cost不超過五百萬service units。計算總的resource cost的公式由alter resource cost語句來指定。        

       3.設定密碼限制profile 

       create profile app_users2 limit               failed_login_attempts 5               password_life_time 60               password_reuse_time 60               password_reuse_max 5 

              password_verify_function verify_function               password_lock_time 1/24               password_grace_time 10;               

       4.將配置檔案分配給使用者: 

              sql> alter user dinya profile app_user; 

使用者已更改。 sql> 

 

 

 

 

 

 

              

              sql> alter user dinya profile default; 

使用者已更改。 sql>

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27042095/viewspace-1080964/,如需轉載,請註明出處,否則將追究法律責任。

相關文章