<?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: Temporary Table support in Snowflake from SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/735319#M229069</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/51161"&gt;@JBailey&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Thanks Jeff. At our company , we are planning to replace Teradata with Snowflake . We have several SAS codes written which are currently using the VOLATILE table in Teradata as means of&amp;nbsp; quickly loading a SAS dataset ( 30K records or less) so that it can be joined with another Teradata table using Pass through in an efficient manner. But if we convert such a code to using SNOWFLAKE the inability of &lt;STRONG&gt;SAS/ACCESS Interface to SNOWFLAKE &lt;/STRONG&gt;currently not supporting the loading of a SAS dataset into a TEMPORARY Table in SNOWFLAKE would cause the user to rely on the DBA giving permissions to create and drop TRANSIENT Table in SNOWFLAKE&amp;nbsp; and then load&amp;nbsp; the SAS dataset to such a table&amp;nbsp; to achieve the same join . Also the user has to make sure the TRANSIENT table is explicitly dropped at end each SAS code so that it does not carry over to next session and incur charges . This is ok for few users but with several SAS Users this becomes a burden for the DBA to grant such access and ensure users&amp;nbsp; drop the table explicitly .&lt;BR /&gt;&lt;BR /&gt;According to this blog post date , the TEMPORARY Table concept in SNOWFLAKE existed since 2018 :&lt;BR /&gt;&lt;A href="https://copycoding.com/d/temporary-vs-transient-tables-in-snowflake" target="_blank" rel="noopener"&gt;https://copycoding.com/d/temporary-vs-transient-tables-in-snowflake&lt;/A&gt; . Maybe it has undergone few changes since then&lt;BR /&gt;&lt;BR /&gt;I hope SAS R&amp;amp;D takes the above into account and implements this much needed feature as soon as possible.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Mon, 19 Apr 2021 17:06:53 GMT</pubDate>
    <dc:creator>pchegoor1</dc:creator>
    <dc:date>2021-04-19T17:06:53Z</dc:date>
    <item>
      <title>Temporary Table support in Snowflake from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/734617#M228816</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to test the creation of TEMPORARY Tables in Snowflake using &lt;STRONG&gt;SAS/ACCESS Interface to Snowflake&amp;nbsp;&lt;/STRONG&gt;but it does not seem to work as expected.&amp;nbsp; TEMPOARARY Table in Snowflake (&amp;nbsp; &lt;A href="https://docs.snowflake.com/en/user-guide/tables-temp-transient.html" target="_blank" rel="noopener"&gt;https://docs.snowflake.com/en/user-guide/tables-temp-transient.html&lt;/A&gt;)&amp;nbsp;&amp;nbsp;&amp;nbsp;only persists till the duration of the Session&amp;nbsp; and is similar to the concept VOLATILE Table in Teradata.&amp;nbsp; We are planning to move away from Teradata and embrace Snowflake for our database needs.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is my Code . I am just trying to insert 2 records&amp;nbsp; from a SAS dataset into a TEMPORARY Table whose definition is created first within Snowflake.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;LIBNAME T snow DSN=SF_Test user=User01 password="XXXXXX" schema=test  &lt;STRONG&gt;connection=GLOBAL&lt;/STRONG&gt; ;


Data Sample;
Infile Datalines truncover;
Input ID Name $20.;
Datalines;
100 John Doe
200 Jim John
;
Run;

Proc Sql;
Connect to Snow(DSN=SF_Test user=User01 password="XXXXXX" schema=test  &lt;STRONG&gt;connection=GLOBAL&lt;/STRONG&gt; );


 execute ( Create TEMPORARY TABLE SF_Temp( ID NUMBER , Name VARCHAR(20)) ON COMMIT PRESERVE ROWS ) by snow;
 execute ( COMMIT WORK ) by snow;

Quit;

Proc Sql;
Insert into T.SF_Temp
select  *
from  Sample;
Quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I get the&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&amp;nbsp;ERROR: File T.SF_Temp.DATA does not exist.&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;&lt;FONT color="#000000"&gt;Obviously the TEMPORARAY Table SF_Temp does not seem to persist&amp;nbsp; during the INSERT&amp;nbsp; step above.&amp;nbsp; &amp;nbsp;I am using CONNECTION=GLOBAL&amp;nbsp; &amp;nbsp;option in both the&amp;nbsp; LIBNAME&amp;nbsp; and&amp;nbsp; CONNECT TO statements as seen above .&amp;nbsp; &amp;nbsp;I tried using PROC APPEND too but that too did not succeed.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;FONT color="#000000"&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/51161"&gt;@JBailey&lt;/a&gt;&amp;nbsp; &amp;nbsp;and Others&amp;nbsp; ,&amp;nbsp; do you have any thoughts on the above?&amp;nbsp; Thanks.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Apr 2021 01:06:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/734617#M228816</guid>
      <dc:creator>pchegoor1</dc:creator>
      <dc:date>2021-04-16T01:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: Temporary Table support in Snowflake from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/734618#M228817</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;LIBNAME T snow DSN=SF_Test user=User01 password="XXXXXX" schema=test  connection=GLOBAL ;

