<?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: SAS LIBNAME connection to Snowflake temporary table fails in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884029#M349243</link>
    <description>The DB2 example from the docs may provide some insight. Also means you can contact SAS tech support for help and they should help you out. &lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 07 Jul 2023 22:14:07 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2023-07-07T22:14:07Z</dc:date>
    <item>
      <title>SAS LIBNAME connection to Snowflake temporary table fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884006#M349230</link>
      <description>&lt;P&gt;Working in SAS. Am able to create PROC SQL script that creates a temporary table on Snowflake and inserts records into that temporary table. When I try to move data from the Snowflake temporary table to a SAS Work table receive error message ERROR: File SNOW.TMP_TABLE.DATA does not exist.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;According to this year-old thread Snowflake temporary tables are not compatible in SAS. Do you know if this is still the case? Without this support we are looking at inefficient joins across multiple platforms.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/td-p/734617" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/Temporary-Table-support-in-Snowflake-from-SAS/td-p/734617&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;PROC SQL NOPRINT;
 
/* Connect to Snowflake for pass throughs */
 
CONNECT TO ODBC AS conn (COMPLETE=&amp;amp;sfconn);
 
/* Create temporary table on Snowflake */
 
EXECUTE (
	CREATE TEMPORARY TABLE TMP_TABLE (HHID NUMBER(22,0))
	ON COMMIT PRESERVE ROWS;
) by conn;
 
EXECUTE (
	COMMIT WORK;
) by conn;
 
EXECUTE (
	INSERT INTO TMP_TABLE (HHID) 
	VALUES (311100);
) by conn;
 
/* Create SAS Work table from temporary Snowflake table */
 
CREATE TABLE WORK.TMP_TABLE_SAS AS
SELECT *
FROM SNOW.TMP_TABLE;
 
/* Disconnect from Snowflake */
 
DISCONNECT FROM conn;
 
QUIT;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2023 19:18:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884006#M349230</guid>
      <dc:creator>mrenner</dc:creator>
      <dc:date>2023-07-07T19:18:06Z</dc:date>
    </item>
    <item>
      <title>Re: SAS LIBNAME connection to Snowflake temporary table fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884009#M349232</link>
      <description>&lt;P&gt;Why did you make a separate connection?&amp;nbsp; The temporary table was probably deleted when you closed the connection.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What SCHEMA does snowflake store the temporary tables into?&amp;nbsp; Is that the SCHEMA you used in defining the SNOW libref?&amp;nbsp; If not you might need to use a dataset option when referencing the temporary table using the SNOW libref so it looks in the right SCHEMA.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try something like this instead:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname snow odbc .... ;
PROC SQL NOPRINT;
CONNECT using snow;
EXECUTE by snow (
	CREATE TEMPORARY TABLE TMP_TABLE (HHID NUMBER(22,0))
	ON COMMIT PRESERVE ROWS;
);
 
EXECUTE by snow (
	COMMIT WORK;
) ;

EXECUTE by snow (
	INSERT INTO TMP_TABLE (HHID) 
	VALUES (311100);
);
 
/* Create SAS Work table from temporary Snowflake table */
 
CREATE TABLE WORK.TMP_TABLE_SAS AS
SELECT *
FROM SNOW.TMP_TABLE
;
 
QUIT;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS You cannot store 22 digit integers uniquely in a SAS dataset.&amp;nbsp; Your HHID variable should probably be a character string instead of a number.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2023 19:43:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884009#M349232</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-07-07T19:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: SAS LIBNAME connection to Snowflake temporary table fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884013#M349233</link>
      <description>Thank you for the suggestion. I receive the same error with your code. (In my example I did not disconnect until the end, btw).&lt;BR /&gt;&lt;BR /&gt;Snowflake syntax is DATABASE.SCHEMA.TABLE. I have the correct DATABASE and SCHEMA set up for libname SNOW. Interestingly the schema name is actually "DATA". And error message we are getting is "ERROR: File SNOW.TMP_TABLE.DATA does not exist" in which the schema name is put behind the table name as in DATABASE.TABLE.SCHEMA.&lt;BR /&gt;&lt;BR /&gt;As the thread I linked to asserts, SAS is not compatible with Snowflake temporary tables. I hope this is not the case but that was their conclusion and a submission was made to SAS. Maybe there is a hotfix.</description>
      <pubDate>Fri, 07 Jul 2023 20:05:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884013#M349233</guid>
      <dc:creator>mrenner</dc:creator>
      <dc:date>2023-07-07T20:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAS LIBNAME connection to Snowflake temporary table fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884015#M349234</link>
      <description>&lt;P&gt;The .DATA in the error message is just its way of saying it was trying to access data and not some other type of object.&amp;nbsp; It has nothing to do with Snowflake's concept of DATABASE or SCHEMA.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What SCHEMA did you connect to with the LIBNAME statement? Is that the DATA you mentioned?&amp;nbsp; The SNOWFLAKE documentation makes it sound like you can use any schema name when making the temporary table.&amp;nbsp; So what happens if you make the table as DATA.TMP_TABLE instead of just TMP_TABLE?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2023 20:14:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884015#M349234</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-07-07T20:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: SAS LIBNAME connection to Snowflake temporary table fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884020#M349235</link>
      <description>&lt;P&gt;Thank you for the clarification on .DATA in the SAS error message.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;These are all good questions, yes SCHEMA=DATA in the connection string. I've tried just about every combination of including or excluding the database and schema from every statement in the program. It's either the error I posted or an error regarding a syntax not allowed.&amp;nbsp;Cross-posted on Snowflake forums but haven't heard anything yet.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;LIBNAME SNOW ODBC COMPLETE = "
