<?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: generic store path for qvd's in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/generic-store-path-for-qvd-s/m-p/268973#M100919</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I understand what you mean by relative paths, I use them for my QVDs and almost everything else, most commonly like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;DIRECTORY ..\..\server\masterData\QVD;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;[Something]:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;LOAD SomeField&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;FROM SomeFile.qvd (QVD)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this also works fine and is equivalent:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;[Something]:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;LOAD SomeField&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;FROM ..\..\server\masterData\QVD\SomeFile.qvd (QVD)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I agree that you should be using relative paths.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Dec 2011 00:09:56 GMT</pubDate>
    <dc:creator>johnw</dc:creator>
    <dc:date>2011-12-01T00:09:56Z</dc:date>
    <item>
      <title>generic store path for qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/generic-store-path-for-qvd-s/m-p/268968#M100914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good afternoon all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to store an amount of qvd's into a directory. A few things amazed me:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I can not use relative path. The emphasis here might be on 'I'. Maybe there is a way, but I haven't found it;&lt;/P&gt;&lt;P&gt;2. In an attempt to circumvent this problem I tried to SET a path variable. This didn't work; the script crashed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have a solution for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 12:58:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/generic-store-path-for-qvd-s/m-p/268968#M100914</guid>
      <dc:creator />
      <dc:date>2011-11-30T12:58:35Z</dc:date>
    </item>
    <item>
      <title>generic store path for qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/generic-store-path-for-qvd-s/m-p/268969#M100915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I usally use a variable to store the path and the reuse this variable in the STORE statement full qualified path.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 13:01:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/generic-store-path-for-qvd-s/m-p/268969#M100915</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-11-30T13:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: generic store path for qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/generic-store-path-for-qvd-s/m-p/268970#M100916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is what I tried:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET vcQvdPath = I:\Qlikview\Qvds\&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET vcQvdPath = 'I:\Qlikview\Qvds\'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then I declared&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE TableName INTO vcQvdPath &amp;amp; TableName.qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script ran, but no qvd appeared in the directory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What did I do wrong?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 13:05:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/generic-store-path-for-qvd-s/m-p/268970#M100916</guid>
      <dc:creator />
      <dc:date>2011-11-30T13:05:26Z</dc:date>
    </item>
    <item>
      <title>generic store path for qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/generic-store-path-for-qvd-s/m-p/268971#M100917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, I think you need something like&lt;/P&gt;&lt;P&gt;$(vcQvdPath)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to reference the variable, in total &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE TableName INTO $(vcQvdPath)TableName.qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(no Concatenation symbol needed here).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could also look into the directory statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 13:09:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/generic-store-path-for-qvd-s/m-p/268971#M100917</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-11-30T13:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: generic store path for qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/generic-store-path-for-qvd-s/m-p/268972#M100918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brilliant! Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the right syntax takes some practising for me &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 13:15:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/generic-store-path-for-qvd-s/m-p/268972#M100918</guid>
      <dc:creator />
      <dc:date>2011-11-30T13:15:09Z</dc:date>
    </item>
    <item>
      <title>Re: generic store path for qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/generic-store-path-for-qvd-s/m-p/268973#M100919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I understand what you mean by relative paths, I use them for my QVDs and almost everything else, most commonly like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;DIRECTORY ..\..\server\masterData\QVD;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;[Something]:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;LOAD SomeField&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;FROM SomeFile.qvd (QVD)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this also works fine and is equivalent:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;[Something]:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;LOAD SomeField&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;FROM ..\..\server\masterData\QVD\SomeFile.qvd (QVD)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I agree that you should be using relative paths.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2011 00:09:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/generic-store-path-for-qvd-s/m-p/268973#M100919</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2011-12-01T00:09:56Z</dc:date>
    </item>
  </channel>
</rss>

