<?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: Salesforce data incremental load issue in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447343#M699112</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Muralidhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of joining directly fetch data and store in resident table and then inner join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temporary:&lt;/P&gt;&lt;P&gt;SQL SELECT PrimaryKey FROM DB_TABLE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inner Join LOAD * RESIDENT Temporary;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE Temporary;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Jan 2013 13:22:55 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2013-01-23T13:22:55Z</dc:date>
    <item>
      <title>Salesforce data incremental load issue</title>
      <link>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447338#M699107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my dashboard I am using the below code to incremental load Salesforce.com data. This code is taken from the demo app that is available on QlikView web site.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not able to understand how this code handles the Accounts that get deleted within SFDC? After running the below code for 30 days, I now have a around 100 accounts in my QVD which are not in SFDC (deleted ones). I can't shift to full load as its a huge data and refresh cycle is every 30mins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one had similar problems?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Account_SQL: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;SQL&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; SELECT &lt;BR /&gt;&lt;BR /&gt; *&lt;BR /&gt;&lt;BR /&gt;FROM Account&lt;BR /&gt;&lt;BR /&gt;WHERE LastModifiedDate &amp;gt;= &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;$(vLastExecTime)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; and LastModifiedDate &amp;lt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;$(vExecTime)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: 8pt;"&gt;// For the 1st reload, this section will be skipped.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;if&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Not&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;$(FirstReload)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;and&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;not&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;isnull&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;QvdCreateTime&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;('$(vQVDPath)Account_SQL.QVD'))&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;then&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Load&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; * &lt;BR /&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;$(vQVDPath)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;Account_SQL.qvd (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;qvd&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)&lt;BR /&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;WHERE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;NOT&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;EXISTS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Id&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;end&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;if&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;NoOfRows&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;('Account_SQL') &amp;gt; 0 &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;then&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;STORE&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; Account_SQL &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;INTO&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;$(vQVDPath)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;Account_SQL.qvd;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Account:&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Load&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;*&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;RESIDENT&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Account_SQL;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;DROP&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;TABLE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Account_SQL;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;End&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Murali&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2013 10:40:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447338#M699107</guid>
      <dc:creator />
      <dc:date>2013-01-23T10:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: Salesforce data incremental load issue</title>
      <link>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447339#M699108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Muralidhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to remove the deleted records from the QVD then you need to fetch the ids of the users and do the inner join to the qvd. Please check the script below from Help file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;Let ThisExecTime = Now( ); &lt;/P&gt;&lt;P class="Code"&gt;&lt;/P&gt;&lt;P class="Code"&gt;//Load modified records from Database&lt;/P&gt;&lt;P class="Code"&gt;&lt;SPAN style="font-style: italic;"&gt;QV_Table&lt;/SPAN&gt;:&lt;/P&gt;&lt;P class="Code"&gt;SQL SELECT PrimaryKey, X, Y FROM DB_TABLE&lt;/P&gt;&lt;P class="Code"&gt;WHERE ModificationTime &amp;gt;= #$(LastExecTime)#&lt;/P&gt;&lt;P class="Code"&gt;AND ModificationTime &amp;lt; #$(ThisExecTime)#;&lt;/P&gt;&lt;P class="Code"&gt;&lt;/P&gt;&lt;P class="Code"&gt;//Concatenate already existing records in QVD to the records modified/inserted in the database &lt;/P&gt;&lt;P class="Code"&gt;Concatenate LOAD PrimaryKey, X, Y FROM File.QVD&lt;/P&gt;&lt;P class="Code"&gt;WHERE NOT EXISTS(PrimaryKey);&lt;/P&gt;&lt;P class="Code"&gt;&lt;/P&gt;&lt;P class="Code"&gt;//Do inner join to remove the duplicates&lt;/P&gt;&lt;P class="Code"&gt;Inner Join SQL SELECT PrimaryKey FROM DB_TABLE; &lt;/P&gt;&lt;P class="Code"&gt;&lt;/P&gt;&lt;P class="Code"&gt;Hope this helps you.&lt;/P&gt;&lt;P class="Code"&gt;&lt;/P&gt;&lt;P class="Code"&gt;Regards,&lt;/P&gt;&lt;P class="Code"&gt;Jagan.&lt;/P&gt;&lt;P class="Code"&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2013 11:12:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447339#M699108</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-01-23T11:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: Salesforce data incremental load issue</title>
      <link>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447340#M699109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have done this but the final Inner join is taking long time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are there any other alternate options available?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2013 11:19:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447340#M699109</guid>
      <dc:creator />
      <dc:date>2013-01-23T11:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: Salesforce data incremental load issue</title>
      <link>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447341#M699110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Muralidhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think there is no other option you have to do the inner join then only the deleted records are eliminated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you getting only the primary value or retrieving all the values?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ie., Inner Join SQL SELECT PrimaryKey FROM DB_TABLE;&lt;/P&gt;&lt;P&gt;or using &lt;/P&gt;&lt;P&gt;Inner Join SQL SELECT * FROM DB_TABLE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since Select * takes long time to load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2013 11:42:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447341#M699110</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-01-23T11:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: Salesforce data incremental load issue</title>
      <link>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447342#M699111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. I did only give the primary key column in the inner join select.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The incremental load without inner join finished in 8 mins for 9 tables. where as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The incremental load with inner join is running from past 90 mins and still 3 tables are left to complete.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I am sure I can't go with this Logic.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2013 12:55:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447342#M699111</guid>
      <dc:creator />
      <dc:date>2013-01-23T12:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: Salesforce data incremental load issue</title>
      <link>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447343#M699112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Muralidhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of joining directly fetch data and store in resident table and then inner join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temporary:&lt;/P&gt;&lt;P&gt;SQL SELECT PrimaryKey FROM DB_TABLE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inner Join LOAD * RESIDENT Temporary;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE Temporary;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2013 13:22:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447343#M699112</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-01-23T13:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: Salesforce data incremental load issue</title>
      <link>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447344#M699113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even the resident load didn't give much improvement with respect to load times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The work around I have used is (in agreement with business) to run the deleted records logic (inner join) only during the first reload of the day. Rest all reloads follow normal incremental load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only downside of this is, the deleted records of today will only reflect tomorrow in the dashboard. Business are kind of ok with it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks all for your valuable inputs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2013 03:39:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447344#M699113</guid>
      <dc:creator />
      <dc:date>2013-02-01T03:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: Salesforce data incremental load issue</title>
      <link>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447345#M699114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Muralidhar,&lt;/P&gt;&lt;P&gt;I notice that you had successful connecting and extracting data from Salesforce.com table using the demo app from qlikview site.&lt;/P&gt;&lt;P&gt;I was using the same demo app, however connection tested successful but when run the scripts, it return me zero record. I try create select statement but no tables display on my screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using SalesForceDLL.dll version 11 and Qlikview version 11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there additonal requirements to be setup in Salesforce.com?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and appreciates your expert advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Roslan.&lt;/P&gt;&lt;P&gt;my email is &lt;A href="mailto:rlan1308@gmail.com"&gt;rlan1308@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Mar 2013 01:09:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447345#M699114</guid>
      <dc:creator />
      <dc:date>2013-03-08T01:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: Salesforce data incremental load issue</title>
      <link>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447346#M699115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Roslan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please double check the user id that you are using to connect to Salesforce.com has sufficient previllages to read data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Murali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Mar 2013 06:59:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Salesforce-data-incremental-load-issue/m-p/447346#M699115</guid>
      <dc:creator />
      <dc:date>2013-03-08T06:59:11Z</dc:date>
    </item>
  </channel>
</rss>

