If you have created a new custom entity in Dynamics CRM or one of your other datastores and you cannot see that entity when you are working in TIBCO Scribe® Insight, you must clear the records from the table that stores the metadata in the Scribe Internal database.
The steps shown below are for removing metadata for Dynamics CRM.
Select * From SCRIBE.ADAPTERMETADATA
This shows you the contents of the table before deleting any records. Next run the script below:
Delete From SCRIBE.ADAPTERMETADATA
Where NAME IN ('Adapter for Dynamics 365 and CRM','DynamicsCrm 2011 Adapter','Adapter for Dynamics CRM') and IDENTIFIER<>'DEFAULT';
Note: Note: The Connection name in the example above must be modified to match the name of your Dynamics CRM connection as it is shown in the SCRIBE.ADAPTERMETADATA table.
See also