ORA-13841: SQL profile named already exists for a different signature/category pair

I got ” ORA-13841: SQL profile named already exists for a different signature/category pair” error in Oracle database.

 

ORA-13841: SQL profile named already exists for a different signature/category pair

 

Details of error are as follows.

Description: SQL profile named string already exists for a different signature/category pair
Cause: A SQL profile already exists with the name specified under a different signature/category pair so it cannot be replaced, even with FORCE specified.
Action: Specify a different name or drop the existing SQL profile.

 

 

The ORA-13841 error is related with the existing SQL Profile for the different signature/category pair.

 

ORA-13841

To solve this error, you should drop the existing SQL Profile as follows.

 

Firstly list the existing SQL Profiles.

 

List the SQL Profiles.

SQL> select * from dba_sql_profiles;

Find your related SQL Profiles, then drop it as follows.

 

Drop SQL Profile

Then drop the SQL Profile as follows.

BEGIN
DBMS_SQLTUNE.DROP_SQL_PROFILE(name => 'my_sql_profile');
END;
/

 

 

 

 

Do you want to learn Oracle Performance Tuning, then Click This Link and read the articles.

What is the Automatic SQL Tuning and How to Automated SQL Tuning in Oracle | Oracle Database Performance Tuning Tutorial -12

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 *