<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Migrating MySQL table to SQL Server in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Migrating-MySQL-table-to-SQL-Server/m-p/2312231#M83200</link>
    <description>&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;I am trying to copy a table from MySQL to SQLServer&lt;/P&gt;&lt;P&gt;Design is as follows:&lt;/P&gt;&lt;P&gt;    tDBInput (MySQL) -- tMap -- tDBOutput (SQLServer, JTDS)&lt;/P&gt;&lt;P&gt;The structure of the input table is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"CREATE TABLE IF NOT EXISTS `operador_modelo_negocio` (&lt;/P&gt;&lt;P&gt;&amp;nbsp;`id` bigint(20) NOT NULL AUTO_INCREMENT,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;`&lt;/P&gt;fecha_inserccion timestamp&lt;P&gt;`&lt;/P&gt; NOT NULL,&lt;P&gt;&amp;nbsp;`cliente` bigint(20) DEFAULT '0',&lt;/P&gt;&lt;P&gt;&amp;nbsp;`modelo_negocio` int(2) DEFAULT '3',&lt;/P&gt;&lt;P&gt;&amp;nbsp;`dto_operador` double DEFAULT '0',&lt;/P&gt;&lt;P&gt;&amp;nbsp;PRIMARY KEY (`id`),&lt;/P&gt;&lt;P&gt;&amp;nbsp;KEY `cliente` (`cliente`),&lt;/P&gt;&lt;P&gt;&amp;nbsp;KEY `modelo_negocio` (`modelo_negocio`)&lt;/P&gt;&lt;P&gt;);"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I´m getting the error message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Picked up _JAVA_OPTIONS: -Xms1024m -Xmx8196m&lt;/P&gt;&lt;P&gt;[statistics] connecting to socket on port 4068&lt;/P&gt;&lt;P&gt;[statistics] connected&lt;/P&gt;&lt;P&gt;Exception in component tDBOutput_1 (MySQL_SQLServer_DBServerMovil)&lt;/P&gt;&lt;P&gt;java.sql.SQLException: &lt;B&gt;Only dates in the AD era are accepted.&lt;/B&gt;&lt;/P&gt;&lt;P&gt;	at net.sourceforge.jtds.jdbc.DateTime.&amp;lt;init&amp;gt;(DateTime.java:104)&lt;/P&gt;&lt;P&gt;	at net.sourceforge.jtds.jdbc.JtdsPreparedStatement.setParameter(JtdsPreparedStatement.java:665)&lt;/P&gt;&lt;P&gt;	at net.sourceforge.jtds.jdbc.JtdsPreparedStatement.setTimestamp(JtdsPreparedStatement.java:1100)&lt;/P&gt;&lt;P&gt;	at in2020_proyecto.mysql_sqlserver_dbservermovil_0_1.MySQL_SQLServer_DBServerMovil.tDBInput_1Process(MySQL_SQLServer_DBServerMovil.java:1195)&lt;/P&gt;&lt;P&gt;	at in2020_proyecto.mysql_sqlserver_dbservermovil_0_1.MySQL_SQLServer_DBServerMovil.runJobInTOS(MySQL_SQLServer_DBServerMovil.java:1728)&lt;/P&gt;&lt;P&gt;	at in2020_proyecto.mysql_sqlserver_dbservermovil_0_1.MySQL_SQLServer_DBServerMovil.main(MySQL_SQLServer_DBServerMovil.java:1577)&lt;/P&gt;&lt;P&gt;[statistics] disconnected&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Job MySQL_SQLServer_DBServerMovil ended at 10:10 10/12/2020. [exit code&amp;nbsp;= 1]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help with this error, please???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 00:58:24 GMT</pubDate>
    <dc:creator>FGuijarro</dc:creator>
    <dc:date>2024-11-16T00:58:24Z</dc:date>
    <item>
      <title>Migrating MySQL table to SQL Server</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Migrating-MySQL-table-to-SQL-Server/m-p/2312231#M83200</link>
      <description>&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;I am trying to copy a table from MySQL to SQLServer&lt;/P&gt;&lt;P&gt;Design is as follows:&lt;/P&gt;&lt;P&gt;    tDBInput (MySQL) -- tMap -- tDBOutput (SQLServer, JTDS)&lt;/P&gt;&lt;P&gt;The structure of the input table is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"CREATE TABLE IF NOT EXISTS `operador_modelo_negocio` (&lt;/P&gt;&lt;P&gt;&amp;nbsp;`id` bigint(20) NOT NULL AUTO_INCREMENT,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;`&lt;/P&gt;fecha_inserccion timestamp&lt;P&gt;`&lt;/P&gt; NOT NULL,&lt;P&gt;&amp;nbsp;`cliente` bigint(20) DEFAULT '0',&lt;/P&gt;&lt;P&gt;&amp;nbsp;`modelo_negocio` int(2) DEFAULT '3',&lt;/P&gt;&lt;P&gt;&amp;nbsp;`dto_operador` double DEFAULT '0',&lt;/P&gt;&lt;P&gt;&amp;nbsp;PRIMARY KEY (`id`),&lt;/P&gt;&lt;P&gt;&amp;nbsp;KEY `cliente` (`cliente`),&lt;/P&gt;&lt;P&gt;&amp;nbsp;KEY `modelo_negocio` (`modelo_negocio`)&lt;/P&gt;&lt;P&gt;);"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I´m getting the error message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Picked up _JAVA_OPTIONS: -Xms1024m -Xmx8196m&lt;/P&gt;&lt;P&gt;[statistics] connecting to socket on port 4068&lt;/P&gt;&lt;P&gt;[statistics] connected&lt;/P&gt;&lt;P&gt;Exception in component tDBOutput_1 (MySQL_SQLServer_DBServerMovil)&lt;/P&gt;&lt;P&gt;java.sql.SQLException: &lt;B&gt;Only dates in the AD era are accepted.&lt;/B&gt;&lt;/P&gt;&lt;P&gt;	at net.sourceforge.jtds.jdbc.DateTime.&amp;lt;init&amp;gt;(DateTime.java:104)&lt;/P&gt;&lt;P&gt;	at net.sourceforge.jtds.jdbc.JtdsPreparedStatement.setParameter(JtdsPreparedStatement.java:665)&lt;/P&gt;&lt;P&gt;	at net.sourceforge.jtds.jdbc.JtdsPreparedStatement.setTimestamp(JtdsPreparedStatement.java:1100)&lt;/P&gt;&lt;P&gt;	at in2020_proyecto.mysql_sqlserver_dbservermovil_0_1.MySQL_SQLServer_DBServerMovil.tDBInput_1Process(MySQL_SQLServer_DBServerMovil.java:1195)&lt;/P&gt;&lt;P&gt;	at in2020_proyecto.mysql_sqlserver_dbservermovil_0_1.MySQL_SQLServer_DBServerMovil.runJobInTOS(MySQL_SQLServer_DBServerMovil.java:1728)&lt;/P&gt;&lt;P&gt;	at in2020_proyecto.mysql_sqlserver_dbservermovil_0_1.MySQL_SQLServer_DBServerMovil.main(MySQL_SQLServer_DBServerMovil.java:1577)&lt;/P&gt;&lt;P&gt;[statistics] disconnected&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Job MySQL_SQLServer_DBServerMovil ended at 10:10 10/12/2020. [exit code&amp;nbsp;= 1]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help with this error, please???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 00:58:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Migrating-MySQL-table-to-SQL-Server/m-p/2312231#M83200</guid>
      <dc:creator>FGuijarro</dc:creator>
      <dc:date>2024-11-16T00:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Migrating MySQL table to SQL Server</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Migrating-MySQL-table-to-SQL-Server/m-p/2312232#M83201</link>
      <description>&lt;P&gt;I think you have an incorrectly formatted date in the Input data. Its not the best approach, but, I will change the schema of the IP component to varchar and then, in tMap, change it to appropriate format for MSSQL. HTH.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 16:36:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Migrating-MySQL-table-to-SQL-Server/m-p/2312232#M83201</guid>
      <dc:creator>root</dc:creator>
      <dc:date>2020-12-10T16:36:00Z</dc:date>
    </item>
  </channel>
</rss>

