<?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: Size of work library in SAS EG in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Size-of-work-library-in-SAS-EG/m-p/312212#M21076</link>
    <description>&lt;P&gt;Thanks for the guidance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I find the size of the largest dataset , that exists in my system.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Amit verma&lt;/P&gt;</description>
    <pubDate>Thu, 17 Nov 2016 05:23:20 GMT</pubDate>
    <dc:creator>amitvermajhs</dc:creator>
    <dc:date>2016-11-17T05:23:20Z</dc:date>
    <item>
      <title>Size of work library in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Size-of-work-library-in-SAS-EG/m-p/311947#M21071</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a data size of approx 2 TB , so what should be the size of my work library when I have 4 parallel users on SAS EG.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also have files like SAS_util***********_servername being created in my work library, what are these files for.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Amit Verma&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Nov 2016 10:22:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Size-of-work-library-in-SAS-EG/m-p/311947#M21071</guid>
      <dc:creator>amitvermajhs</dc:creator>
      <dc:date>2016-11-16T10:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: Size of work library in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Size-of-work-library-in-SAS-EG/m-p/311969#M21073</link>
      <description>&lt;P&gt;SAS_util* is the place for utility files that are used during sorts and sql steps.&lt;/P&gt;
&lt;P&gt;Their physical location can be controlled through the utilloc= system option.&lt;/P&gt;
&lt;P&gt;For starters, I'd calculate the size for WORK as&lt;/P&gt;
&lt;P&gt;(size of largest dataset) * 3 * (maximum number of concurrent users)&lt;/P&gt;
&lt;P&gt;Activate (or have activated) the quota system for that filesystem and set reasonable quotas; otherwise one runaway step of a user can stop server functionality for all others.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Nov 2016 12:52:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Size-of-work-library-in-SAS-EG/m-p/311969#M21073</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-11-16T12:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Size of work library in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Size-of-work-library-in-SAS-EG/m-p/312212#M21076</link>
      <description>&lt;P&gt;Thanks for the guidance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I find the size of the largest dataset , that exists in my system.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Amit verma&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2016 05:23:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Size-of-work-library-in-SAS-EG/m-p/312212#M21076</guid>
      <dc:creator>amitvermajhs</dc:creator>
      <dc:date>2016-11-17T05:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: Size of work library in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Size-of-work-library-in-SAS-EG/m-p/312239#M21077</link>
      <description>&lt;P&gt;Using the operating system:&lt;/P&gt;
&lt;P&gt;Determine the physical paths of your libraries.&lt;/P&gt;
&lt;P&gt;Log on to the server (PuTTY or similar), change directory to that locations, and use dir or ls (depending on operating system) *.sas7bdat to display your datasets.&lt;/P&gt;
&lt;P&gt;In UNIX, you can do&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;du -k *.sas7bdat|sort -nr|head&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;(display disk usage for all .sasbdat files, sort numeric reverse by first column, display only the first 10)&lt;/P&gt;
&lt;P&gt;in a given directory.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using SAS:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select
  max(filesize)
from dictionary.tables
group by libname
;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This requires that all libraries on your system are active in your process (libname assigned) at the time you run this.&lt;/P&gt;
&lt;P&gt;dictionary.tables is a virtual table that is built dynamically on request.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2016 07:47:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Size-of-work-library-in-SAS-EG/m-p/312239#M21077</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-11-17T07:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: Size of work library in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Size-of-work-library-in-SAS-EG/m-p/312251#M21078</link>
      <description>&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;Just a confirmation that the size that we receive from the proc output is an Kilobyte ?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2016 09:27:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Size-of-work-library-in-SAS-EG/m-p/312251#M21078</guid>
      <dc:creator>amitvermajhs</dc:creator>
      <dc:date>2016-11-17T09:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Size of work library in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Size-of-work-library-in-SAS-EG/m-p/312255#M21079</link>
      <description>&lt;P&gt;The filesize in dictionary.tables (or sashelp.vtable, which is a view to the same dynamic resource) is in bytes; the output of my UNIX command is in Kbytes, because of the -k commandline parameter.&lt;/P&gt;
&lt;P&gt;Without the -k, du would report disk blocks, which is not that informative, as it may be dependent on individual filesystem parameters.&lt;/P&gt;
&lt;P&gt;If you want to make both outputs comparable, divide the value from dictionary.tables by 1024.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By testing I found that there may be slight differences between the filesize value reported in dictionary.tables and proc contents (proc contents has the correct one). But that is in the range of a few K and therefore negligible.&lt;/P&gt;
&lt;P&gt;There is also a slight difference between file size and the du value, that depends on technical aspects of the filesystem interna. Also negligible.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2016 09:44:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Size-of-work-library-in-SAS-EG/m-p/312255#M21079</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-11-17T09:44:55Z</dc:date>
    </item>
  </channel>
</rss>

