<?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: Change Spaces for all QVD files in Data Movement &amp; Streaming</title>
    <link>https://community.qlik.com/t5/Data-Movement-Streaming/Change-Spaces-for-all-QVD-files/m-p/2053916#M858</link>
    <description>&lt;P&gt;This is great to know , I never thought to append an explicit limit, I will give this a go when I get the chance.&lt;/P&gt;
&lt;P&gt;Thanks Very much for sharing.&lt;/P&gt;</description>
    <pubDate>Tue, 28 Mar 2023 06:51:38 GMT</pubDate>
    <dc:creator>gordon_ash</dc:creator>
    <dc:date>2023-03-28T06:51:38Z</dc:date>
    <item>
      <title>Change Spaces for all QVD files</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Change-Spaces-for-all-QVD-files/m-p/2021597#M679</link>
      <description>&lt;P&gt;Hi folks,&lt;/P&gt;
&lt;P&gt;I have to move all the QVDs from Spaces to the Shared space - I have seen various articles on REST calls, powershell scripts to make API calls - I implemented in Postman a simple to get a list of spaces and although it kind of works it couldn't get all of the spaces we have. I have checked the spaces one by one for permissions and the account I use has all of the permissions available so I don't believe that is the issue - is there a bug in the API or more probably am I calling it incorrectly?&lt;/P&gt;
&lt;P&gt;In postman I use the bearer token, newly created in case that is the issue, then the URl is&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://XXXXX.qlikcloud.com/api/v1/spaces/" target="_blank"&gt;https://XXXXX.qlikcloud.com/api/v1/spaces/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The resulting JSON&amp;nbsp; only pulls 10 spaces but I have&amp;nbsp;30 - is there something else I need to do to get the full list?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 23:06:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Change-Spaces-for-all-QVD-files/m-p/2021597#M679</guid>
      <dc:creator>gordon_ash</dc:creator>
      <dc:date>2025-03-19T23:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: Change Spaces for all QVD files</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Change-Spaces-for-all-QVD-files/m-p/2053546#M849</link>
      <description>&lt;P&gt;I have faced the same issue while getting app list in PowerShell using Qlik-cli. The solution I found was to append --limit [number] at the end of the command. I put a large number so it doesn't miss any app.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, you can write a following command to get list of apps:&lt;/P&gt;
&lt;P&gt;qlik app ls --limit 20&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 11:43:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Change-Spaces-for-all-QVD-files/m-p/2053546#M849</guid>
      <dc:creator>saif_khan</dc:creator>
      <dc:date>2023-03-27T11:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Change Spaces for all QVD files</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Change-Spaces-for-all-QVD-files/m-p/2053617#M850</link>
      <description>&lt;P&gt;Why don't you Load QVD then Store on a different space?&amp;nbsp; &lt;A href="https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptRegularStatements/Store.htm" target="_blank"&gt;https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptRegularStatements/Store.htm&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;Maybe I'm too simply,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;FMa&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 13:47:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Change-Spaces-for-all-QVD-files/m-p/2053617#M850</guid>
      <dc:creator>fmarvnnt</dc:creator>
      <dc:date>2023-03-27T13:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: Change Spaces for all QVD files</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Change-Spaces-for-all-QVD-files/m-p/2053757#M853</link>
      <description>&lt;P&gt;Here's a simple script to move qvds one at a time. You could modify it to loop through all tables in a space.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;//Change variable to name of data file you are moving&lt;BR /&gt;LET vTable = 'QVDName';&lt;BR /&gt;&lt;BR /&gt;[$(vTable)]:&lt;BR /&gt;//Change file path to OLD location you are retrieving the data file from&lt;BR /&gt;LOAD&lt;BR /&gt;*&lt;BR /&gt;FROM [lib://OldSpaceName:DataFiles/$(vTable).qvd]&lt;BR /&gt;(qvd);&lt;BR /&gt;&lt;BR /&gt;//Change file path to NEW location you are storing the data file&lt;BR /&gt;STORE [$(vTable)] INTO [lib://NewSpaceName:DataFiles/$(vTable).qvd];&lt;/PRE&gt;
&lt;P&gt;You will have to delete the qvds from the old space.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 18:29:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Change-Spaces-for-all-QVD-files/m-p/2053757#M853</guid>
      <dc:creator>Kayleigh_Milewski</dc:creator>
      <dc:date>2023-03-27T18:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: Change Spaces for all QVD files</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Change-Spaces-for-all-QVD-files/m-p/2053916#M858</link>
      <description>&lt;P&gt;This is great to know , I never thought to append an explicit limit, I will give this a go when I get the chance.&lt;/P&gt;
&lt;P&gt;Thanks Very much for sharing.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 06:51:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Change-Spaces-for-all-QVD-files/m-p/2053916#M858</guid>
      <dc:creator>gordon_ash</dc:creator>
      <dc:date>2023-03-28T06:51:38Z</dc:date>
    </item>
  </channel>
</rss>

