<?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: Upload SAS Library to LASR in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Upload-SAS-Library-to-LASR/m-p/875888#M17211</link>
    <description>&lt;P&gt;If you use SAS code to load into LASR memory then I find this way works well.&lt;/P&gt;
&lt;P&gt;Note you have to delete a table before reloading it and once it is loaded it must be registered in SAS metadata to be usable.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;* If table already loaded then delete first.;
proc datasets library = LASRLIB nolist;
  delete MyLASRTable;
run;
quit;

* Now reload latest table.;
data LASRLIB.MyLASRTable;
  set MyLoadLib.MyLASRTable;
run;

* Register or update LASR table in metadata. ;
 proc metalib;
   omr (library = "LASRLIB");
   folder       = "/Shared Data/SAS Visual Analytics/Public/LASR";
   select       = ("MyLASRTable");
   update_rule = (delete);
 run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 15 May 2023 20:16:15 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2023-05-15T20:16:15Z</dc:date>
    <item>
      <title>Upload SAS Library to LASR</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Upload-SAS-Library-to-LASR/m-p/875811#M17208</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In SAS Studio, I connected to my SSAS Cube using oledb with&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;libname test oledb init_string="Provider=MSOLAP.8;....";&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the TEST Library was created successfully in SAS Studio, now i'm trying to load this library to LASR.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can Anyone help ?&lt;/P&gt;</description>
      <pubDate>Mon, 15 May 2023 13:42:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Upload-SAS-Library-to-LASR/m-p/875811#M17208</guid>
      <dc:creator>Achraf_Ougdal</dc:creator>
      <dc:date>2023-05-15T13:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Upload SAS Library to LASR</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Upload-SAS-Library-to-LASR/m-p/875888#M17211</link>
      <description>&lt;P&gt;If you use SAS code to load into LASR memory then I find this way works well.&lt;/P&gt;
&lt;P&gt;Note you have to delete a table before reloading it and once it is loaded it must be registered in SAS metadata to be usable.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;* If table already loaded then delete first.;
proc datasets library = LASRLIB nolist;
  delete MyLASRTable;
run;
quit;

* Now reload latest table.;
data LASRLIB.MyLASRTable;
  set MyLoadLib.MyLASRTable;
run;

* Register or update LASR table in metadata. ;
 proc metalib;
   omr (library = "LASRLIB");
   folder       = "/Shared Data/SAS Visual Analytics/Public/LASR";
   select       = ("MyLASRTable");
   update_rule = (delete);
 run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 May 2023 20:16:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Upload-SAS-Library-to-LASR/m-p/875888#M17211</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-05-15T20:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: Upload SAS Library to LASR</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Upload-SAS-Library-to-LASR/m-p/875981#M17212</link>
      <description>&lt;P&gt;While it is possible to define a library reference to Microsoft using OLEDB, I am not aware of any way to load MS cubes to LASR for use in Visual Analytics.&amp;nbsp; You can define access to third party cubes using Enterprise Guide per&amp;nbsp;&lt;A href="http://support.sas.com/kb/41722" target="_blank"&gt;http://support.sas.com/kb/41722&lt;/A&gt;&amp;nbsp;.&amp;nbsp; This would allow you to use SAS Enterprise Guide to navigate your SSAS cubes.&lt;/P&gt;</description>
      <pubDate>Tue, 16 May 2023 12:16:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Upload-SAS-Library-to-LASR/m-p/875981#M17212</guid>
      <dc:creator>TSBruce</dc:creator>
      <dc:date>2023-05-16T12:16:10Z</dc:date>
    </item>
  </channel>
</rss>

