<?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: Using LASR Table in data step lookup in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Using-LASR-Table-in-data-step-lookup/m-p/256040#M49014</link>
    <description>&lt;P&gt;found another option, have not yet explored. proc server,&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/shrref/63064/HTML/default/viewer.htm#n1or2nolc2epe5n15pd5arndrqzq.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/shrref/63064/HTML/default/viewer.htm#n1or2nolc2epe5n15pd5arndrqzq.htm&lt;/A&gt;&lt;/P&gt;&lt;TABLE cellspacing="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;thanks for all the help.&lt;/P&gt;</description>
    <pubDate>Fri, 11 Mar 2016 09:03:57 GMT</pubDate>
    <dc:creator>brendanb</dc:creator>
    <dc:date>2016-03-11T09:03:57Z</dc:date>
    <item>
      <title>Using LASR Table in data step lookup</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-LASR-Table-in-data-step-lookup/m-p/255532#M48802</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to be able to use an already LASR loaded table as a lookup table in my data step (hash table lookup). Is this possible?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2016 14:31:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-LASR-Table-in-data-step-lookup/m-p/255532#M48802</guid>
      <dc:creator>brendanb</dc:creator>
      <dc:date>2016-03-09T14:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: Using LASR Table in data step lookup</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-LASR-Table-in-data-step-lookup/m-p/255547#M48808</link>
      <description>&lt;P&gt;Yes it's possible.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Data in LASR is available&amp;nbsp;to you by a libname.&lt;/P&gt;
&lt;P&gt;But (it's kinda big but), be aware of that the whole table&amp;nbsp;will be transferred to your local SAS&amp;nbsp;session where your data step executes. So in this sense, it's not certain&amp;nbsp;that's a advantage to use LASR data (if you are on a remote host to the&amp;nbsp;LASR server).&lt;/P&gt;
&lt;P&gt;What kind of operations is this, and why do you need to use LASR data?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2016 15:08:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-LASR-Table-in-data-step-lookup/m-p/255547#M48808</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-03-09T15:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Using LASR Table in data step lookup</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-LASR-Table-in-data-step-lookup/m-p/255741#M48896</link>
      <description>&lt;P&gt;Hi, thanks,&lt;/P&gt;&lt;P&gt;What I am doing is typical&amp;nbsp;SCD loads, so&amp;nbsp;I will have to figure out new, chg, close records. What I thought of going is to load my dimensions into memory the day before, so that when my new data comes along, and I need to do lookups for SCD,&amp;nbsp;I can save time by avoiding the loads of the&amp;nbsp;lookup table since it was loaded prior to batch start. The only way I thought of pre loading was to load to LASR. The LASR server and workspace on on the same physical machine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, how will this affect my data step code, where I would have loaded the table to memory I now have to point to a LASR table via memory addr/ref????&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; declare hash h0(dataset: "libname.table", hashexp: exponent);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; h0.defineKey( "cd");&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; h0.defineData( "data1");&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; h0.defineDone();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;would be????&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks for the help&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 08:47:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-LASR-Table-in-data-step-lookup/m-p/255741#M48896</guid>
      <dc:creator>brendanb</dc:creator>
      <dc:date>2016-03-10T08:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: Using LASR Table in data step lookup</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-LASR-Table-in-data-step-lookup/m-p/255837#M48923</link>
      <description>Just assign the libname and then you can use the LASR data syntactically as any other data.&lt;BR /&gt;Not knowing your full architecture but using LASR data as input for that type of processing sounds awkward. I LASR as an end station for analysis and reporting, not as input for data management processes. I would use the source for the LASR data as input to your SCD job.</description>
      <pubDate>Thu, 10 Mar 2016 16:35:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-LASR-Table-in-data-step-lookup/m-p/255837#M48923</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-03-10T16:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: Using LASR Table in data step lookup</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-LASR-Table-in-data-step-lookup/m-p/256040#M49014</link>
      <description>&lt;P&gt;found another option, have not yet explored. proc server,&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/shrref/63064/HTML/default/viewer.htm#n1or2nolc2epe5n15pd5arndrqzq.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/shrref/63064/HTML/default/viewer.htm#n1or2nolc2epe5n15pd5arndrqzq.htm&lt;/A&gt;&lt;/P&gt;&lt;TABLE cellspacing="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;thanks for all the help.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2016 09:03:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-LASR-Table-in-data-step-lookup/m-p/256040#M49014</guid>
      <dc:creator>brendanb</dc:creator>
      <dc:date>2016-03-11T09:03:57Z</dc:date>
    </item>
  </channel>
</rss>

