nerdexam
Oracle

1Z0-083 · Question #247

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…

The correct answer is E. Restart the database instance. About Altering the Default Full Data Redaction Value You can alter the default displayed values for full Data Redaction polices. By default, 0 is the redacted value when Oracle Database performs full redaction (DBMS_REDACT.FULL) on a column of the NUMBER data type. If you want…

Manage Database Security

Question

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 ------------------------ 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?

Options

  • ARe-enable redaction policies that use FULL data redaction.
  • BRe-create redaction policies that use FULL data redaction.
  • CRe-connect the sessions that access objects with redaction policies defined on them.
  • DFlush the shared pool.
  • ERestart the database instance.

How the community answered

(14 responses)
  • B
    14% (2)
  • C
    7% (1)
  • E
    79% (11)

Explanation

About Altering the Default Full Data Redaction Value You can alter the default displayed values for full Data Redaction polices. By default, 0 is the redacted value when Oracle Database performs full redaction (DBMS_REDACT.FULL) on a column of the NUMBER data type. If you want to change it to another value (for example, 7), then you can run the DBMS_REDACT.UPDATE_FULL_REDACTION_VALUES procedure to modify The modification applies to all of the Data Redaction policies in the current database instance. After you modify a value, you must restart the database for it to take effect.

Topics

#Data Redaction#DBMS_REDACT#full redaction default value#instance restart

Community Discussion

No community discussion yet for this question.

Full 1Z0-083 Practice