Backup and Support Considerations | Talend Data Catalog Help
Skip to main content Skip to complementary content

Backup and Support Considerations

Last updated: 8/31/2026

Overview

When reporting an issue, it may be necessary to provide a database backup. You may use the following queries to remove sensitive information before creating and sending the backup.

Information note

Never perform these queries on your actual database. Executing these queries will make the database unusable and unrecoverable, and are only intended to help you to report an issue to support. You should

  1. Stop the app server and database server.
  2. Create a database backup using database utilities.
  3. Restore the result into a new database using database utilities.
  4. Then, you may run the below queries, backup again and send the resultant backup to support.
  • SQL query to remove bridge parameters:

UPDATE mir_meta_attribute SET val='' WHERE model_id=-1 AND attribute_definition_id=525;

  • SQL query to clear user passwords:

UPDATE mir_meta_attribute SET val='' WHERE model_id=-1 AND attribute_definition_id=265;

  • SQL query to clear server passwords (email, JIRA, Teams, …):

UPDATE mir_meta_attribute SET val='' WHERE model_id=-1 AND attribute_definition_id=511;

  • SQL query to clear the server configurations (cloud identity, authentication, …):

UPDATE mir_meta_attribute SET val='' WHERE model_id=-1 AND attribute_definition_id=514;

  • SQL query to clear the data sampling information (this make take a long time):

UPDATE attribute SET val='' WHERE system_type=19; UPDATE content_attribute SET val='' WHERE system_type=19;

  • SQL query to clear the data profiling information (this make take a long time):

UPDATE attribute SET val='' WHERE system_type=18; UPDATE content_attribute SET val='' WHERE system_type=18;

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – please let us know!