Upgrade Oracle DBA 11g to Oracle Database 12c — Question 51

After implementing full Oracle Data Redaction, you change the default value for the number data type as follows:
SQL> SELECT NUMBER_VALUE FROM REDACTION_VALUES_FOR_TYPE_FULL; NUMBER_VALUE
-------------------------
SQL> EXEC DBMS_REDACT.UPDATE_FULL_REDACTI0N_VALUES(-1)
PL/SQL procedure successfully completed.
SQL> select number_value from redaction_values_for_type_full;

NUMBER VALUE -
------------------------
-1
After changing the value, you notice that FULL redaction continues to redact numeric data with a zero.
What must you do to activate the new default value for numeric full redaction?

Answer options

Correct answer: E

Explanation

Restarting the database instance is necessary to apply configuration changes like the default value for numeric full redaction. The other options do not affect the system-wide configuration values and will not ensure that the new default is recognized across all sessions.