<?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: Changing the QVD Contents in .Net in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Changing-the-QVD-Contents-in-Net/m-p/658722#M1062224</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried the same code for QVX too, It didn't help me much the same behaviour.&lt;/P&gt;&lt;P&gt;-Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 04 Oct 2014 20:19:00 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-10-04T20:19:00Z</dc:date>
    <item>
      <title>Changing the QVD Contents in .Net</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-the-QVD-Contents-in-Net/m-p/658720#M1062222</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;I wanted to change the name of the field Name in the qvd file programmatically by .Net C#. I'm loading the qvd through the &lt;/P&gt;&lt;P&gt;.Net Program, do the parsing with the XmlDocument,Change the field name and save the qvd with the different filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EVERYTHING WORKS FINE FOR SMALL QVD file(with 3 or 4 rows of data). The contents are intact and field names are changed, but with the bigger qvd's&amp;nbsp; &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;of size 35KB, the contents are changed, its not the same as the original qvd. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.Net code is attached below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; FileStream fs = new FileStream(@"C:\\Work\\QVDExtractor\\myqvd.qvd", FileMode.Open, FileAccess.Read, FileShare.Read);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;StreamReader sr = new StreamReader(fs);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;StringBuilder sb = new StringBuilder();&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.I'm doing all the XMLDom Parsing the change the &amp;lt;FieldName&amp;gt;myfield&amp;lt;/FieldName&amp;gt;&lt;/P&gt;&lt;P&gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sb.Append(sxml); // sxml is the XML after the fieldname is changed.&lt;/P&gt;&lt;P&gt;sb.Append(sr.ReadToEnd());&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using (StreamWriter sw = new StreamWriter(@"C:\\Work\\QVDExtractor\\modified.qvd"))&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; sw.Write(sb.ToString());&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help to solve is greatly appreciated.&lt;/P&gt;&lt;P&gt;-Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Oct 2014 18:33:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-the-QVD-Contents-in-Net/m-p/658720#M1062222</guid>
      <dc:creator />
      <dc:date>2014-10-04T18:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the QVD Contents in .Net</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-the-QVD-Contents-in-Net/m-p/658721#M1062223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think the qvd format is intended to be changed by third party tools.&lt;/P&gt;&lt;P&gt;Maybe you could use qvx instead?&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Oct 2014 20:15:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-the-QVD-Contents-in-Net/m-p/658721#M1062223</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-10-04T20:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the QVD Contents in .Net</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-the-QVD-Contents-in-Net/m-p/658722#M1062224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried the same code for QVX too, It didn't help me much the same behaviour.&lt;/P&gt;&lt;P&gt;-Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Oct 2014 20:19:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-the-QVD-Contents-in-Net/m-p/658722#M1062224</guid>
      <dc:creator />
      <dc:date>2014-10-04T20:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the QVD Contents in .Net</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-the-QVD-Contents-in-Net/m-p/658723#M1062225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, Has anybody got insights to this problem!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Oct 2014 11:11:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-the-QVD-Contents-in-Net/m-p/658723#M1062225</guid>
      <dc:creator />
      <dc:date>2014-10-06T11:11:56Z</dc:date>
    </item>
  </channel>
</rss>