Data Sample;
Infile Datalines truncover;
Input ID Name $20.;
Datalines;
100 John Doe
200 Jim John
;
Run;

Proc Sql;
Connect using T;

 execute ( Create TEMPORARY TABLE SF_Temp( ID NUMBER , Name VARCHAR(20)) ON COMMIT PRESERVE ROWS ) by T;
 execute ( COMMIT WORK ) by T;

Quit;

Proc Sql;
Insert into T.SF_Temp
select  *
from  Sample;
Quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 16 Apr 2021 01:46:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/734618#M228817</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-04-16T01:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: Temporary Table support in Snowflake from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/734634#M228826</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976"&gt;@SASKiwi&lt;/a&gt;&amp;nbsp; Thanks for the Reply&amp;nbsp; but&amp;nbsp; unfortunately this too ends up with same&amp;nbsp; Error :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;ERROR: File T.SF_Temp.DATA does not exist.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Apr 2021 03:36:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/734634#M228826</guid>
      <dc:creator>pchegoor1</dc:creator>
      <dc:date>2021-04-16T03:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: Temporary Table support in Snowflake from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/734665#M228845</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/80129"&gt;@pchegoor1&lt;/a&gt;&amp;nbsp; - How about this? See &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/p0he4t6yjfmkhpn16qrf0cdhllu6.htm" target="_blank" rel="noopener"&gt;doc&lt;/A&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;LIBNAME T snow DSN=SF_Test user=User01 password="XXXXXX" schema=test  connection=GLOBAL DBMSTEMP=YES ;

Proc Sql;
Connect using T;

 execute ( Create TEMPORARY TABLE SF_Temp( ID NUMBER , Name VARCHAR(20)) ON COMMIT PRESERVE ROWS ) by T;
 execute ( COMMIT WORK ) by T;
select * from connection to T 
(select count(*) from SF_Temp)
;
Quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Unfortunately I don't see Snowflake listed under &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/n0irpkyp22l7vzn1il9lx6f4wmx9.htm" target="_blank" rel="noopener"&gt;Temporary Table Support&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;I suggest you open a Tech Support track to confirm this.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Apr 2021 06:46:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/734665#M228845</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-04-16T06:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Temporary Table support in Snowflake from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/734755#M228888</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976"&gt;@SASKiwi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;This code below works as expected . But&amp;nbsp; unfortunately the inserting of records&amp;nbsp; using a SAS dataset does not work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also the &lt;STRONG&gt;DBMSTEMP=YES&lt;/STRONG&gt;&amp;nbsp; option is not supported&amp;nbsp; on the snowflake &lt;STRONG&gt;Libname&lt;/STRONG&gt; statement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope SAS&amp;nbsp; will make changes via some&amp;nbsp; HOTFIX to support&amp;nbsp; the insertion of data from SAS Dataset into a TEMPORARY Table in Snowflake via SAS. I have a ticket with SAS Tech support on this .Yet to hear back from them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Libname _ALL_ clear;
LIBNAME T snow DSN=SF_Test user=User01 password="XXXXXX" schema=test  connection=GLOBAL ;

Proc Sql;
Connect USING T;


 execute ( Create TEMPORARY TABLE SF_Temp( ID NUMBER , Name VARCHAR(50)) ON COMMIT PRESERVE ROWS ) by T;
 execute ( COMMIT WORK ) by T;
 execute ( INSERT INTO SF_Temp Values (100, 'John Doe' ),(200, 'Jim John')  ) by T;



 select *  from connection to T
 (
   Select *  from SF_Temp

 );

Quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;U&gt;Output:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pchegoor1_0-1618588129225.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58123iF2C6E21D97A304EE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pchegoor1_0-1618588129225.png" alt="pchegoor1_0-1618588129225.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Apr 2021 17:37:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/734755#M228888</guid>
      <dc:creator>pchegoor1</dc:creator>
      <dc:date>2021-04-16T17:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: Temporary Table support in Snowflake from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/735291#M229057</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/80129"&gt;@pchegoor1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am no longer a Product Manager, so I don't keep up with these things like I used to. That being said, I think TEMP TABLES are a recent addition to Snowflake.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS/ACCESS Interface to Snowflake doesn't support TEMP TABLES. I will create a feature request and see if I can have this capability added to the roadmap.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best wishes,&lt;/P&gt;
