<?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: Increasing memory while creating temp table in DB via SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Increasing-memory-while-creating-temp-table-in-DB-via-SAS/m-p/744338#M233191</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13674"&gt;@LinusH&lt;/a&gt;&amp;nbsp;yes, I'm referring to SQL Server table space. May I know the Options to SQL Server table space?&lt;/P&gt;</description>
    <pubDate>Fri, 28 May 2021 06:41:24 GMT</pubDate>
    <dc:creator>David_Billa</dc:creator>
    <dc:date>2021-05-28T06:41:24Z</dc:date>
    <item>
      <title>Increasing memory while creating temp table in DB via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Increasing-memory-while-creating-temp-table-in-DB-via-SAS/m-p/744329#M233189</link>
      <description>&lt;P&gt;Is there a way to increase the memory with some SAS Options while creating the temp table in SQL Server database with the following code. There are millions of records in CUSTOMER table and I don't want to see any shortage of memory issue in future.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Proc Sql;
                Create table _etltmp."##temp_input_&amp;amp;unique_num."n as 
                    Select * from CUSTOMER;
            quit;&lt;/PRE&gt;</description>
      <pubDate>Fri, 28 May 2021 05:38:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Increasing-memory-while-creating-temp-table-in-DB-via-SAS/m-p/744329#M233189</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2021-05-28T05:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing memory while creating temp table in DB via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Increasing-memory-while-creating-temp-table-in-DB-via-SAS/m-p/744330#M233190</link>
      <description>&lt;P&gt;Are you referring to SQL Server table space?&lt;/P&gt;
&lt;P&gt;I think you configure that on database level, and there's options to have it automatically grow.&lt;/P&gt;
&lt;P&gt;I can't see that there should be any memory issues on the SAS side (RAM?)&lt;/P&gt;
&lt;P&gt;If you are concerned about disk on SAS side, make sure you have enough space in your saswork location.&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 05:57:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Increasing-memory-while-creating-temp-table-in-DB-via-SAS/m-p/744330#M233190</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2021-05-28T05:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing memory while creating temp table in DB via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Increasing-memory-while-creating-temp-table-in-DB-via-SAS/m-p/744338#M233191</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13674"&gt;@LinusH&lt;/a&gt;&amp;nbsp;yes, I'm referring to SQL Server table space. May I know the Options to SQL Server table space?&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 06:41:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Increasing-memory-while-creating-temp-table-in-DB-via-SAS/m-p/744338#M233191</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2021-05-28T06:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing memory while creating temp table in DB via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Increasing-memory-while-creating-temp-table-in-DB-via-SAS/m-p/744339#M233192</link>
      <description>&lt;P&gt;Talk to your SQL Server admins. You, as an "end user", cannot manipulate such parameters.&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 06:55:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Increasing-memory-while-creating-temp-table-in-DB-via-SAS/m-p/744339#M233192</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-05-28T06:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing memory while creating temp table in DB via SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Increasing-memory-while-creating-temp-table-in-DB-via-SAS/m-p/744344#M233194</link>
      <description>&lt;P&gt;While talking to you SQL Server admins, you can use the terms FILEGROWTH and AUTOGROW.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/sql/t-sql/statements/alter-database-transact-sql-file-and-filegroup-options?view=sql-server-ver15" target="_blank"&gt;https://docs.microsoft.com/en-us/sql/t-sql/statements/alter-database-transact-sql-file-and-filegroup-options?view=sql-server-ver15&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 08:54:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Increasing-memory-while-creating-temp-table-in-DB-via-SAS/m-p/744344#M233194</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2021-05-28T08:54:14Z</dc:date>
    </item>
  </channel>
</rss>

