<?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 How i use this in my script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027613#M347182</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;// ******************************************************************&lt;/P&gt;&lt;P&gt;// EmptyQvd is a generic procedure which deletes all records within a&lt;/P&gt;&lt;P&gt;// given QVD file.&lt;/P&gt;&lt;P&gt;// This is especially usefull if you do not need the records within&lt;/P&gt;&lt;P&gt;// this file anymore but do not want to rely on macros/batch-commands&lt;/P&gt;&lt;P&gt;// to delete the file.&lt;/P&gt;&lt;P&gt;// The fields will remain within the QVD file so you will not have any&lt;/P&gt;&lt;P&gt;// problems doing a wildcard load like "LOAD * FROM 'QVD_*.qvd'" ...&lt;/P&gt;&lt;P&gt;//&lt;/P&gt;&lt;P&gt;// ~~&lt;/P&gt;&lt;P&gt;// Usage:&lt;/P&gt;&lt;P&gt;// Call EmptyQvd('Sales_2009_02.qvd') // using a relative path&lt;/P&gt;&lt;P&gt;// or&lt;/P&gt;&lt;P&gt;// Call EmptyQvd('C:\QlikView\Sales_2009_02.qvd') // using an absolute path&lt;/P&gt;&lt;P&gt;//&lt;/P&gt;&lt;P&gt;// ~&lt;/P&gt;&lt;P&gt;// Author: Stefan Walther&lt;/P&gt;&lt;P&gt;// Date: 01/31/2011&lt;/P&gt;&lt;P&gt;// Version 1.0&lt;/P&gt;&lt;P&gt;// ******************************************************************&lt;/P&gt;&lt;P&gt;Sub EmptyQvd(qvdFilePath)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRACE --;&lt;/P&gt;&lt;P&gt;TRACE Start EmptyQvd for file $(qvdFilePath);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// First check if the qvd-file exists&lt;/P&gt;&lt;P&gt;if (not IsNull(QvdCreateTime(qvdFilePath))) then&lt;/P&gt;&lt;P&gt;TRACE ... file exists ...;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Check if the Qvd-file contains more than 0 records&lt;/P&gt;&lt;P&gt;if(QvdNoOfRecords(qvdFilePath) &amp;gt; 0) then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Get one of the fields to create the fake "WHERE EXISTS" clause&lt;/P&gt;&lt;P&gt;LET vFieldName = QvdFieldName(qvdFilePath,1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Now let's create a random value which cannot exist within &lt;/P&gt;&lt;P&gt;// the first field&lt;/P&gt;&lt;P&gt;FakeFieldTable:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;// Create a fake-field which can never be found within &lt;/P&gt;&lt;P&gt;// the existing qvd&lt;/P&gt;&lt;P&gt;'FakeField' &amp;amp; 'ABCDEFGHIJKLMNOPQRSTWXYZ' &amp;amp; &lt;/P&gt;&lt;P&gt;text(round(rand())) as $(vFieldName)&lt;/P&gt;&lt;P&gt;AutoGenerate(1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Create a random table name to prevent collisions with already &lt;/P&gt;&lt;P&gt;// existing tables in memory&lt;/P&gt;&lt;P&gt;LET vTempTableName = '_TempTableName' &amp;amp; &lt;/P&gt;&lt;P&gt;text(round(rand() * pow(9,10)));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Load the existing QVD-file with and EXISTS clause which cannot&lt;/P&gt;&lt;P&gt;// be found within the QVD-file; so the result will be an empty&lt;/P&gt;&lt;P&gt;// inline table with all field definitions of the QVD-file&lt;/P&gt;&lt;P&gt;$(vTempTableName):&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;1 as loadEnabler&lt;/P&gt;&lt;P&gt;FROM '$(qvdFilePath)' (qvd)&lt;/P&gt;&lt;P&gt;WHERE Exists(Dim1)&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Re-Store the QVD-file, just with the field definitions but&lt;/P&gt;&lt;P&gt;// without any data ...&lt;/P&gt;&lt;P&gt;STORE $(vTempTableName) INTO $(qvdFilePath) (qvd);&lt;/P&gt;&lt;P&gt;DROP TABLE $(vTempTableName);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE FakeFieldTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;TRACE ... file '$(qvdFilePath)' does not exist;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRACE finished EmptyQvd;&lt;/P&gt;&lt;P&gt;TRACE --;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&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;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call the script with in your load script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call emptyQvd('.\Sales_2011_10.qvd'); &lt;/P&gt;&lt;P&gt;If a = 0 then&lt;/P&gt;&lt;P&gt;TRACE ... TEST SUCCEEDED: QVD file has 0 records ...;&lt;/P&gt;&lt;P&gt;Else&lt;/P&gt;&lt;P&gt;TRACE ... TEST FAILED: QVD file has $(a) records ... &lt;/P&gt;&lt;P&gt;End if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any one please help me out&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Mar 2016 11:39:14 GMT</pubDate>
    <dc:creator>vipin_mishra479</dc:creator>
    <dc:date>2016-03-08T11:39:14Z</dc:date>
    <item>
      <title>How i use this in my script</title>
      <link>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027613#M347182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;// ******************************************************************&lt;/P&gt;&lt;P&gt;// EmptyQvd is a generic procedure which deletes all records within a&lt;/P&gt;&lt;P&gt;// given QVD file.&lt;/P&gt;&lt;P&gt;// This is especially usefull if you do not need the records within&lt;/P&gt;&lt;P&gt;// this file anymore but do not want to rely on macros/batch-commands&lt;/P&gt;&lt;P&gt;// to delete the file.&lt;/P&gt;&lt;P&gt;// The fields will remain within the QVD file so you will not have any&lt;/P&gt;&lt;P&gt;// problems doing a wildcard load like "LOAD * FROM 'QVD_*.qvd'" ...&lt;/P&gt;&lt;P&gt;//&lt;/P&gt;&lt;P&gt;// ~~&lt;/P&gt;&lt;P&gt;// Usage:&lt;/P&gt;&lt;P&gt;// Call EmptyQvd('Sales_2009_02.qvd') // using a relative path&lt;/P&gt;&lt;P&gt;// or&lt;/P&gt;&lt;P&gt;// Call EmptyQvd('C:\QlikView\Sales_2009_02.qvd') // using an absolute path&lt;/P&gt;&lt;P&gt;//&lt;/P&gt;&lt;P&gt;// ~&lt;/P&gt;&lt;P&gt;// Author: Stefan Walther&lt;/P&gt;&lt;P&gt;// Date: 01/31/2011&lt;/P&gt;&lt;P&gt;// Version 1.0&lt;/P&gt;&lt;P&gt;// ******************************************************************&lt;/P&gt;&lt;P&gt;Sub EmptyQvd(qvdFilePath)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRACE --;&lt;/P&gt;&lt;P&gt;TRACE Start EmptyQvd for file $(qvdFilePath);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// First check if the qvd-file exists&lt;/P&gt;&lt;P&gt;if (not IsNull(QvdCreateTime(qvdFilePath))) then&lt;/P&gt;&lt;P&gt;TRACE ... file exists ...;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Check if the Qvd-file contains more than 0 records&lt;/P&gt;&lt;P&gt;if(QvdNoOfRecords(qvdFilePath) &amp;gt; 0) then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Get one of the fields to create the fake "WHERE EXISTS" clause&lt;/P&gt;&lt;P&gt;LET vFieldName = QvdFieldName(qvdFilePath,1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Now let's create a random value which cannot exist within &lt;/P&gt;&lt;P&gt;// the first field&lt;/P&gt;&lt;P&gt;FakeFieldTable:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;// Create a fake-field which can never be found within &lt;/P&gt;&lt;P&gt;// the existing qvd&lt;/P&gt;&lt;P&gt;'FakeField' &amp;amp; 'ABCDEFGHIJKLMNOPQRSTWXYZ' &amp;amp; &lt;/P&gt;&lt;P&gt;text(round(rand())) as $(vFieldName)&lt;/P&gt;&lt;P&gt;AutoGenerate(1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Create a random table name to prevent collisions with already &lt;/P&gt;&lt;P&gt;// existing tables in memory&lt;/P&gt;&lt;P&gt;LET vTempTableName = '_TempTableName' &amp;amp; &lt;/P&gt;&lt;P&gt;text(round(rand() * pow(9,10)));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Load the existing QVD-file with and EXISTS clause which cannot&lt;/P&gt;&lt;P&gt;// be found within the QVD-file; so the result will be an empty&lt;/P&gt;&lt;P&gt;// inline table with all field definitions of the QVD-file&lt;/P&gt;&lt;P&gt;$(vTempTableName):&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;1 as loadEnabler&lt;/P&gt;&lt;P&gt;FROM '$(qvdFilePath)' (qvd)&lt;/P&gt;&lt;P&gt;WHERE Exists(Dim1)&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Re-Store the QVD-file, just with the field definitions but&lt;/P&gt;&lt;P&gt;// without any data ...&lt;/P&gt;&lt;P&gt;STORE $(vTempTableName) INTO $(qvdFilePath) (qvd);&lt;/P&gt;&lt;P&gt;DROP TABLE $(vTempTableName);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE FakeFieldTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;TRACE ... file '$(qvdFilePath)' does not exist;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRACE finished EmptyQvd;&lt;/P&gt;&lt;P&gt;TRACE --;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&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;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call the script with in your load script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call emptyQvd('.\Sales_2011_10.qvd'); &lt;/P&gt;&lt;P&gt;If a = 0 then&lt;/P&gt;&lt;P&gt;TRACE ... TEST SUCCEEDED: QVD file has 0 records ...;&lt;/P&gt;&lt;P&gt;Else&lt;/P&gt;&lt;P&gt;TRACE ... TEST FAILED: QVD file has $(a) records ... &lt;/P&gt;&lt;P&gt;End if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any one please help me out&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 11:39:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027613#M347182</guid>
      <dc:creator>vipin_mishra479</dc:creator>
      <dc:date>2016-03-08T11:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: How i use this in my script</title>
      <link>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027614#M347183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there something in particular you are having difficulty re using this script&amp;nbsp; ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 11:45:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027614#M347183</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-08T11:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: How i use this in my script</title>
      <link>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027615#M347184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/18950"&gt;call sub from script issue&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 11:46:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027615#M347184</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2016-03-08T11:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: How i use this in my script</title>
      <link>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027616#M347185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bill &amp;amp; Avinash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically my requirement is i just want to delete my all qvd before reload my application and I read 1 blog whereis mention that my requirement but when i try it in my script i am not rectify it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blog - &lt;A href="http://www.qlikblog.at/929/qliktip-30/" title="http://www.qlikblog.at/929/qliktip-30/"&gt;QlikTip #30: How to delete existing QVD files via load-script&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 11:51:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027616#M347185</guid>
      <dc:creator>vipin_mishra479</dc:creator>
      <dc:date>2016-03-08T11:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: How i use this in my script</title>
      <link>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027617#M347186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could share a sample qvw that demonstrates your issue ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 11:58:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027617#M347186</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-08T11:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: How i use this in my script</title>
      <link>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027618#M347187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't have any Specific sample file &lt;/P&gt;&lt;P&gt;requirement is like that I have a 1 Qvw file like Sample Qvw&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this file 1st time i load my data and store a qvd A1.qvd and once i load in second time i store qvd A2.qvd So every day my Qvd will change So thats whay i want delete my all qvd before reload and get only 1 qvd in my qvd folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply Bill&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 12:05:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027618#M347187</guid>
      <dc:creator>vipin_mishra479</dc:creator>
      <dc:date>2016-03-08T12:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: How i use this in my script</title>
      <link>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027619#M347188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why not simply keep the output qvd file name the same and then when you do the qvd store the 2nd and subsequent time it will simply overwrite any existing qvd.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 12:11:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027619#M347188</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-08T12:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: How i use this in my script</title>
      <link>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027620#M347189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This can also be done in a simpler way. For example by putting your QVD's by default in a single directory and using the EXECUTE; statement. And optionally a few loop constructs if you want to walk through a number of different (sub)directories.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LET vPath = 'C:\Temp\MyProject\Data\';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;EXECUTE CMD.EXE DEL "$(vPath)\*.QVD";&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 12:12:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027620#M347189</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-03-08T12:12:30Z</dc:date>
    </item>
    <item>
      <title>Re: How i use this in my script</title>
      <link>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027621#M347190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter Thanks for reply but i can not use batch in my application there are restriction issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Bill Actually what Every day i have load my application then i get one ID (like ID = 236) for each ID i have multiple (300 or 500) business rule like (1,5,9,11,13,15....) for each business rule i create a qvd if i am not create qvd then load script will failed so that i create qvd.&lt;/P&gt;&lt;P&gt;every day i load my application and every day i get Different ID so thats why i need to before reload my application i delete my all qvd.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Mar 2016 09:06:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-i-use-this-in-my-script/m-p/1027621#M347190</guid>
      <dc:creator>vipin_mishra479</dc:creator>
      <dc:date>2016-03-09T09:06:52Z</dc:date>
    </item>
  </channel>
</rss>

