<?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: Data Load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Data-Load/m-p/1537262#M600282</link>
    <description>&lt;P&gt;You can read the link about optimized loads.&lt;/P&gt;&lt;P&gt;Here is an example of concatenating the&amp;nbsp;&lt;SPAN&gt;NCINO_RELATIONSHIP qvds:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;NCINO_RELATIONSHIP_Temp:&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;LOAD distinct&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//[Name]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Id as AccountId,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Date(Floor([LastModifiedDate])) as Account_Last_Modified_Date,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[LLC_BI__Tax_Identification_Number__c] as Record_TaxID&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;from D:\QlikView\Production\Data\NCINO_RELATIONSHIP*.qvd(qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;left join (HAMZA_RECORDS)&lt;BR /&gt;load&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;*&lt;BR /&gt;resident&amp;nbsp;NCINO_RELATIONSHIP_Temp;&lt;BR /&gt;drop table&amp;nbsp;NCINO_RELATIONSHIP_Temp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 30 Jan 2019 14:50:20 GMT</pubDate>
    <dc:creator>m_woolf</dc:creator>
    <dc:date>2019-01-30T14:50:20Z</dc:date>
    <item>
      <title>Data Load</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Load/m-p/1537149#M600278</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I currently am trying to create a data model that doesnt take too long. Currently, I extract data every day from SQL and I store it into a qvd with a date at the end so for example: NCINO_RELATIONSHIP2019-01-12 and then the next day it would be&amp;nbsp;&lt;SPAN&gt;NCINO_RELATIONSHIP2019-01-13. I want to create one large table using these separate qvds. The only problem I get is that it takes very long and when it loads in Legal_Entities it loads in quick. However when I want to join relationship qvd's&amp;nbsp; it says its loading it into HAMZA_RECORDS-1. Is this creating another table or what is happening here?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This is my script:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;HAMZA_RECORDS:&lt;BR /&gt;load distinct&lt;BR /&gt;PROD_DT as [Production Date],&lt;BR /&gt;[LLC_BI__Relationship_Type__c] as Relationship_Type&lt;BR /&gt;,[Relationship_Name_Formula__c] as Record_name&lt;BR /&gt;,[LLC_BI__Account__c] as AccountId&lt;BR /&gt;,Date(Floor([LastModifiedDate])) AS [LastModifiedDate]&lt;BR /&gt;//,[Name] as Account_Name&lt;BR /&gt;,[LLC_BI__Deposit__c] as Relationkey&lt;BR /&gt;,[LLC_BI__Loan__c] as LoanKey&lt;BR /&gt;,[LLC_BI__Borrower_Type__c] as Record_TYPE&lt;BR /&gt;from D:\QlikView\Production\Data\LEGAL_ENTITIES*.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;left join (HAMZA_RECORDS)&lt;BR /&gt;LOAD distinct&lt;BR /&gt;//[Name]&lt;BR /&gt;Id as AccountId,&lt;BR /&gt;Date(Floor([LastModifiedDate])) as Account_Last_Modified_Date,&lt;BR /&gt;[LLC_BI__Tax_Identification_Number__c] as Record_TaxID&lt;BR /&gt;from D:\QlikView\Production\Data\NCINO_RELATIONSHIP*.qvd(qvd);&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 04:37:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Load/m-p/1537149#M600278</guid>
      <dc:creator>hamza99a</dc:creator>
      <dc:date>2024-11-16T04:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: Data Load</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Load/m-p/1537181#M600279</link>
      <description>&lt;P&gt;I have two thoughts on this:&lt;/P&gt;&lt;P&gt;First, your QVD loads are not optimized:&amp;nbsp;&lt;A href="http://www.quickintelligence.co.uk/qlikview-optimised-qvd-loads/" target="_blank"&gt;http://www.quickintelligence.co.uk/qlikview-optimised-qvd-loads/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Second, maybe it would be quicker to concatenate load all of your&amp;nbsp;&lt;SPAN&gt;NCINO_RELATIONSHIP qvds into a resident table and then join to the&amp;nbsp;LEGAL_ENTITIES.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 13:33:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Load/m-p/1537181#M600279</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2019-01-30T13:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: Data Load</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Load/m-p/1537245#M600281</link>
      <description>&lt;P&gt;How would you optimize the qvd load? Also with concatenate could you give me an example? all the examples online include only 2 or 3 tables. How would I concatenate multiple qvd files?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 14:38:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Load/m-p/1537245#M600281</guid>
      <dc:creator>hamza99a</dc:creator>
      <dc:date>2019-01-30T14:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: Data Load</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Load/m-p/1537262#M600282</link>
      <description>&lt;P&gt;You can read the link about optimized loads.&lt;/P&gt;&lt;P&gt;Here is an example of concatenating the&amp;nbsp;&lt;SPAN&gt;NCINO_RELATIONSHIP qvds:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;NCINO_RELATIONSHIP_Temp:&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;LOAD distinct&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//[Name]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Id as AccountId,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Date(Floor([LastModifiedDate])) as Account_Last_Modified_Date,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[LLC_BI__Tax_Identification_Number__c] as Record_TaxID&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;from D:\QlikView\Production\Data\NCINO_RELATIONSHIP*.qvd(qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;left join (HAMZA_RECORDS)&lt;BR /&gt;load&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;*&lt;BR /&gt;resident&amp;nbsp;NCINO_RELATIONSHIP_Temp;&lt;BR /&gt;drop table&amp;nbsp;NCINO_RELATIONSHIP_Temp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 14:50:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Load/m-p/1537262#M600282</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2019-01-30T14:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: Data Load</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Load/m-p/1537303#M600283</link>
      <description>&lt;P&gt;Okay, so after including that code it still seems to hang up at the relationship portion. It did concatenate as the number grew, but it is still getting stuck? Any ideas?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 15:36:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Load/m-p/1537303#M600283</guid>
      <dc:creator>hamza99a</dc:creator>
      <dc:date>2019-01-30T15:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: Data Load</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Load/m-p/1537305#M600284</link>
      <description>&lt;P&gt;When you say it is getting stuck, do you mean that it takes a long time but completes successfully?&lt;/P&gt;&lt;P&gt;Why do you want one large table as appose to two tables that are associatively joined?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 15:41:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Load/m-p/1537305#M600284</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2019-01-30T15:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: Data Load</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Load/m-p/1537803#M600285</link>
      <description>&lt;P&gt;I swtiched it so that it uses the resident and drop table feature in qlikview. However, two days of data takes way too long. I concatenated the tables and when I join to my 1 million rows, it takes very very long. I do not see qvd optimized when the load is in duration as well even though I didnt edit any of the columns when extracting. Is it possible that Qlikview is not fit to join to a million rows?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jan 2019 12:58:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Load/m-p/1537803#M600285</guid>
      <dc:creator>hamza99a</dc:creator>
      <dc:date>2019-01-31T12:58:38Z</dc:date>
    </item>
  </channel>
</rss>

