<?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: Issue with loading data from SSMS in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-with-loading-data-from-SSMS/m-p/2449330#M13634</link>
    <description>&lt;P&gt;You definitely don't need quotes around the year value.&amp;nbsp; Even if it was improperly stored as a varchar, SQL Server converts it on the fly and never throws an error for that.&lt;/P&gt;</description>
    <pubDate>Mon, 06 May 2024 13:33:24 GMT</pubDate>
    <dc:creator>mshann01</dc:creator>
    <dc:date>2024-05-06T13:33:24Z</dc:date>
    <item>
      <title>Issue with loading data from SSMS</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-with-loading-data-from-SSMS/m-p/2445378#M13602</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I have an application built in Qlik Sense which is already connected to SSMS. There are already tables pulled over from SSMS, and many reports are built using that data. I am adding a new section in the data load editor, and I am trying to pull another table from SSMS and load it into Qlik Sense. However, every time I write my load script, it gives me an error. Interestingly, when I tried loading the same data into an empty application, it worked fine. What could be the problem preventing me from pulling the data into my existing application?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;My load script is simple:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Load:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;select ID, Rev1, Rev2,Rev3&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;From ABCTable&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Where Year=2024 and Status= 'Active'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2024 16:51:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-with-loading-data-from-SSMS/m-p/2445378#M13602</guid>
      <dc:creator>Mur</dc:creator>
      <dc:date>2024-04-26T16:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with loading data from SSMS</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-with-loading-data-from-SSMS/m-p/2448597#M13624</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/295777"&gt;@Mur&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;can you post more information about the error?&lt;/P&gt;
&lt;P&gt;Do you receive a specific error message?&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2024 15:07:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-with-loading-data-from-SSMS/m-p/2448597#M13624</guid>
      <dc:creator>Fabiano_Martino_Intelco</dc:creator>
      <dc:date>2024-05-03T15:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with loading data from SSMS</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-with-loading-data-from-SSMS/m-p/2449061#M13626</link>
      <description>&lt;P&gt;Probably you have a syntax error. Did you miss the final semicolon?&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Load:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;select ID, Rev1, Rev2,Rev3&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;From ABCTable&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Where Year=2024 and Status= 'Active'&lt;EM&gt; &lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 06:14:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-with-loading-data-from-SSMS/m-p/2449061#M13626</guid>
      <dc:creator>Mario_De_Felipe</dc:creator>
      <dc:date>2024-05-06T06:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with loading data from SSMS</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-with-loading-data-from-SSMS/m-p/2449090#M13627</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/295777"&gt;@Mur&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looks like you are missing single quotes in 2024&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;where reads =2024&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Should read ='2024'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Pablo007_0-1714980494984.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/165489i179C8591FE41AD3A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Pablo007_0-1714980494984.png" alt="Pablo007_0-1714980494984.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 07:28:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-with-loading-data-from-SSMS/m-p/2449090#M13627</guid>
      <dc:creator>Pablo007</dc:creator>
      <dc:date>2024-05-06T07:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with loading data from SSMS</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-with-loading-data-from-SSMS/m-p/2449330#M13634</link>
      <description>&lt;P&gt;You definitely don't need quotes around the year value.&amp;nbsp; Even if it was improperly stored as a varchar, SQL Server converts it on the fly and never throws an error for that.&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 13:33:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-with-loading-data-from-SSMS/m-p/2449330#M13634</guid>
      <dc:creator>mshann01</dc:creator>
      <dc:date>2024-05-06T13:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with loading data from SSMS</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-with-loading-data-from-SSMS/m-p/2449331#M13635</link>
      <description>&lt;P&gt;send us error and the full script and we'll tell you what the issue is&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 13:34:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-with-loading-data-from-SSMS/m-p/2449331#M13635</guid>
      <dc:creator>mshann01</dc:creator>
      <dc:date>2024-05-06T13:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with loading data from SSMS</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-with-loading-data-from-SSMS/m-p/2449334#M13636</link>
      <description>&lt;P&gt;Thank you all... I found the error.&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 13:35:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-with-loading-data-from-SSMS/m-p/2449334#M13636</guid>
      <dc:creator>Mur</dc:creator>
      <dc:date>2024-05-06T13:35:13Z</dc:date>
    </item>
  </channel>
</rss>

