Error:
ERROR at line 1:
ORA-28086: The data redaction policy expression has an error.
ORA-06512: at "SYS.DBMS_REDACT_INT", line 3
ORA-06512: at "SYS.DBMS_REDACT", line 42
ORA-06512: at line 1
When we try to run same as sys user it is working perfectly fine, but as a normal user it is failing with below errors.
No Privileges issue because AVO user had DBA Privilege ..
| Versions confirmed as being affected |
Fixed:
The fix for 20693579 is first included in

If the cursor_sharing=FORCE, then this issue might occur. I am using Oracle database version -11.2.0.4. I have changed the cursor_sharing='EXACT' value and it works fine.
ReplyDeleteSQL> sho parameter cursor
NAME TYPE
------------------------------------ -------------------------
VALUE
------------------------------
cursor_bind_capture_destination string
memory+disk
cursor_sharing string
FORCE
cursor_space_for_time boolean
FALSE
open_cursors integer
5000
session_cached_cursors integer
NAME TYPE
------------------------------------ -------------------------
VALUE
------------------------------
5000
SQL> alter session set cursor_sharing='EXACT';
Session altered.