DRIVER=SnowflakeDSIIDriver;
AUTHENTICATOR=SNOWFLAKE_JWT;
SERVER=xxxxxxxx;
UID=&amp;amp;userid;
PRIV_KEY_FILE=&amp;amp;spwd;
PRIV_KEY_FILE_PWD=;
Warehouse=xxxxxxxx;
Role=&amp;amp;datasrc;
Schema=DATA;
Database=xxxxxxxx;
";&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2023 21:17:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884020#M349235</guid>
      <dc:creator>mrenner</dc:creator>
      <dc:date>2023-07-07T21:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: SAS LIBNAME connection to Snowflake temporary table fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884021#M349236</link>
      <description>&lt;P&gt;According the post you linked to, which linked to the documentation below, temporary table support for Snowflake looks like it was implemented?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/n0irpkyp22l7vzn1il9lx6f4wmx9.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/n0irpkyp22l7vzn1il9lx6f4wmx9.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV id="tinyMceEditorReeza_0" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="tinyMceEditorReeza_1" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;I don't see the DBMSTEMP option in your libname statement though? The default is No.&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>Fri, 07 Jul 2023 21:29:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884021#M349236</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-07-07T21:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: SAS LIBNAME connection to Snowflake temporary table fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884027#M349242</link>
      <description>&lt;P&gt;Hmm... good catch. I added&amp;nbsp;DBMSTEMP=YES; to connection string however same error. It must be possible though because SAS indicates support. Will continue to search for other examples.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;/* Get credentials */

%get_system_credentials(source="xxxxxxxx", envir="prod");

/* Snowflake libname connection */

LIBNAME SNOW ODBC COMPLETE = "
DRIVER=SnowflakeDSIIDriver;
AUTHENTICATOR=SNOWFLAKE_JWT;
SERVER=xxxxxxxx;
UID=&amp;amp;userid;
PRIV_KEY_FILE=&amp;amp;spwd;
PRIV_KEY_FILE_PWD=;
Warehouse=xxxxxxxx;
Role=&amp;amp;datasrc;
Database=xxxxxxxx;
CONNECTION=GLOBAL;
DBMSTEMP=YES;
";

PROC SQL NOPRINT;

/* Connect to Snowflake */

CONNECT USING SNOW;

/* Create temporary table on Snowflake */

EXECUTE by SNOW (USE DATABASE xxxxxxxx;);
EXECUTE by SNOW (USE SCHEMA DATA;);

EXECUTE by SNOW (
	CREATE TEMPORARY TABLE TMP_TABLE (HHID NUMBER(13,0))
	ON COMMIT PRESERVE ROWS;
);

EXECUTE by SNOW (
	COMMIT WORK;
);

EXECUTE by SNOW (
	INSERT INTO TMP_TABLE (HHID) 
	VALUES (311100);
);

/* Create SAS Work table from temporary Snowflake table */

CREATE TABLE WORK.TMP_TABLE_SAS AS
SELECT *
FROM SNOW.TMP_TABLE;

