I created a duplicate Identity Provider Profile table (e.g., an Okta or Google Workspace table), and do not know which one is the duplicate. How can I identify and remove the duplicate table?
To identify the original Identity Provider Profile table, query for the p_parse_time
of the tables in Data Explorer:
Select the Database: panther_lookups.public
.
Execute the following queries:
SELECT p_parse_time
FROM panther_lookups.public.<name_of_table1>_history --replace name_of_table1 with your table
LIMIT 100
SELECT p_parse_time
FROM panther_lookups.public.<name_of_table2>_history --replace name_of_table2 with your table
LIMIT 100
Compare the p_parse_time
values of the two tables. The table with the older p_parse_time
is your original table.
After identifying the Identity Provider Profile table you wish to remove:
Navigate to Configure > Enrichment Providers.
Locate the table you want to remove.
Click the three dots icon(...).
Click Delete Lookup Table.