<?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: Set libname defaults in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Set-libname-defaults/m-p/887399#M43395</link>
    <description>&lt;P&gt;Thanks you for the response!&lt;/P&gt;&lt;P&gt;I'm looking for an option to increase the default. Maybe somewhere in the config files? So far I've tried increasing BUFFSIZE, but that didn't help.&lt;/P&gt;</description>
    <pubDate>Tue, 01 Aug 2023 22:19:47 GMT</pubDate>
    <dc:creator>Naz10</dc:creator>
    <dc:date>2023-08-01T22:19:47Z</dc:date>
    <item>
      <title>Set libname defaults</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Set-libname-defaults/m-p/887393#M43393</link>
      <description>&lt;P&gt;How can I change defaults in the libname statement? The default option for READBUFF is 250 rows. How can I increase it without having to specify it in the libname statement?&lt;/P&gt;&lt;P&gt;Here is the link for the readbuff option for reference:&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/n0uefiwns2056ln1bo8ukykj2724.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/n0uefiwns2056ln1bo8ukykj2724.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 21:31:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Set-libname-defaults/m-p/887393#M43393</guid>
      <dc:creator>Naz10</dc:creator>
      <dc:date>2023-08-01T21:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Set libname defaults</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Set-libname-defaults/m-p/887395#M43394</link>
      <description>&lt;P&gt;It's usually easiest to specify it on the libname statement. But, as the docs you linked to show that it is also a data set option, you can specify it when you read in a data set as well, e.g.:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  set mydb.have (readbuff=1000);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;where mydb is a libref pointing to a library with some SAS/ACCESS engine that supports readbuff.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 21:56:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Set-libname-defaults/m-p/887395#M43394</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2023-08-01T21:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: Set libname defaults</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Set-libname-defaults/m-p/887399#M43395</link>
      <description>&lt;P&gt;Thanks you for the response!&lt;/P&gt;&lt;P&gt;I'm looking for an option to increase the default. Maybe somewhere in the config files? So far I've tried increasing BUFFSIZE, but that didn't help.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 22:19:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Set-libname-defaults/m-p/887399#M43395</guid>
      <dc:creator>Naz10</dc:creator>
      <dc:date>2023-08-01T22:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: Set libname defaults</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Set-libname-defaults/m-p/887401#M43396</link>
      <description>BUFSIZE is a system option, but READBUFF is not. I think READBUFF is only a libname option and a data set option.  I think each SAS/ACCESS engine will have its own READBUFF default, appropriate for the engine. I don’t think there is a concept of a global READBUFF option.&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Aug 2023 22:28:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Set-libname-defaults/m-p/887401#M43396</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2023-08-01T22:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: Set libname defaults</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Set-libname-defaults/m-p/887404#M43397</link>
      <description>&lt;P&gt;Is there a way to modify READBUFF default for Oracle SAS/ACCESS engine?&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 22:52:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Set-libname-defaults/m-p/887404#M43397</guid>
      <dc:creator>Naz10</dc:creator>
      <dc:date>2023-08-01T22:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: Set libname defaults</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Set-libname-defaults/m-p/887405#M43398</link>
      <description>&lt;P&gt;AFAIK, there is no way of setting a default value globally for READBUFF across any following LIBNAMEs. In fact I would caution against changing this from the default unless testing has proved that it improves performance. In my experience I've only changed the default in external database LIBNAMEs.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 22:55:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Set-libname-defaults/m-p/887405#M43398</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-08-01T22:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Set libname defaults</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Set-libname-defaults/m-p/887406#M43399</link>
      <description>&lt;P&gt;Only by specifying it on the Oracle LIBNAME or CONNECT statement.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 22:57:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Set-libname-defaults/m-p/887406#M43399</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-08-01T22:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: Set libname defaults</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Set-libname-defaults/m-p/887407#M43400</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/294167"&gt;@Naz10&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Is there a way to modify READBUFF default for Oracle SAS/ACCESS engine?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I'm pretty sure the answer is NO.&lt;/P&gt;
&lt;P&gt;Often such DB access uses a functional user via an authdomain. If that's also the case for you then I'd define this library once in SAS Metadata and there you define all the options you like.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I normally change the defaults for:&lt;/P&gt;
&lt;P&gt;readbuff&lt;/P&gt;
&lt;P&gt;insertbuff&lt;/P&gt;
&lt;P&gt;dbcommit&lt;/P&gt;
&lt;P&gt;dbmaxtext&lt;/P&gt;
&lt;P&gt;and pre-assign the library but set option defer=yes&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 23:08:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Set-libname-defaults/m-p/887407#M43400</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2023-08-01T23:08:42Z</dc:date>
    </item>
  </channel>
</rss>