&lt;P&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 15:22:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/735291#M229057</guid>
      <dc:creator>JBailey</dc:creator>
      <dc:date>2021-04-19T15:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: Temporary Table support in Snowflake from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/735319#M229069</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/51161"&gt;@JBailey&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Thanks Jeff. At our company , we are planning to replace Teradata with Snowflake . We have several SAS codes written which are currently using the VOLATILE table in Teradata as means of&amp;nbsp; quickly loading a SAS dataset ( 30K records or less) so that it can be joined with another Teradata table using Pass through in an efficient manner. But if we convert such a code to using SNOWFLAKE the inability of &lt;STRONG&gt;SAS/ACCESS Interface to SNOWFLAKE &lt;/STRONG&gt;currently not supporting the loading of a SAS dataset into a TEMPORARY Table in SNOWFLAKE would cause the user to rely on the DBA giving permissions to create and drop TRANSIENT Table in SNOWFLAKE&amp;nbsp; and then load&amp;nbsp; the SAS dataset to such a table&amp;nbsp; to achieve the same join . Also the user has to make sure the TRANSIENT table is explicitly dropped at end each SAS code so that it does not carry over to next session and incur charges . This is ok for few users but with several SAS Users this becomes a burden for the DBA to grant such access and ensure users&amp;nbsp; drop the table explicitly .&lt;BR /&gt;&lt;BR /&gt;According to this blog post date , the TEMPORARY Table concept in SNOWFLAKE existed since 2018 :&lt;BR /&gt;&lt;A href="https://copycoding.com/d/temporary-vs-transient-tables-in-snowflake" target="_blank" rel="noopener"&gt;https://copycoding.com/d/temporary-vs-transient-tables-in-snowflake&lt;/A&gt; . Maybe it has undergone few changes since then&lt;BR /&gt;&lt;BR /&gt;I hope SAS R&amp;amp;D takes the above into account and implements this much needed feature as soon as possible.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 17:06:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/735319#M229069</guid>
      <dc:creator>pchegoor1</dc:creator>
      <dc:date>2021-04-19T17:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: Temporary Table support in Snowflake from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/735462#M229118</link>
      <description>&lt;P&gt;One problem in some of the examples is that the temporary table is deleted when the connection goes down (like in the SQL pass-through example).&lt;/P&gt;
&lt;P&gt;Isn't it possible to use a libname together with&amp;nbsp;DBCREATE_TABLE_OPTS= Data Set Option?&lt;/P&gt;
&lt;P&gt;I don't have access to Snowflake at the moment so I was unable to test this.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 09:21:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/735462#M229118</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2021-04-20T09:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: Temporary Table support in Snowflake from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/735671#M229172</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/80129"&gt;@pchegoor1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have requested the feature. Hopefully, it will be released soon.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best wishes,&lt;/P&gt;
&lt;P&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 16:57:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/735671#M229172</guid>
      <dc:creator>JBailey</dc:creator>
      <dc:date>2021-04-20T16:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: Temporary Table support in Snowflake from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/925267#M364152</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/51161"&gt;@JBailey&lt;/a&gt;&amp;nbsp;Do you know if this feature is added in SAS?&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2024 19:19:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/925267#M364152</guid>
      <dc:creator>prashanthi</dc:creator>
      <dc:date>2024-04-22T19:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: Temporary Table support in Snowflake from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/925279#M364153</link>
      <description>&lt;P&gt;Yes . The Temporary Table Support has been added to Snowflake in SAS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/sasstudiocdc/3.8/pgmsascdc/acreldb/n0irpkyp22l7vzn1il9lx6f4wmx9.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/sasstudiocdc/3.8/pgmsascdc/acreldb/n0irpkyp22l7vzn1il9lx6f4wmx9.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2024 19:56:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/925279#M364153</guid>
      <dc:creator>pchegoor1</dc:creator>
      <dc:date>2024-04-22T19:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: Temporary Table support in Snowflake from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/925658#M364252</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/35081"&gt;@prashanthi&lt;/a&gt;, &lt;BR /&gt;&lt;BR /&gt;As &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/80129"&gt;@pchegoor1&lt;/a&gt;&amp;nbsp;points out, support for Snowflake Temporary Tables was added to SAS/ACCESS. I retired from SAS before this support was added, so I don't have any example code to share.&lt;BR /&gt;&lt;BR /&gt;Best wishes,&lt;BR /&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 20:15:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/m-p/925658#M364252</guid>
      <dc:creator>JBailey</dc:creator>
      <dc:date>2024-04-24T20:15:33Z</dc:date>
    </item>
  </channel>
</rss>

