ORA-28094: SQL Construct not Supported by Data Redaction

Hi,

Sometimes You can get ”  ora-28094: sql construct not supported by data redaction  ” error.

 

Details of error are as follows.

ora-28094: sql construct not supported by data redaction

with table2 AS (
 Select concat(card_no,' ') from payment_details )
 select *  from table2;//This is giving 'ORA-28094: SQL construct not supported by data redaction' error
 
 with table2 AS (
 Select sum(card_no) from payment_details )
 select *  from table2;//This is giving 'ORA-28094: SQL construct not supported by data redaction' error
 
 
 with table2 AS (
 Select trim(card_no) from payment_details )
 select *  from table2;//This is giving 'ORA-28094: SQL construct not supported by data redaction' error

 

 

As per Bug 26577695 / bug 24340261, the ORA-28094 error raised in 12.2 is expected behavior. Because the query has construct “concat()” on a redacted column called from within a view is not supported by Data Redaction.

This change in behavior is caused by fix of Bug 22537972.

In future, we have plan to support such queries, for that please  watch bug 24340261.

The current 12.2 behavior is expected behavior

There is another fix of bug 27697108 which doesn’t block the user with EXEMPT  REDACTION POLICY system privilege.

 

 

Do you want to learn more details about Data Redaction in Oracle Database , read the following post.

https://ittutorial.org/data-redaction-in-oracle-database-2/

 

 

Do you want to learn more details about RMAN, then read the following articles.

https://ittutorial.org/rman-backup-restore-and-recovery-tutorials-for-beginners-in-the-oracle-database/

 

About Mehmet Salih Deveci

I am Founder of SysDBASoft IT and IT Tutorial and Certified Expert about Oracle & SQL Server database, Goldengate, Exadata Machine, Oracle Database Appliance administrator with 10+years experience.I have OCA, OCP, OCE RAC Expert Certificates I have worked 100+ Banking, Insurance, Finance, Telco and etc. clients as a Consultant, Insource or Outsource.I have done 200+ Operations in this clients such as Exadata Installation & PoC & Migration & Upgrade, Oracle & SQL Server Database Upgrade, Oracle RAC Installation, SQL Server AlwaysOn Installation, Database Migration, Disaster Recovery, Backup Restore, Performance Tuning, Periodic Healthchecks.I have done 2000+ Table replication with Goldengate or SQL Server Replication tool for DWH Databases in many clients.If you need Oracle DBA, SQL Server DBA, APPS DBA,  Exadata, Goldengate, EBS Consultancy and Training you can send my email adress [email protected].-                                                                                                                                                                                                                                                 -Oracle DBA, SQL Server DBA, APPS DBA,  Exadata, Goldengate, EBS ve linux Danışmanlık ve Eğitim için  [email protected] a mail atabilirsiniz.

Leave a Reply

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