<?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: Autoloading Tables in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Autoloading-Tables/m-p/158291#M772</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Angeliquec,&lt;/P&gt;&lt;P&gt;I only use one source so there no answer.&lt;/P&gt;&lt;P&gt;I use a usergroup to assign the table read/write rights and its easy to control.&lt;/P&gt;&lt;P&gt;I do not understand why you would like to have the tables in multiple metadata folders if this way of easy permission assigning works well.&lt;/P&gt;&lt;P&gt;So no ACT's&amp;nbsp; but just Usergroups with read rights, and assigning users to them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need more information, be my guest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings&amp;nbsp; Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Jun 2014 11:49:00 GMT</pubDate>
    <dc:creator>PeterWijers</dc:creator>
    <dc:date>2014-06-30T11:49:00Z</dc:date>
    <item>
      <title>Autoloading Tables</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Autoloading-Tables/m-p/158289#M770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to autoload tables from multiple sources (from host) to multiple metadata folders directed to a single LASR server?&lt;/P&gt;&lt;P&gt;We'd like to have the tables in different metadata folders for easier changing of permissions for each table. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 14:41:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Autoloading-Tables/m-p/158289#M770</guid>
      <dc:creator>angeliquec</dc:creator>
      <dc:date>2014-06-27T14:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Autoloading Tables</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Autoloading-Tables/m-p/158290#M771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Angeliquec&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this code will help you to load a table automatically from memory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname&amp;nbsp; sas startserver port=10010 tag='hps';&lt;/P&gt;&lt;P&gt;data sas.demo;&lt;/P&gt;&lt;P&gt;set sashelp.demo;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2014 06:19:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Autoloading-Tables/m-p/158290#M771</guid>
      <dc:creator>avinesh</dc:creator>
      <dc:date>2014-06-30T06:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Autoloading Tables</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Autoloading-Tables/m-p/158291#M772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Angeliquec,&lt;/P&gt;&lt;P&gt;I only use one source so there no answer.&lt;/P&gt;&lt;P&gt;I use a usergroup to assign the table read/write rights and its easy to control.&lt;/P&gt;&lt;P&gt;I do not understand why you would like to have the tables in multiple metadata folders if this way of easy permission assigning works well.&lt;/P&gt;&lt;P&gt;So no ACT's&amp;nbsp; but just Usergroups with read rights, and assigning users to them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need more information, be my guest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings&amp;nbsp; Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2014 11:49:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Autoloading-Tables/m-p/158291#M772</guid>
      <dc:creator>PeterWijers</dc:creator>
      <dc:date>2014-06-30T11:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: Autoloading Tables</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Autoloading-Tables/m-p/158292#M773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the responses Avinesh and Peter!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aside from Autoload, I have found another code that not only uploads data to LASR, but also registers the metadata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data valibla.cars;&lt;/P&gt;&lt;P&gt;set sashelp.cars;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc metalib;&lt;/P&gt;&lt;P&gt;omr&lt;/P&gt;&lt;P&gt;(library="/Products/SAS Visual Analytics Administrator/Visual Analytics LASR"); /*Path of the LASR Library - do not change*/&lt;/P&gt;&lt;P&gt;folder="/Shared Data"; &lt;/P&gt;&lt;P&gt;select=("cars");&amp;nbsp; &lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2014 16:31:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Autoloading-Tables/m-p/158292#M773</guid>
      <dc:creator>angeliquec</dc:creator>
      <dc:date>2014-07-02T16:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: Autoloading Tables</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Autoloading-Tables/m-p/158293#M774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Angeliquec, do you have access to the vaag.pdf (SAS-VA 9.4) reload is described by autostart/autoload page 20). It is not vague although this document has that (dutch) name.&lt;/P&gt;&lt;P&gt;Aside from the autoload question your question seems to be an having different user groups using SAS VA needing different access definitions. This can be a mandatory approach with more demanding higher priviledged data (privacy, finance, health) in that case I would advice to review the bisecag also (security admin guide).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your latest posted code is quite common to SAS metadata administration and definition (Bi DI).&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 Jul 2014 17:56:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Autoloading-Tables/m-p/158293#M774</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2014-07-06T17:56:34Z</dc:date>
    </item>
  </channel>
</rss>

