SSIS 连接mysql问题

SSIS 连接mysql 一般使用32位ODBC,下载链接地址:https://dev.mysql.com/downloads/connector/odbc/

使用ADO.NET连接ODBC,配置好数据源,如下图:

SSIS 连接mysql问题_第1张图片

注意事项,要在mysql里面执行:

SET GLOBAL sql_mode='ansi'; 

否则执行数据源直接访问表时,会报ODBC mysql 语法错误:

 

标题: Microsoft Visual Studio
------------------------------

显示预览时出错。

------------------------------
其他信息:

ERROR [42000] [MySQL][ODBC 5.3(w) Driver][mysqld-5.7.20]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '"xxxxxx_table"' at line 1 (myodbc5w.dll)

 

转载于:https://www.cnblogs.com/wucz/p/8134474.html

你可能感兴趣的:(SSIS 连接mysql问题)