QUIT;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2023 22:12:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884027#M349242</guid>
      <dc:creator>mrenner</dc:creator>
      <dc:date>2023-07-07T22:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: SAS LIBNAME connection to Snowflake temporary table fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884029#M349243</link>
      <description>The DB2 example from the docs may provide some insight. Also means you can contact SAS tech support for help and they should help you out. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Jul 2023 22:14:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884029#M349243</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-07-07T22:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: SAS LIBNAME connection to Snowflake temporary table fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884030#M349244</link>
      <description>&lt;P&gt;Here is the error&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="mrenner_0-1688768040384.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/85662iB38D156CEEA5E305/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mrenner_0-1688768040384.png" alt="mrenner_0-1688768040384.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2023 22:14:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884030#M349244</guid>
      <dc:creator>mrenner</dc:creator>
      <dc:date>2023-07-07T22:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: SAS LIBNAME connection to Snowflake temporary table fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884032#M349246</link>
      <description>&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/p0he4t6yjfmkhpn16qrf0cdhllu6.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/p0he4t6yjfmkhpn16qrf0cdhllu6.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;It also looks like you're using SQL explicit pass through rather than PROC SQL. If you use PROC SQL without explicit pass through does it work?</description>
      <pubDate>Fri, 07 Jul 2023 22:15:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884032#M349246</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-07-07T22:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS LIBNAME connection to Snowflake temporary table fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884034#M349247</link>
      <description>&lt;P&gt;Not sure what you mean by not using PROC SQL - I'm a bit of a novice in SAS.&lt;BR /&gt;&lt;BR /&gt;My goal is to create a temporary table in Snowflake and insert data into it from a SAS Work table.&lt;BR /&gt;&lt;BR /&gt;Right now I can create the temporary table in Snowflake ok. I'm now just trying to get the PROC SQL to recognize that temporary Snowflake table but it won't.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2023 22:34:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884034#M349247</guid>
      <dc:creator>mrenner</dc:creator>
      <dc:date>2023-07-07T22:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: SAS LIBNAME connection to Snowflake temporary table fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884036#M349248</link>
      <description>&lt;P&gt;I tried to just create a table directly but it says I have insufficient privileges. Going to have to hit this with a fresh mind on Monday and start googling again. Thanks for everyone's help.&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="mrenner_0-1688770018777.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/85664i5DDDDE7FF4FE2917/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mrenner_0-1688770018777.png" alt="mrenner_0-1688770018777.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;/* Source data libname connection */
%get_system_credentials(source="xxxxxxxx",envir="&amp;amp;env");
libname OV_TEST sqlsvr user="&amp;amp;userid" pw="&amp;amp;spwd" datasrc="&amp;amp;datasrc" schema="&amp;amp;schema" insertbuff=32767;

/* Snowflake libname connection */
%get_system_credentials(source="xxxxxxxx", envir="prod");

LIBNAME SNOW ODBC COMPLETE = "
DRIVER=SnowflakeDSIIDriver;
AUTHENTICATOR=SNOWFLAKE_JWT;
SERVER=xxxxxxxx;
UID=&amp;amp;userid;
PRIV_KEY_FILE=&amp;amp;spwd;
PRIV_KEY_FILE_PWD=;
Warehouse=xxxxxxxx;
Role=&amp;amp;datasrc;
SCHEMA=DATA;
Database=xxxxxxxx;
CONNECTION=GLOBAL;
DBMSTEMP=YES;
";

PROC SQL NOPRINT;

CREATE TABLE SNOW.TMP_TABLE as (
	SELECT a.HHID
	FROM OV_TEST.SOURCE_TABLE a
	WHERE a.HHID = 311100
	);

QUIT;&lt;/CODE&gt;&lt;/PRE&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>Fri, 07 Jul 2023 22:47:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884036#M349248</guid>
      <dc:creator>mrenner</dc:creator>
      <dc:date>2023-07-07T22:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAS LIBNAME connection to Snowflake temporary table fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884038#M349249</link>
      <description>&lt;P&gt;This SAS Note may be relevant: &lt;A href="https://support.sas.com/kb/68/155.html" target="_blank"&gt;https://support.sas.com/kb/68/155.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What SAS version are you running on? If it is 9.4M7 a fix for Snowflake temporary tables is available. Check with your SAS administrator to confirm if it has been applied or not.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2023 23:00:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/884038#M349249</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-07-07T23:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: SAS LIBNAME connection to Snowflake temporary table fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/885474#M349895</link>
      <description>&lt;P&gt;I confirmed we are only on SAS version 9.4M6. It doesn't look we plan to move to M8 until next year. Internal rules on installing software make it more difficult applying hotfixes (plus everyone using the program would need to do that).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's still not clear to me if that is the issue or it's a coding issue. I will have to reach out to people within our org and see if anyone has come up with a solution... without temporary tables you can't really run cross-platform transactions efficiently.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2023 14:56:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/885474#M349895</guid>
      <dc:creator>mrenner</dc:creator>
      <dc:date>2023-07-19T14:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAS LIBNAME connection to Snowflake temporary table fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/885475#M349896</link>
      <description>&lt;P&gt;You should reach out to SAS support as well.&amp;nbsp; It's free, and they're excellent.&amp;nbsp; And SAS is really committed to snowflake integration, as evidenced by the recently announcement of running Viya scoring models inside a snowflake container.&amp;nbsp; Tech support will definitely help you with this.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2023 15:02:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/885475#M349896</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2023-07-19T15:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: SAS LIBNAME connection to Snowflake temporary table fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/885520#M349921</link>
      <description>&lt;P&gt;Tech Support will be able to confirm if the problem in the SAS Note also applies to M6 as well as M7.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2023 19:55:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-LIBNAME-connection-to-Snowflake-temporary-table-fails/m-p/885520#M349921</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-07-19T19:55:55Z</dc:date>
    </item>
  </channel>
</rss>

