CData is imposing a monthly fee on customers that use their connectors after 5 March 2026.
It’s easy to switch to TimeXtender connectors but it can be a tedious process in larger solutions with many projects to find those connectors.
Here’s a query you can run against the project repository to get a list of currently used connectors:
/***** Current CData Usage *****/
select p.Name as Project
,s.Name as DataSource
,left(stuff(c.ProviderName, 1, 18, ''), charindex('.', stuff(c.ProviderName, 1, 18, '')) - 1) as Provider
from CDataDataSources c
inner join DataSources s on c.CDataDataSourceId = s.DataSourceId and s.ValidTo = 99999999
inner join BusinessUnits b on s.BusinessUnitId = b.BusinessUnitId and b.ValidTo = 99999999
inner join Projects p on b.ProjectId = p.ProjectId and p.ValidTo = 99999999
where c.ValidTo = 99999999
order by 1, 2