<?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 DO I GET DATA FROM SNOWFLAKE TO SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/HOW-DO-I-GET-DATA-FROM-SNOWFLAKE-TO-SAS/m-p/850046#M335989</link>
    <description>&lt;P&gt;Hi Linush&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please check this, and suggest the needful&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;libname mylib snow server='ABC.east-us-2.azure.snowflakecomputing.com:443' user=SKESANA|password=XXXXXX@123|warehouse=DATA_SCIENCE_XS&lt;BR /&gt;      database=GRN_DEV schema=GDW_REP role=FR_DATA_SCIENCE_VIEW;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR&lt;/P&gt;&lt;P&gt;libname mylib snow server='ABC.east-us-2.azure.snowflakecomputing.com:443'&lt;BR /&gt;38 ! user=SKESANA|password=XXXXXX@123|warehouse=DATA_SCIENCE_XS&lt;BR /&gt;39 database=GRN_DEV schema=GDW_REP role=FR_DATA_SCIENCE_VIEW;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR&lt;/FONT&gt;: The &lt;U&gt;SNOW engine&lt;/U&gt; cannot be found.&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR&lt;/FONT&gt;: Error in the LIBNAME statement.&lt;/P&gt;</description>
    <pubDate>Fri, 16 Dec 2022 11:14:19 GMT</pubDate>
    <dc:creator>ksailaxmi</dc:creator>
    <dc:date>2022-12-16T11:14:19Z</dc:date>
    <item>
      <title>HOW DO I GET DATA FROM SNOWFLAKE TO SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HOW-DO-I-GET-DATA-FROM-SNOWFLAKE-TO-SAS/m-p/848684#M335527</link>
      <description />
      <pubDate>Fri, 09 Dec 2022 05:04:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HOW-DO-I-GET-DATA-FROM-SNOWFLAKE-TO-SAS/m-p/848684#M335527</guid>
      <dc:creator>ksailaxmi</dc:creator>
      <dc:date>2022-12-09T05:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: HOW DO I GET DATA FROM SNOWFLAKE TO SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HOW-DO-I-GET-DATA-FROM-SNOWFLAKE-TO-SAS/m-p/848690#M335530</link>
      <description>&lt;P&gt;The most straightforward way is to use SAS/ACCESS to Snowflake, then you "download" data to your SAS session host.&lt;/P&gt;
&lt;P&gt;There are several way how to design this, depending on your requirements and constraints, like:&lt;/P&gt;
&lt;P&gt;- What is your use case?&lt;/P&gt;
&lt;P&gt;- How much data do you need to work with?&lt;/P&gt;
&lt;P&gt;- What version of SAS do you have?&lt;/P&gt;
&lt;P&gt;- Where is you SAS session executing (relative to your Snowflake instance)&lt;/P&gt;
&lt;P&gt;One takeaway is that many Snowflake user tries to keep the data in the DB and have as much of you queries execute there, and then only upload portion of data that is needed for SAS VA/VS (data set needs to be loaded to LASR/CAS).&lt;/P&gt;</description>
      <pubDate>Fri, 09 Dec 2022 08:14:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HOW-DO-I-GET-DATA-FROM-SNOWFLAKE-TO-SAS/m-p/848690#M335530</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2022-12-09T08:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: HOW DO I GET DATA FROM SNOWFLAKE TO SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HOW-DO-I-GET-DATA-FROM-SNOWFLAKE-TO-SAS/m-p/849059#M335698</link>
      <description>&lt;P&gt;Hi Linush,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I am working on a retrospective data -Want to take specific data directly from snowflake-&lt;BR /&gt;SAS Version 9.4 - Snowflake Enterprise - with Azure Cloud.&lt;/P&gt;&lt;P&gt;Tried this -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;connect using SNOW1;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;libname mylib snow server='&amp;lt;account&amp;gt;.snowflakecomputing.com' user=myusr|password=mypwd|warehouse=compute_wh&lt;BR /&gt;database=mydb schema=mydb role=user;&lt;BR /&gt;;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2022 10:28:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HOW-DO-I-GET-DATA-FROM-SNOWFLAKE-TO-SAS/m-p/849059#M335698</guid>
      <dc:creator>ksailaxmi</dc:creator>
      <dc:date>2022-12-12T10:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: HOW DO I GET DATA FROM SNOWFLAKE TO SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HOW-DO-I-GET-DATA-FROM-SNOWFLAKE-TO-SAS/m-p/849072#M335704</link>
      <description>Assuming that your driver etc is already configured, it looks like your statemnts is in the wrong order, using should refer to the exact name in the libname statement&lt;BR /&gt;libname mylib snow server='&amp;lt;account&amp;gt;.snowflakecomputing.com' user=myusr|password=mypwd|warehouse=compute_wh&lt;BR /&gt;database=mydb schema=mydb role=user;&lt;BR /&gt;proc sql;&lt;BR /&gt;connect using SNOW as snow1;&lt;BR /&gt;select * from connection to snow1 (query goes here);&lt;BR /&gt;disconnect from snow1;&lt;BR /&gt;quit;</description>
      <pubDate>Mon, 12 Dec 2022 12:11:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HOW-DO-I-GET-DATA-FROM-SNOWFLAKE-TO-SAS/m-p/849072#M335704</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2022-12-12T12:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: HOW DO I GET DATA FROM SNOWFLAKE TO SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HOW-DO-I-GET-DATA-FROM-SNOWFLAKE-TO-SAS/m-p/849074#M335706</link>
      <description>&lt;P&gt;Thanks, Linush - You guessed it right - My driver is not yet configured - I am trying with trial version&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2022 12:21:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HOW-DO-I-GET-DATA-FROM-SNOWFLAKE-TO-SAS/m-p/849074#M335706</guid>
      <dc:creator>ksailaxmi</dc:creator>
      <dc:date>2022-12-12T12:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: HOW DO I GET DATA FROM SNOWFLAKE TO SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HOW-DO-I-GET-DATA-FROM-SNOWFLAKE-TO-SAS/m-p/850046#M335989</link>
      <description>&lt;P&gt;Hi Linush&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please check this, and suggest the needful&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;libname mylib snow server='ABC.east-us-2.azure.snowflakecomputing.com:443' user=SKESANA|password=XXXXXX@123|warehouse=DATA_SCIENCE_XS&lt;BR /&gt;      database=GRN_DEV schema=GDW_REP role=FR_DATA_SCIENCE_VIEW;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR&lt;/P&gt;&lt;P&gt;libname mylib snow server='ABC.east-us-2.azure.snowflakecomputing.com:443'&lt;BR /&gt;38 ! user=SKESANA|password=XXXXXX@123|warehouse=DATA_SCIENCE_XS&lt;BR /&gt;39 database=GRN_DEV schema=GDW_REP role=FR_DATA_SCIENCE_VIEW;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR&lt;/FONT&gt;: The &lt;U&gt;SNOW engine&lt;/U&gt; cannot be found.&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR&lt;/FONT&gt;: Error in the LIBNAME statement.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2022 11:14:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HOW-DO-I-GET-DATA-FROM-SNOWFLAKE-TO-SAS/m-p/850046#M335989</guid>
      <dc:creator>ksailaxmi</dc:creator>
      <dc:date>2022-12-16T11:14:19Z</dc:date>
    </item>
  </channel>
</rss>

