<?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: How to open a sas data set with 25 000 000 observations in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499897#M32129</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Hello Kurt, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;this is the first time I work with a table sas of this size. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Now that I have my synthetic data, I have to validate two programs that I have produced. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The first program uses an audit file to validate the data. The second program converts the data into an xml file. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So far, I have tested with 2 million observations. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Will SAS be able to handle such a big table or would it be more prudent to break it up? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;We also have a SAS version on a unix server but as I do not have access to the server yet, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have not done any tests to see if we have an increase of efficiency mostly in term of capability to work with a huge table&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;and in term of time.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 28 Sep 2018 13:41:48 GMT</pubDate>
    <dc:creator>alepage</dc:creator>
    <dc:date>2018-09-28T13:41:48Z</dc:date>
    <item>
      <title>How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499853#M32115</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wrote a program to generate data .&amp;nbsp; it works well.&lt;/P&gt;&lt;P&gt;Now I have a data set containing normally 25 000 000 of observations.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have try the code below to open the data set and after 20 minutes, it is still running.&lt;/P&gt;&lt;P&gt;Does someone has already work with huge data set?&lt;/P&gt;&lt;P&gt;Is there particular options I should adjust or extra instructions to add to my code?&lt;/P&gt;&lt;P&gt;Thanks in advance for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;libname&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; mywork &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"\\....\Documents\My SAS Files\work"&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;Data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; Temp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;set&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; mywork.d2_..._ent;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 12:20:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499853#M32115</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2018-09-28T12:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499856#M32116</link>
      <description>&lt;P&gt;You are not just opening the dataset, you are opening it, reading every observation, then writing every observation back to the disk.&amp;nbsp; Hence why it is taking a long time as 25mil obs is a fair bit.&amp;nbsp; Why are you just doing a datastep to open, read/write the data, thats just a waste of processing and read/write time?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 12:31:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499856#M32116</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-09-28T12:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499857#M32117</link>
      <description>&lt;P&gt;I'm not sure what your goal is here.&amp;nbsp; The code you shared does not simply&amp;nbsp;&lt;STRONG&gt;open&lt;/STRONG&gt; your data set (which would be quick), but it's copying it from the source location to your WORK library. (That's what the SET statement does -- it brings in all of the records from the data set that you name into the current data set you're creating.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's not needed unless you plan to change/adjust the data for further work in your process.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For a quick view, try:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=mywork.d2_..._ent (obs=100);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If using SAS Enterprise Guide, you can use the Server List to navigate to the MYWORK library and just add the data set to your project.&amp;nbsp; It should open quickly and show you the first few pages of records.&amp;nbsp; You can scroll through as needed.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 12:32:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499857#M32117</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2018-09-28T12:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499860#M32118</link>
      <description>&lt;P&gt;Since mywork resides on a remote share, you will have the network as bottleneck. Do you have an idea about the observation size (as observation number * observation size will give us a clue about the physical file size)?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 12:33:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499860#M32118</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-09-28T12:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499867#M32119</link>
      <description>&lt;P&gt;121 033 080 ko&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 12:44:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499867#M32119</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2018-09-28T12:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499870#M32120</link>
      <description>&lt;P&gt;What is "ko"?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And whatever "ko" is, 121 million of it for a single observation sounds not right to me at all.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 12:47:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499870#M32120</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-09-28T12:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499875#M32121</link>
      <description>&lt;P&gt;121 giga octects&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 12:52:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499875#M32121</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2018-09-28T12:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499877#M32122</link>
      <description>&lt;P&gt;Why do you want to copy the whole dataset into work? Do the process on the permanent dataset instead of copying it into temp work location.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also consider options like compress the dataset while storing, use keep= or Drop= to get the required variables, obs= to limit the records to read, sub-setting the dataset.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 12:57:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499877#M32122</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-09-28T12:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499887#M32124</link>
      <description>&lt;P&gt;So you are reading 121 GB across a network. If you have a bandwidth of 1 Gbit/s, which translates (at best) to 100 MB/s, you'll have 121 * 10 seconds = 1210, or roughly 20 minutes. For the raw data transfer, without any communication overhead. Expect slower rates in the real world.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's why it is always a VERY BAD IDEA to assign libnames on remote shares (unless you're dealing with small data in the ~100 MB range). If you need distributed storage, set up a Storage Area Network with fibre optics; the volumes will appear as local disks in your file system.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 13:19:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499887#M32124</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-09-28T13:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499897#M32129</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello Kurt, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;this is the first time I work with a table sas of this size. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Now that I have my synthetic data, I have to validate two programs that I have produced. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The first program uses an audit file to validate the data. The second program converts the data into an xml file. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So far, I have tested with 2 million observations. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Will SAS be able to handle such a big table or would it be more prudent to break it up? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;We also have a SAS version on a unix server but as I do not have access to the server yet, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have not done any tests to see if we have an increase of efficiency mostly in term of capability to work with a huge table&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;and in term of time.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 13:41:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499897#M32129</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2018-09-28T13:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499906#M32130</link>
      <description>&lt;P&gt;It's a simple problem of the right tool for the right job. Given that there is a (most probably) powerful UNIX server already present, you'll have a hard time to convince people to give you a high-end workstation with striped multi-terabyte SSD's, which would immediately alleviate the throughput problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS itself does not really have limitations.&lt;/P&gt;
&lt;P&gt;Actually, they are so ridiculously high these days (64 bit systems) in number of observations, number of bytes per observation, and physical filesizes that they don't matter. The maximum number of observations in a 64-bit environment is 9.2 quintillion (needed to go to wikipedia to find out how much that is).&lt;/P&gt;
&lt;P&gt;What will limit you mainly is the available disk space, and the I/O bandwidth of your storage. Second to that is CPU power and available memory.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So I suggest you do tests on your desktop with smaller data (using only local disks!), and then move your verified code to the server for mass-data processing.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 13:57:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499906#M32130</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-09-28T13:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499910#M32131</link>
      <description>&lt;P&gt;Do bear in mind that you have a binary file - the SAS dataset - and that&amp;nbsp;XML is a verbose file format.&amp;nbsp; Moving the data from a dataset to an XML file, will likely increaste the overall size of the file quite considerably, and I mean quite considerably - by factors of size.&amp;nbsp; So that probably isn't the best approach to getting the data in that format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 14:10:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/499910#M32131</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-09-28T14:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/500563#M32141</link>
      <description>&lt;P&gt;When working with really large data, we also highly recommend unchecking &lt;STRONG&gt;Automatically open data when added to project&lt;/STRONG&gt; (in EG's Tools-&amp;gt;Options-&amp;gt;Data-&amp;gt;Data General) and &lt;STRONG&gt;Automatically open data or results when generated&lt;/STRONG&gt; (in EG's Tools-&amp;gt;Options-&amp;gt;Results-&amp;gt;Results General).&amp;nbsp; Opening really large data can be very expensive, so it is better for the user to request it explicitly (with the knowledge that it could take awhile) than automatically.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Casey&lt;/P&gt;</description>
      <pubDate>Mon, 01 Oct 2018 21:33:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/500563#M32141</guid>
      <dc:creator>CaseySmith</dc:creator>
      <dc:date>2018-10-01T21:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/500704#M32142</link>
      <description>&lt;P&gt;Thank for your advice. I will test it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the same line of though, I would like to know if it is possible to obtains a data set on the work server but not showed in the SAS window (See in French the window donnees de sortie, attached file).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 12:24:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/500704#M32142</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2018-10-02T12:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/500710#M32143</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/76331"&gt;@alepage&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank for your advice. I will test it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the same line of though, I would like to know if it is possible to obtains a data set on the work server but not showed in the SAS window (See in French the window donnees de sortie, attached file).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Why would you want that? With the right setting, it would not open automatically, but you can still view it if you want so. Without that, you'd need an extra run of proc print, and that is more (and unnecessary) work than just clicking on the tab.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 12:38:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/500710#M32143</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-10-02T12:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/500715#M32144</link>
      <description>&lt;P&gt;&lt;SPAN&gt;You're right Kurt. I should have been more specific in my questions. I was referring to the program I developed to generate the synthetic data. In fact, I thought that the execution time of this program would be shorter if we saved the data directly on the server without showing it in the SAS window. Maybe I do not understand the SAS interface and how it works.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 12:48:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/500715#M32144</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2018-10-02T12:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/500717#M32145</link>
      <description>&lt;P&gt;Everything you do in your code happens in the context of the workspace server. So, unless you define a library on a remote share (or write an external file to one), nothing crosses the network except the code, the log and the results that are sent back to Enterprise Guide. And dataset data as soon as you open it, or have it automatically opened.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 13:00:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/500717#M32145</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-10-02T13:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to open a sas data set with 25 000 000 observations</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/500719#M32146</link>
      <description>&lt;P&gt;I see.&amp;nbsp; Thank for help.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;alepage&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 13:13:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-open-a-sas-data-set-with-25-000-000-observations/m-p/500719#M32146</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2018-10-02T13:13:08Z</dc:date>
    </item>
  </channel>
</rss>

