Which two statements are true?

You execute the following PL/SQL:Which two statements are true?

You execute the following PL/SQL:Which two statements are true?

A.
Fine-Grained Auditing (FGA) is enabled for the PRICE column in the PRODUCTS table for SELECT
statements only when a row with PRICE > 10000 is accessed.

B.
FGA is enabled for the PRODUCTS.PRICE column and an audit record is written whenever a row with
PRICE > 10000 is accessed.

C.
FGA is enabled for all DML operations by JIM on the PRODUCTS.PRICE column.

D.
FGA is enabled for the PRICE column of the PRODUCTS table and the SQL statements is captured in the
FGA audit trial.

Explanation:
DBMS_FGA.ADD_POLICY(
object_schema => hr`,
object_name => emp`,
policy_name => chk_hr_emp`,
audit_condition => dept = SALES ,
audit_column => salary`
statement_types => insert,update,delete,select`);
Default value for statement_types is SELECT
Setting audit_trail to DBMS_FGA.DB sends the audit trail to the SYS.FGA_LOG$ table in the database and
omits SQL Text and SQL Bind.
Setting audit_trail to DBMS_FGA.DB+EXTENDED sends the audit trail to the SYS.FGA_LOG$ table in the
database and includes SQL Text and SQL Bind.
Setting audit_trail to DBMS_FGA.XML writes the audit trail in XML files sent to the operating system and omits
SQL Text and SQL Bind.
Setting audit_trail to DBMS_FGA.XML+EXTENDED writes the audit trail in XML files sent to the operat- ing
system and includes SQL Text and SQL Bind.
Default value fo audit_trail parameter in DBMS_FGA.ADD_POLICY is DB+EXTENDED



Leave a Reply 0

Your email address will not be published. Required fields are marked *