Hello dsp21
To connect to Deltek Vision as a source in Azure Data Factory using ODBC, you need to create a linked service to an ODBC data store. Here are the steps:
- Browse to the Manage tab in your Azure Data Factory or Synapse workspace and select Linked Services, then click New.
- Search for ODBC and select the ODBC connector.
- Configure the service details, test the connection, and create the new linked service.
For the connection string, you can specify it with a pattern like Driver= {SQL Server};Server=Server.database.windows.net; Database=TestDatabase;
, or use the system DSN (Data Source Name) you set up on the Integration Runtime machine with DSN=<name of the DSN on IR machine>;
. You need to still specify the credential portion in the linked service accordingly.
Please note that you need to have a 64-bit ODBC driver for the data store installed on the Integration Runtime machine1.
Also, ensure that you have enabled ODBC Connectivity for the user account in Deltek Vision.
Remember to replace the placeholders in the connection string with your actual server name, database name, and credentials.
I hope this answers your questions and helps you in your Azure Data Factory solution.