<?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: Insert and Replace in QVD in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Insert-and-Replace-in-QVD/m-p/344752#M1172022</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gerhardl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I think you need to do as Jason pointed out.&lt;/P&gt;&lt;P&gt;Since the Account details change you need to run it every day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe, if possible, you can load only the changed Accounts and load them into QV first.&lt;/P&gt;&lt;P&gt;ie.&lt;/P&gt;&lt;P&gt;Accounts:&lt;/P&gt;&lt;P&gt;LOAD ChangedAccounts;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (Accounts)&lt;/P&gt;&lt;P&gt;LOAD AllAccounts Where NOT Exists (AccountID);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or maybe it's just quicker to do a total load every day, you'll have to verify that.&lt;/P&gt;&lt;P&gt;And also, my understanding is that you're doing a proof of concept kind of application, so maybe it's not cruical if the load takes a bit longer. In the real world, when loading from database, it is very convenient to implement an incremental load just as Jason pointed out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/21613"&gt;Magnus Åvitsland&lt;/A&gt;&lt;/P&gt;&lt;P&gt;BI Consultant&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.framsteg.com" target="_blank"&gt;Framsteg Business Intelligence Corp.&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Jul 2012 07:54:13 GMT</pubDate>
    <dc:creator>magavi_framsteg</dc:creator>
    <dc:date>2012-07-11T07:54:13Z</dc:date>
    <item>
      <title>Insert and Replace in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Insert-and-Replace-in-QVD/m-p/344749#M1172012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I load the following files into a QV Master File:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Daily Account Extract (about 500,000 records, growing daily). I replace this daily with a NEW file.&lt;/P&gt;&lt;P&gt;Daily Transaction Extracts. I load all historical extracts. Currently about 3 million records. Older extracts tored as QVD, to which I concatenate new daily files. Then I update the QVD file every month or so to keep my script load time short.&lt;/P&gt;&lt;P&gt;Daily ApplicationExtracts. I load all historical extracts. Currently about 500,000records. Older extracts tored as QVD, to which I concatenate new daily files. Then I update the QVD file every month or so to keep my script load time short.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The QVD's run quickly - the most of the script run time is spent on the account extract.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I somehow store a QVD of the account extract, then replace the extract daily, but when I run the script, it does an insert and replace type thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it will add all new records (new accounts) that are NOT in the QVD, and it will replace all fields that are different to that of the QVD file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gerhard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 06:59:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Insert-and-Replace-in-QVD/m-p/344749#M1172012</guid>
      <dc:creator>gerhardl</dc:creator>
      <dc:date>2012-07-11T06:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: Insert and Replace in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Insert-and-Replace-in-QVD/m-p/344750#M1172015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is normally done with a LastModifiedDate and ID in your data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//first load modified records from the DB - this will get new and updated rows&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; ID, &lt;/P&gt;&lt;P&gt;&amp;nbsp; Blah,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Blah2,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Blah3,&lt;/P&gt;&lt;P&gt;; SQL....&lt;/P&gt;&lt;P&gt;WHERE LastModifiedDate &amp;gt; $(vLastUpdated);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//now load data from your QVD file that isn't in the above load&lt;/P&gt;&lt;P&gt;Concatenate (Data)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * FROM Data.qvd(qvd) WHERE NOT EXISTS(ID);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//wrote back to the qvd file&lt;/P&gt;&lt;P&gt;STORE Data INTO Data.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 07:22:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Insert-and-Replace-in-QVD/m-p/344750#M1172015</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-07-11T07:22:39Z</dc:date>
    </item>
    <item>
      <title>Re: Insert and Replace in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Insert-and-Replace-in-QVD/m-p/344751#M1172018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jason, thanks for the response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't think I explained properly though:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't load directly from a database. I am still trying to get the entire company on board with QlikView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Our system does a batch run every morning and generates reports, which are mostly text files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Account Extract, Transaction and Application extracts are text files, which I then copy to my local drive and my script loads from there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the account extract is basically a daily snapshot of our client base. For old exisiting accounts, the data might change daily (obviously the account number and most of the customer detail will remain constant, but a lot of fields will change daily, like "last payment date" and "amount in arrears" etc.). And accounts opened the previous day will be new records in the extract.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I replace the account extract every day and load the newest one - so I don't really have a "last update" or "last modified" to look at.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe I'm misunderstanding you though - I'm still learning all this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 07:36:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Insert-and-Replace-in-QVD/m-p/344751#M1172018</guid>
      <dc:creator>gerhardl</dc:creator>
      <dc:date>2012-07-11T07:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: Insert and Replace in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Insert-and-Replace-in-QVD/m-p/344752#M1172022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gerhardl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I think you need to do as Jason pointed out.&lt;/P&gt;&lt;P&gt;Since the Account details change you need to run it every day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe, if possible, you can load only the changed Accounts and load them into QV first.&lt;/P&gt;&lt;P&gt;ie.&lt;/P&gt;&lt;P&gt;Accounts:&lt;/P&gt;&lt;P&gt;LOAD ChangedAccounts;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (Accounts)&lt;/P&gt;&lt;P&gt;LOAD AllAccounts Where NOT Exists (AccountID);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or maybe it's just quicker to do a total load every day, you'll have to verify that.&lt;/P&gt;&lt;P&gt;And also, my understanding is that you're doing a proof of concept kind of application, so maybe it's not cruical if the load takes a bit longer. In the real world, when loading from database, it is very convenient to implement an incremental load just as Jason pointed out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/21613"&gt;Magnus Åvitsland&lt;/A&gt;&lt;/P&gt;&lt;P&gt;BI Consultant&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.framsteg.com" target="_blank"&gt;Framsteg Business Intelligence Corp.&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 07:54:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Insert-and-Replace-in-QVD/m-p/344752#M1172022</guid>
      <dc:creator>magavi_framsteg</dc:creator>
      <dc:date>2012-07-11T07:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: Insert and Replace in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Insert-and-Replace-in-QVD/m-p/344753#M1172026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Magnus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have no way of identifying the changed accounts myself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Okay - I think I will stick to loading the full, replaced file every day for now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you both&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 07:59:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Insert-and-Replace-in-QVD/m-p/344753#M1172026</guid>
      <dc:creator>gerhardl</dc:creator>
      <dc:date>2012-07-11T07:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: Insert and Replace in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Insert-and-Replace-in-QVD/m-p/344754#M1172029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There's always a way....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have worked with this type of situation before - where records change but I have no way of knowing which ones have.&amp;nbsp; So, I built a concatenated string of every field that is likely to change, wrapped it in Hash128() to keep it smaller (you may need to use Hash192() as your recordset is quite large) and used this is my marker for the EXISTS() function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//This is your INITIAL, FULL load - just done once to create your initial QVD file&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; Hash128(ChangingField1 &amp;amp; '/' &amp;amp; ChangingField2 &amp;amp; '/' &amp;amp; ChangingField3 &amp;amp; '/'...etc)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; KEY,&lt;/P&gt;&lt;P&gt;&amp;nbsp; ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Blah,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Blah2,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Blah3,&lt;/P&gt;&lt;P&gt;FROM your text file;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//write to the qvd file&lt;/P&gt;&lt;P&gt;STORE Data INTO Data.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now onto the daily work...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//first, load the QVD file into memory&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD * FROM Data.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Then, load NEW and UPDATED records from the text file&lt;/P&gt;&lt;P&gt;Concatenate (Data)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; Hash128(ChangingField1 &amp;amp; '/' &amp;amp; ChangingField2 &amp;amp; '/' &amp;amp; ChangingField3 &amp;amp; '/'...etc)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; KEY,&lt;/P&gt;&lt;P&gt;&amp;nbsp; ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Blah,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Blah2,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Blah3,&lt;/P&gt;&lt;P&gt;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NewOrUpdatedFlag&lt;/P&gt;&lt;P&gt;FROM your text file&lt;/P&gt;&lt;P&gt;WHERE NOT EXISTS(KEY,Hash128(ChangingField1 &amp;amp; '/' &amp;amp; ChangingField2 &amp;amp; '/' &amp;amp; ChangingField3 &amp;amp; '/'...etc));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//so, now you have all yesterday's records, plus any new and changed records .&lt;/P&gt;&lt;P&gt;//HOWEVER,changed records now exist in both their old AND new incarnations.&lt;/P&gt;&lt;P&gt;//So, we must now delete the old records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;This bit I haven't worked out yet and have run out of time! Will complete later if you haven't worked it out before me!&amp;nbsp; Trying to avoid another RESIDENT load with ORDER BY as that will be slow...&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//wrote back to the qvd file&lt;/P&gt;&lt;P&gt;STORE Data INTO Data.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 09:12:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Insert-and-Replace-in-QVD/m-p/344754#M1172029</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-07-11T09:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: Insert and Replace in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Insert-and-Replace-in-QVD/m-p/344755#M1172032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I like the optimism!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That looks insanely complicated though... especially with the size of my script as it is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//Account Extract:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load &lt;/STRONG&gt;&lt;SPAN style="text-decoration: underline;"&gt;&amp;lt;about 150 fields&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;From &lt;/STRONG&gt;&lt;SPAN style="text-decoration: underline;"&gt;&amp;lt;my text file which I replace daily with the newest file. It is possible that &lt;STRONG&gt;ANY &lt;/STRONG&gt;field can change, except for the &lt;STRONG&gt;Account No&lt;/STRONG&gt;&amp;gt; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//Transaction Extracts:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TranQVD:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load * From TranQVD.qvd(qvd);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate(TranQVD)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD &lt;/STRONG&gt;&amp;lt;about 30 fields&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM &lt;/STRONG&gt;&amp;lt;a folder full of text files&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where exists( [Account No]);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//Funeral Policy Holder Extracts:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD &lt;/STRONG&gt;&amp;lt;about 20 fields&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM &lt;/STRONG&gt;&amp;lt;a text file I also replace every day - small file so I'm happy to do full load daily&amp;gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//Application Extracts&lt;/EM&gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;AppsQVD:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load * From AppsQVD.qvd (qvd);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;concatenate(AppsQVD)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD &lt;/STRONG&gt;&amp;lt;about 90 fields&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM &lt;/STRONG&gt;&amp;lt;a folder full of text files&amp;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;If you figure it out ot would really help me if you can edit the above to show what it should look like - I'm going to see how far I get with your above comments.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Account Extract, Transaction Extract and FPH Extract the [Account No] will be KEY field.&lt;/P&gt;&lt;P&gt;In the Account Extract and Application Extract the [Appl No] is a KEY field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 09:31:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Insert-and-Replace-in-QVD/m-p/344755#M1172032</guid>
      <dc:creator>gerhardl</dc:creator>
      <dc:date>2012-07-11T09:31:11Z</dc:date>
    </item>
  </channel>
</rss>

