Azure Data Factory - connect to onprem accdb - ms-access

I need to retrieve data from Access onprem database by using adf. I have integration runtime installed on azure vm. Access database is on the other virtual machine. I know that on the azure virtual machine I should have a path to that Access database but how to do that?

I know that on the azure virtual machine I should have a path to that Access database but how to do that?
To connect on-premises Access database with Data factory you need to install SHIR on that particular Virtual Machine. Only for port 443 outbound traffic. This may be open by default.
The Integration Runtime Machine needs to have the Microsoft Access ODBC driver installed for the data storage.
Microsoft Access 2016 version of ODBC driver doesn't work with this connector. Use Microsoft Access 2013 or 2010 version of ODBC driver instead.
In linked service select that particular SHIR hosted on that particular Virtual Machine.
Provide correct values to the linked service properties like connectionString, authenticationType.
Reference- Copy data from and to Microsoft Access using Azure Data Factory follow this official document.

Related

Azure Managed SQL - ODBC Drivers

I have an Azure Managed SQL instance that I would like to use to connect to a MySQL server via a linked server used ODBC. I have tried and this keeps telling me I do not have the driver installed or the data source doesn't exist.
Is this because it expects this to be installed on the Azure machine hosting the server? I have seen mentions of people setting up an Azure VM to connect to the machine and install drivers / setup ODBC. Is this correct?
Can someone please either tell me how to connect to ODBC using DSN from my PC, or confirm if the error is due to the VM requirement
For reference, I have followed numerous guides and still have the same issue
Thanks in advance

How to connect to an Access database remotely?

I tried to connect with ODBC, and after the ODBC configuration was successful, the way you added external data using the local Access database could not be connected successfully.                                   
Error message:odbc--call failed
[ODBC Driver Manager]The architecture mismatch between the driver and the application in the specified DSN(#0).
The local computer is installed with 64-bit access 2016,The remote computer is installed with 32-bit access 2010.
How to solve, thank you very much!
You can't do that. It is beyond the scope of Access which is intended to connect/link via a LAN.
You may be able to link those remote table, but that will only work via a very reliable and high-speed connection like a 100/100 fibre WAN.

Exporting SharePoint 2016 Lists to SQL Server 2016 Database

In the past there was the possibility to make use of the SharePoint list adapter for SSIS via Codeplex (now it is hosted by github) to export SharePoint Lists to an MSSQL database. As far as I remember this is not available for newer versions and the adapter is deprecated. How is the export managed now? Also how it is done in case of O365 (SharePoint Online) and an Azure SQL Database? Or is the approach the same?
You simply create a SSIS connection of Type OData (Connection Manager for OData) and configure the preferences of the connection. Connection string has to refer to Service Document Location url.

how to integrate Odoo with MySQL

I am trying to integrate Odoo(openerp-8) with MySQL on ubuntu server, to get the database access instead of postgresql.
But I am unable to figure out the correct way to do that.
I tried this link, but it didn't help me
http://openerp-team.blogspot.de/2009/08/open-erp-server-with-mysql.html
Any better ideas on configuring odoo with MySQL?
In Odoo apps Store One Free module Available name is "External Database Sources"
This module allows you to define connections to foreign databases using ODBC, Oracle Client or SQLAlchemy.
Database sources can be configured in Settings > Configuration -> Data sources.
Depending on the database, you need:
to install unixodbc and python-pyodbc packages to use ODBC connections.
to install FreeTDS driver (tdsodbc package) and configure it through ODBC to connect to Microsoft SQL Server.
to install and configure Oracle Instant Client and cx_Oracle python library to connect to Oracle.
Sun and Open ERP:
The cost-effective, highly-scalable ERP solution
Read This Doc Write by Fabien Pickaers, CEO Odoo and Sun:
http://www.epicos.com/EPCompanyProfileWeb/Content/NARITAS/Sun_and_Open_ERP.pdf
SnipptBucket News : http://snippetbucket.com/2014/07/openerp-mysql-odoo-mysql-synchronization-odoo-automation-openerp-automation/
Reference Link: https://www.odoo.com/apps/modules/8.0/base_external_dbsource/

Access local MySQL database via LAN through Visual C++ DLL

I'm writing a wrapper for a local MySQL database. So far, I've made a Visual C++ DLL that opens a connection to the database from the local computer using MySQL's C connector. How can I extend the DLL to access the database remotely through a LAN connection?
it is the same concept, but you need to enable remote access on your remote database. This is not really safe if you are doing it over public connection.
http://www.cyberciti.biz/tips/how-do-i-enable-remote-access-to-mysql-database-server.html