You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/data-factory/connector-odbc.md
+1-75Lines changed: 1 addition & 75 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ ms.workload: data-services
12
12
ms.tgt_pltfrm: na
13
13
14
14
ms.topic: conceptual
15
-
ms.date: 11/19/2018
15
+
ms.date: 08/12/2019
16
16
ms.author: jingwang
17
17
18
18
---
@@ -229,80 +229,6 @@ To copy data to ODBC-compatible data store, set the sink type in the copy activi
229
229
]
230
230
```
231
231
232
-
## IBM Informix source
233
-
234
-
You can copy data from IBM Informix database using the generic ODBC connector.
235
-
236
-
Set up a Self-hosted Integration Runtime on a machine with access to your data store. The Integration Runtime uses the ODBC driver for Informix to connect to the data store. Therefore, install the driver if it is not already installed on the same machine. For example, you can use driver "IBM INFORMIX ODBC DRIVER (64-bit)". See [Prerequisites](#prerequisites) section for details.
237
-
238
-
Before you use the Informix source in a Data Factory solution, verify whether the Integration Runtime can connect to the data store using instructions in [Troubleshoot connectivity issues](#troubleshoot-connectivity-issues) section.
239
-
240
-
Create an ODBC linked service to link an IBM Informix data store to an Azure data factory as shown in the following example:
241
-
242
-
```json
243
-
{
244
-
"name": "InformixLinkedService",
245
-
"properties": {
246
-
"type": "Odbc",
247
-
"typeProperties": {
248
-
"connectionString": {
249
-
"type": "SecureString",
250
-
"value": "<Informix connection string or DSN>"
251
-
},
252
-
"authenticationType": "Basic",
253
-
"userName": "<username>",
254
-
"password": {
255
-
"type": "SecureString",
256
-
"value": "<password>"
257
-
}
258
-
},
259
-
"connectVia": {
260
-
"referenceName": "<name of Integration Runtime>",
261
-
"type": "IntegrationRuntimeReference"
262
-
}
263
-
}
264
-
}
265
-
```
266
-
267
-
Read the article from the beginning for a detailed overview of using ODBC data stores as source/sink data stores in a copy operation.
268
-
269
-
## Microsoft Access source
270
-
271
-
You can copy data from Microsoft Access database using the generic ODBC connector.
272
-
273
-
Set up a Self-hosted Integration Runtime on a machine with access to your data store. The Integration Runtime uses the ODBC driver for Microsoft Access to connect to the data store. Therefore, install the driver if it is not already installed on the same machine. See [Prerequisites](#prerequisites) section for details.
274
-
275
-
Before you use the Microsoft Access source in a Data Factory solution, verify whether the Integration Runtime can connect to the data store using instructions in [Troubleshoot connectivity issues](#troubleshoot-connectivity-issues) section.
276
-
277
-
Create an ODBC linked service to link a Microsoft Access database to an Azure data factory as shown in the following example:
278
-
279
-
```json
280
-
{
281
-
"name": "MicrosoftAccessLinkedService",
282
-
"properties": {
283
-
"type": "Odbc",
284
-
"typeProperties": {
285
-
"connectionString": {
286
-
"type": "SecureString",
287
-
"value": "Driver={Microsoft Access Driver (*.mdb, *.accdb)};Dbq=<path to your DB file e.g. C:\\mydatabase.accdb>;"
288
-
},
289
-
"authenticationType": "Basic",
290
-
"userName": "<username>",
291
-
"password": {
292
-
"type": "SecureString",
293
-
"value": "<password>"
294
-
}
295
-
},
296
-
"connectVia": {
297
-
"referenceName": "<name of Integration Runtime>",
298
-
"type": "IntegrationRuntimeReference"
299
-
}
300
-
}
301
-
}
302
-
```
303
-
304
-
Read the article from the beginning for a detailed overview of using ODBC data stores as source/sink data stores in a copy operation.
0 commit comments