|
[oracle-l]
||
[Date Prev]
[01-2008 Date Index]
[Date Next]
||
[Thread Prev]
[01-2008 Thread Index]
[Thread Next]
dbms_fga
- From: "Wojciech Skrzynecki" <wojciech.skrzynecki@xxxxxxxxx>
- To: <oracle-l@xxxxxxxxxxxxx>
- Date: Thu, 3 Jan 2008 00:21:31 +0100
Hello
I have table with sensitive data. I would like to audit if specifics "osusers"
execute "select" on this table. I use dbms_fga like below
begin
dbms_fga.add_policy
(object_schema => 'CELIA',
object_name => 'HERDS',
policy_name =>'WOJTEK');
end;
Is it possible to audit only specifics "osuser" using dbms_fga package? If not
can I monitor select statements on the table of some osuser?
Regards.
Wojtek
|