<?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 Re: reading .sql file in talend in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311321#M82373</link>
    <description>&lt;P&gt;@not specified not specified​&amp;nbsp;: Any update on above case?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 13 Jul 2022 07:04:55 GMT</pubDate>
    <dc:creator>sushantk19</dc:creator>
    <dc:date>2022-07-13T07:04:55Z</dc:date>
    <item>
      <title>reading .sql file in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311315#M82367</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement to read .sql file in talend.  .sql file consist of create table statement and insert into statement.&lt;/P&gt;&lt;P&gt;After reading some of the blogs, i have designed my job with the below design&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tFileinputRaw_1---&amp;gt;main---&amp;gt;tFlowToIterate---&amp;gt;Iterate---&amp;gt;tDBinput.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you share if possible the basic and advanced settings of &lt;/P&gt;&lt;P&gt;tDBinput components. Till tFileinputRaw_1---&amp;gt;main---&amp;gt;tFlowToIterate it seems to be working fine without any errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how should i access the source table from .sql file say table X? what SQL query should we write in &lt;/P&gt;&lt;P&gt;tDBinput component?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 22:46:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311315#M82367</guid>
      <dc:creator>sushantk19</dc:creator>
      <dc:date>2024-11-15T22:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: reading .sql file in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311316#M82368</link>
      <description>&lt;P&gt;To run a 'create or insert' SQL statement, you should use tDBRow component. tFileInputRaw read the file content as a string, I think you need to split the string to several sub-strings if the file contains several SQL statements, and then iterate each SQL statement one by one. &lt;/P&gt;&lt;P&gt;Can you show us an example of .sql file?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shong&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 07:15:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311316#M82368</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-06T07:15:09Z</dc:date>
    </item>
    <item>
      <title>Re: reading .sql file in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311317#M82369</link>
      <description>&lt;P&gt;@shong: Please find the sample file as below:&lt;/P&gt;&lt;P&gt;-- MySQL dump 10.19&amp;nbsp;Distrib 10.3.35-MariaDB, for debian-linux-gnu (x86_64)&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;-- Host: database.internal&amp;nbsp;&amp;nbsp;Database: lpn_db&lt;/P&gt;&lt;P&gt;-- ------------------------------------------------------&lt;/P&gt;&lt;P&gt;-- Server version	10.2.44-MariaDB-10.2.44+maria~stretch&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;&lt;/P&gt;&lt;P&gt;/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;&lt;/P&gt;&lt;P&gt;/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;&lt;/P&gt;&lt;P&gt;/*!40101 SET NAMES utf8mb4 */;&lt;/P&gt;&lt;P&gt;/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;&lt;/P&gt;&lt;P&gt;/*!40103 SET TIME_ZONE='+00:00' */;&lt;/P&gt;&lt;P&gt;/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;&lt;/P&gt;&lt;P&gt;/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;&lt;/P&gt;&lt;P&gt;/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;&lt;/P&gt;&lt;P&gt;/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;-- Table structure for table `user`&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DROP TABLE IF EXISTS `user`;&lt;/P&gt;&lt;P&gt;/*!40101 SET @saved_cs_client&amp;nbsp;&amp;nbsp;&amp;nbsp;= @@character_set_client */;&lt;/P&gt;&lt;P&gt;/*!40101 SET character_set_client = utf8 */;&lt;/P&gt;&lt;P&gt;CREATE TABLE `user` (&lt;/P&gt;&lt;P&gt;&amp;nbsp;`id` int(11) NOT NULL AUTO_INCREMENT,&lt;/P&gt;&lt;P&gt;&amp;nbsp;`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;`roles` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;`last_seen` datetime NOT NULL COMMENT '(DC2Type:datetime_immutable)',&lt;/P&gt;&lt;P&gt;&amp;nbsp;`created_at` datetime NOT NULL COMMENT '(DC2Type:datetime_immutable)',&lt;/P&gt;&lt;P&gt;&amp;nbsp;`updated_at` datetime NOT NULL COMMENT '(DC2Type:datetime_immutable)',&lt;/P&gt;&lt;P&gt;&amp;nbsp;`has_given_performance_consent` tinyint(1) NOT NULL DEFAULT 0,&lt;/P&gt;&lt;P&gt;&amp;nbsp;`has_given_functional_consent` tinyint(1) NOT NULL DEFAULT 0,&lt;/P&gt;&lt;P&gt;&amp;nbsp;`is_deleted` tinyint(1) NOT NULL DEFAULT 0,&lt;/P&gt;&lt;P&gt;&amp;nbsp;`deleted_at` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',&lt;/P&gt;&lt;P&gt;&amp;nbsp;PRIMARY KEY (`id`),&lt;/P&gt;&lt;P&gt;&amp;nbsp;UNIQUE KEY `UNIQ_8D93D649E7927C74` (`email`)&lt;/P&gt;&lt;P&gt;) ENGINE=InnoDB AUTO_INCREMENT=1184 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;&lt;/P&gt;&lt;P&gt;/*!40101 SET character_set_client = @saved_cs_client */;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;-- Dumping data for table `user`&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LOCK TABLES `user` WRITE;&lt;/P&gt;&lt;P&gt;/*!40000 ALTER TABLE `user` DISABLE KEYS */;&lt;/P&gt;&lt;P&gt;INSERT INTO `user` VALUES (XXX);&lt;/P&gt;&lt;P&gt;/*!40000 ALTER TABLE `user` ENABLE KEYS */;&lt;/P&gt;&lt;P&gt;UNLOCK TABLES;&lt;/P&gt;&lt;P&gt;/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;&lt;/P&gt;&lt;P&gt;/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;&lt;/P&gt;&lt;P&gt;/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;&lt;/P&gt;&lt;P&gt;/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;&lt;/P&gt;&lt;P&gt;/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;&lt;/P&gt;&lt;P&gt;/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;&lt;/P&gt;&lt;P&gt;/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-- Dump completed on 2022-07-05&amp;nbsp;5:51:25&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 07:46:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311317#M82369</guid>
      <dc:creator>sushantk19</dc:creator>
      <dc:date>2022-07-07T07:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: reading .sql file in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311318#M82370</link>
      <description>&lt;P&gt;@Shicong Hong​&amp;nbsp;can you please share some sample screenshots how to execute a create/insert statement with tDBRow component for the above use case?&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 09:05:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311318#M82370</guid>
      <dc:creator>sushantk19</dc:creator>
      <dc:date>2022-07-07T09:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: reading .sql file in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311319#M82371</link>
      <description>&lt;P&gt;Hi @Sushant Kapoor​&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000SrZKiAAN.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/129574i4DA4FCD1012AB458/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000SrZKiAAN.png" alt="0695b00000SrZKiAAN.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000SrZLMAA3.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/133704iEB75AF66F4F2C424/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000SrZLMAA3.png" alt="0695b00000SrZLMAA3.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000SrZLvAAN.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158132iB02C7C49C940D07E/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000SrZLvAAN.png" alt="0695b00000SrZLvAAN.png" /&gt;&lt;/span&gt;The sql file script :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-- test.cars_01 definition&lt;/P&gt;&lt;P&gt;DROP TABLE IF EXISTS `cars_01`;&lt;/P&gt;&lt;P&gt;CREATE TABLE `cars_01` (&lt;/P&gt;&lt;P&gt;&amp;nbsp;`carID` varchar(15) NOT NULL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;`designModel` varchar(30) DEFAULT NULL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;`aClass` varchar(15) DEFAULT NULL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;`brand` varchar(15) DEFAULT NULL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;`rateWeekend` varchar(15) DEFAULT NULL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;`rateWeekday` varchar(15) DEFAULT NULL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;`securityGuarantee` varchar(15) DEFAULT NULL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;PRIMARY KEY (`carID`)&lt;/P&gt;&lt;P&gt;) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;INSERT INTO cars_01&lt;/P&gt;&lt;P&gt;(carID, designModel, aClass, brand, rateWeekend, rateWeekday, securityGuarantee)&lt;/P&gt;&lt;P&gt;VALUES('aa3', 'Audi A3', 'Middle', 'Audi', '250', '200', 'Full');&lt;/P&gt;&lt;P&gt;INSERT INTO test.cars_01&lt;/P&gt;&lt;P&gt;(carID, designModel, aClass, brand, rateWeekend, rateWeekday, securityGuarantee)&lt;/P&gt;&lt;P&gt;VALUES('aa4', 'Audi A4', 'Middle', 'Audi', '400', '300', 'Full');&lt;/P&gt;&lt;P&gt;INSERT INTO test.cars_01&lt;/P&gt;&lt;P&gt;(carID, designModel, aClass, brand, rateWeekend, rateWeekday, securityGuarantee)&lt;/P&gt;&lt;P&gt;VALUES('gs5', 'Golf S5', 'Middle', 'Volkswagen', '240', '155', 'Full');&lt;/P&gt;&lt;P&gt;INSERT INTO test.cars_01&lt;/P&gt;&lt;P&gt;(carID, designModel, aClass, brand, rateWeekend, rateWeekday, securityGuarantee)&lt;/P&gt;&lt;P&gt;VALUES('gs6', 'Golf S6', 'Middle', 'Volkswagen', '280', '190', 'Full');&lt;/P&gt;&lt;P&gt;INSERT INTO test.cars_01&lt;/P&gt;&lt;P&gt;(carID, designModel, aClass, brand, rateWeekend, rateWeekday, securityGuarantee)&lt;/P&gt;&lt;P&gt;VALUES('gs7', 'Golf S7', 'Middle', 'Volkswagen', '320', '270', 'Full');&lt;/P&gt;&lt;P&gt;INSERT INTO test.cars_01&lt;/P&gt;&lt;P&gt;(carID, designModel, aClass, brand, rateWeekend, rateWeekday, securityGuarantee)&lt;/P&gt;&lt;P&gt;VALUES('gs8', 'Golf S8', 'Premium', 'Volkswagen', '520', '430', 'Full');&lt;/P&gt;&lt;P&gt;INSERT INTO test.cars_01&lt;/P&gt;&lt;P&gt;(carID, designModel, aClass, brand, rateWeekend, rateWeekday, securityGuarantee)&lt;/P&gt;&lt;P&gt;VALUES('mc220', 'Mercedes AMG C63', 'Premium', 'Mercedes', '600', '480', 'Full');&lt;/P&gt;&lt;P&gt;INSERT INTO test.cars_01&lt;/P&gt;&lt;P&gt;(carID, designModel, aClass, brand, rateWeekend, rateWeekday, securityGuarantee)&lt;/P&gt;&lt;P&gt;VALUES('me600', 'Mercedes E600', 'Premium', 'Mercedes', '500', '300', 'Full');&lt;/P&gt;&lt;P&gt;INSERT INTO test.cars_01&lt;/P&gt;&lt;P&gt;(carID, designModel, aClass, brand, rateWeekend, rateWeekday, securityGuarantee)&lt;/P&gt;&lt;P&gt;VALUES('p2008', '2008 Blue HDI', 'Premium', 'Peugeot', '500', '380', 'Full');&lt;/P&gt;&lt;P&gt;INSERT INTO test.cars_01&lt;/P&gt;&lt;P&gt;(carID, designModel, aClass, brand, rateWeekend, rateWeekday, securityGuarantee)&lt;/P&gt;&lt;P&gt;VALUES('p206', '206+', 'Premium', 'Peugeot', '190', '100', 'Full');&lt;/P&gt;&lt;P&gt;INSERT INTO test.cars_01&lt;/P&gt;&lt;P&gt;(carID, designModel, aClass, brand, rateWeekend, rateWeekday, securityGuarantee)&lt;/P&gt;&lt;P&gt;VALUES('p308', '308 HDI', 'Premium', 'Peugeot', '400', '300', 'Full');&lt;/P&gt;&lt;P&gt;INSERT INTO test.cars_01&lt;/P&gt;&lt;P&gt;(carID, designModel, aClass, brand, rateWeekend, rateWeekday, securityGuarantee)&lt;/P&gt;&lt;P&gt;VALUES('rc3', 'Clio S3', 'Middle', 'Renault', '220', '130', 'Full');&lt;/P&gt;&lt;P&gt;INSERT INTO test.cars_01&lt;/P&gt;&lt;P&gt;(carID, designModel, aClass, brand, rateWeekend, rateWeekday, securityGuarantee)&lt;/P&gt;&lt;P&gt;VALUES('rc4', 'Clio S4', 'Middle', 'Renault', '320', '280', 'Full');&lt;/P&gt;&lt;P&gt;INSERT INTO test.cars_01&lt;/P&gt;&lt;P&gt;(carID, designModel, aClass, brand, rateWeekend, rateWeekday, securityGuarantee)&lt;/P&gt;&lt;P&gt;VALUES('rc5', 'Clio S5', 'Premium', 'Renault', '520', '430', 'Full');&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000SrZQqAAN.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/151459iB6AC31CD7B3AD29C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000SrZQqAAN.png" alt="0695b00000SrZQqAAN.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2022 12:39:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311319#M82371</guid>
      <dc:creator>InfoCraft</dc:creator>
      <dc:date>2022-07-08T12:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: reading .sql file in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311320#M82372</link>
      <description>&lt;P&gt;@Covid19: i replicated your design, but i get the below error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[statistics] connected&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[FATAL] 15:16:48 lillydoo_dwh_qa.job_000_sqlsource_test_0_1.job_000_sqlsource_test- tDBInput_1 [Amazon](500310) Invalid operation: syntax error at or near "null".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My design is attached for your reference. do you know why there is triangular yellow symbol next to the upper flow attached? i havent defined any ports in this component.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ALso, do you know if i need to create user table first with the data or directly use .sql file as my source. what are the settings in user component for lower pipeline. I have attached that screenshot also for your ref. please have a look why this job is not working.&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000SrqZpAAJ.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/128656i0FC4CC0FAE9943CD/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000SrqZpAAJ.png" alt="0695b00000SrqZpAAJ.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000SrqZfAAJ.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138912i366229A50AAE66F7/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000SrqZfAAJ.png" alt="0695b00000SrqZfAAJ.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000SrqZaAAJ.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/146020i813C236AADCB8C81/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000SrqZaAAJ.jpg" alt="0695b00000SrqZaAAJ.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2022 13:30:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311320#M82372</guid>
      <dc:creator>sushantk19</dc:creator>
      <dc:date>2022-07-12T13:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: reading .sql file in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311321#M82373</link>
      <description>&lt;P&gt;@not specified not specified​&amp;nbsp;: Any update on above case?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2022 07:04:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311321#M82373</guid>
      <dc:creator>sushantk19</dc:creator>
      <dc:date>2022-07-13T07:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: reading .sql file in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311322#M82374</link>
      <description>&lt;P&gt;Hi @Sushant Kapoor​,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your job is not like mine, you have to use tDBRow not tDBInput.&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000Srxy3AAB.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/135668iB6DE04AFAF0FBE35/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000Srxy3AAB.png" alt="0695b00000Srxy3AAB.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2022 11:44:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311322#M82374</guid>
      <dc:creator>InfoCraft</dc:creator>
      <dc:date>2022-07-13T11:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: reading .sql file in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311323#M82375</link>
      <description>&lt;P&gt;@not specified not specified​&amp;nbsp;:ok thanks. i updated my design as above ( replaced tDBInput component with tDBrow). but I still the same error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[ERROR] 09:26:41 lillydoo_dwh_qa.job_000_sqlsource_test_0_1.job_000_sqlsource_test- tDBRow_1 - [Amazon](500310) Invalid operation: syntax error at or near "null"&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please find the screenshot attached. could this be because of .sql file??&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000Ss6i9AAB.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/132463i391393D8D56BA928/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000Ss6i9AAB.png" alt="0695b00000Ss6i9AAB.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2022 07:47:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311323#M82375</guid>
      <dc:creator>sushantk19</dc:creator>
      <dc:date>2022-07-14T07:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: reading .sql file in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311324#M82376</link>
      <description>&lt;P&gt;Hi @&lt;A href="https://community.talend.com/s/profile/0053p000007LQvwAAG" alt="https://community.talend.com/s/profile/0053p000007LQvwAAG" target="_blank"&gt;sushantk19&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;sql syntax when inserting is not good&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000Ss7jXAAR.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/133905i43FE2160CB3BB49A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000Ss7jXAAR.png" alt="0695b00000Ss7jXAAR.png" /&gt;&lt;/span&gt;INSERT&amp;nbsp;INTO&amp;nbsp;&lt;I&gt;table_name&lt;/I&gt;&amp;nbsp;(&lt;I&gt;column1&lt;/I&gt;,&lt;I&gt;&amp;nbsp;column2&lt;/I&gt;,&lt;I&gt;&amp;nbsp;column3&lt;/I&gt;, ...)&lt;/P&gt;&lt;P&gt;VALUES&amp;nbsp;(&lt;I&gt;value1&lt;/I&gt;,&lt;I&gt;&amp;nbsp;value2&lt;/I&gt;,&lt;I&gt;&amp;nbsp;value3&lt;/I&gt;, ...);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;OR disable the line to continue the test&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000Ss7k6AAB.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/142235i02A32CDDBB03CDD9/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000Ss7k6AAB.png" alt="0695b00000Ss7k6AAB.png" /&gt;&lt;/span&gt;I tested with your sql file and it works fine&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000Ss7qTAAR.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/142579i9A557F8F22157EAC/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000Ss7qTAAR.png" alt="0695b00000Ss7qTAAR.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000Ss7rgAAB.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/151873i2E80A3A902517660/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000Ss7rgAAB.png" alt="0695b00000Ss7rgAAB.png" /&gt;&lt;/span&gt;if it still doesn't work with you, take screenshots of the component configuration (tFileInputRaw, tDBRow), and make sure the connection to the database is established.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;B&gt;Kind regards,&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;span class="lia-unicode-emoji" title=":face_with_medical_mask:"&gt;😷&lt;/span&gt;19.&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2022 14:00:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/reading-sql-file-in-talend/m-p/2311324#M82376</guid>
      <dc:creator>InfoCraft</dc:creator>
      <dc:date>2022-07-14T14:00:18Z</dc:date>
    </item>
  </channel>
</rss>

