Skip to content

Commit a87db26

Browse files
committed
Clean up ODBC connector samples
1 parent 32432c0 commit a87db26

File tree

1 file changed

+1
-75
lines changed

1 file changed

+1
-75
lines changed

articles/data-factory/connector-odbc.md

Lines changed: 1 addition & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.workload: data-services
1212
ms.tgt_pltfrm: na
1313

1414
ms.topic: conceptual
15-
ms.date: 11/19/2018
15+
ms.date: 08/12/2019
1616
ms.author: jingwang
1717

1818
---
@@ -229,80 +229,6 @@ To copy data to ODBC-compatible data store, set the sink type in the copy activi
229229
]
230230
```
231231

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.
305-
306232
## SAP HANA sink
307233

308234
>[!NOTE]

0 commit comments

Comments
 (0)