<?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 browse/print big format in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-browse-print-big-format/m-p/388637#M277406</link>
    <description>&lt;P&gt;What do you mean by "&lt;STRONG&gt;&lt;SPAN&gt;large SAS format(more than 1 G)&lt;/SPAN&gt;&lt;/STRONG&gt;" ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Assuming you have a format of too many lines you can do:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options obs=100;
proc format lib=library cntlout=cntl;
   select format_name;
run;
options obs=max;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Otherwise you may mean a dataset with large number of variables and observations ?&lt;/P&gt;
&lt;P&gt;still use options obs= to limit number of observations.&lt;/P&gt;</description>
    <pubDate>Wed, 16 Aug 2017 21:52:04 GMT</pubDate>
    <dc:creator>Shmuel</dc:creator>
    <dc:date>2017-08-16T21:52:04Z</dc:date>
    <item>
      <title>How to browse/print big format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-browse-print-big-format/m-p/388518#M277403</link>
      <description>&lt;P&gt;Hello all;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a very large SAS format(more than 1 G).I want to look at it. but after I double clicked&amp;nbsp;it the SAS will terminated,the&amp;nbsp;log shows me not enough memory.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How I can browse or print at lease one&amp;nbsp;page&amp;nbsp;of the format?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2017 16:20:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-browse-print-big-format/m-p/388518#M277403</guid>
      <dc:creator>GeorgeSAS</dc:creator>
      <dc:date>2017-08-16T16:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to browse/print big format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-browse-print-big-format/m-p/388530#M277404</link>
      <description>&lt;P&gt;Did you try exporting it to a data set and working with it there?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2017 17:05:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-browse-print-big-format/m-p/388530#M277404</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-08-16T17:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to browse/print big format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-browse-print-big-format/m-p/388546#M277405</link>
      <description>&lt;P&gt;I have to&amp;nbsp;assume this is a continuation of &lt;A href="https://communities.sas.com/t5/General-SAS-Programming/SAS-large-format/m-p/386829#M48966" target="_blank"&gt;https://communities.sas.com/t5/General-SAS-Programming/SAS-large-format/m-p/386829#M48966&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First run proc catalog catalog=library.formats ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; contents;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;with the library your actual library name and if the format is not in the formats catalog then the actual name.&lt;/P&gt;
&lt;P&gt;Post the results here.&lt;/P&gt;
&lt;P&gt;If you get an error then post the log with the code and the entire error message. Best is to use a code box.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since previously you said this was on a mainframe you might need to include JCL if any.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2017 17:29:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-browse-print-big-format/m-p/388546#M277405</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-08-16T17:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to browse/print big format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-browse-print-big-format/m-p/388637#M277406</link>
      <description>&lt;P&gt;What do you mean by "&lt;STRONG&gt;&lt;SPAN&gt;large SAS format(more than 1 G)&lt;/SPAN&gt;&lt;/STRONG&gt;" ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Assuming you have a format of too many lines you can do:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options obs=100;
proc format lib=library cntlout=cntl;
   select format_name;
run;
options obs=max;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Otherwise you may mean a dataset with large number of variables and observations ?&lt;/P&gt;
&lt;P&gt;still use options obs= to limit number of observations.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2017 21:52:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-browse-print-big-format/m-p/388637#M277406</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2017-08-16T21:52:04Z</dc:date>
    </item>
  </channel>
</rss>

