Remove empty tracker and topic records
  • 1 minute read
  • Contributors
  • PDF

Remove empty tracker and topic records

  • PDF

Article summary

Gong for Salesforce creates topic and tracker records in the context of each Gong Conversation in Salesforce. Reduce Gong for Salesforce's data storage consumption by deleting empty tracker and topic records, i.e. those that contain either no duration (topics) or no occurrences (trackers).

There are two ways to remove the records: through Salesforce Developer Console, or using Salesforce Data Loader (or similar tools).

Remove empty tracker and topic records via Salesforce Developer Console

  1. Go to the Salesforce Developer Console > Query tab.

  2. To identify all the topic records that have the Topic Duration (Sec.) equal 0, type:

    SELECT Id FROM Gong__Topic__c WHERE Gong__Topic_Duration_Sec__c = 0

      Salesfoce_remove_empty_records

  3. Press RETURN.

  4. Select all the IDs and click Delete Row.

  5. To identify all the tracker records where Tracker Occurrences equal 0, type:

    SELECT Id FROM Gong__Tracker__c WHERE Gong__Tracker_Occurrences__c=0

  6. Press RETURN.

  7. Select all the IDs and click Delete Row.

Remove empty tracker and topic records via Salesforce Data Loader

  1. Login to Dataloader and click Export.

  2. Select the Topic object:

    Topic (Gong_Topic_c)

      Salesfoce_remove_empty_records2

  3. Set the generated query fields to:

    Select Id FROM Gong__Topic__c WHERE Gong__Topic_Duration_Sec__c = 0

      Salesfoce_remove_empty_records3

  4. Click Finish.

    A .csv file is created containing all the record IDs of empty topics that can be deleted.

  5. Click Delete.

  6. Select the Topic object and the .csv file you just created.

      Salesfoce_remove_empty_records4

  7. Click Next and then OK in the field mapping step.

  8. Click Create or Edit a Map, and select Auto-Match Fields to Columns to match the ID column with the Id field.

      Salesfoce_remove_empty_records5

  9. Click OK.

  10. Click Next and then click Finish.

  11. Click Yes to confirm the deletion.

  12. Repeat these steps for empty trackers using the following query:

    Select Id FROM Gong__Tracker__c WHERE Gong__Tracker_Occurrences__c = 0

      Salesfoce_remove_empty_records6


Was this article helpful?

Changing your password will log you out immediately. Use the new password to log back in.
First name must have atleast 2 characters. Numbers and special characters are not allowed.
Last name must have atleast 1 characters. Numbers and special characters are not allowed.
Enter a valid email
Enter a valid password
Your profile has been successfully updated.
ESC

Eddy, a genAI helper, will scrub our help center to give you an answer that summarizes our content. Ask a question in plain language and let me do the rest.