<?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 snowflake pre-assigned library in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-snowflake-pre-assigned-library/m-p/970916#M30143</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/462296"&gt;@freshstarter&lt;/a&gt;&amp;nbsp;- Actually we use pre-assigned Snowflake libraries exclusively also. I just used the LIBNAME statement as an illustration&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;.&lt;/P&gt;</description>
    <pubDate>Wed, 16 Jul 2025 20:46:22 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2025-07-16T20:46:22Z</dc:date>
    <item>
      <title>SAS snowflake pre-assigned library</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-snowflake-pre-assigned-library/m-p/970879#M30138</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a pre-assigned sas library for snowflake and we need to use bulkload and bulkunload with the internal stage concept using the pre-assigned library.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All our sas code are pass through code and we dont define any libname statement. In the code , we directly use the pre-assigned library and as far as I read, we cant use bulkload or unload in pass -through.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;so thought of using this paramter on sas library on SMC.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Where to define this setting on library? We have other options tab ( under Advanced options ) as well as extended attribute tab ? Can we able to add it over there? I tried few options and it failed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need to add BULKLOAD=YES , BULKUNLOAD=YES, BL_INTERNAL_STAGE='@~' , BL_DELETE_DATAFILE=YES,BL_COMPRESS=YES&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;FYI. we do have a single SAS library for snowflake and it will be used for both load and unload.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help is much appreciated. Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2025 16:47:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-snowflake-pre-assigned-library/m-p/970879#M30138</guid>
      <dc:creator>freshstarter</dc:creator>
      <dc:date>2025-07-16T16:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: SAS snowflake pre-assigned library</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-snowflake-pre-assigned-library/m-p/970907#M30139</link>
      <description>&lt;P&gt;There's no reason why you can't use LIBNAMEs with Passthru to Snowflake. We use them. They look like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; libname SF snow &amp;lt;Snowflake connection definition&amp;gt;;

  proc sql;
    connect using SF;
    select * from connection to SF
    (SELECT * FROM MySnowFlakeTable);
    disconnect from SF;
  quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Also you should be able to add the bulk loading options to the LIBNAME also.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2025 20:13:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-snowflake-pre-assigned-library/m-p/970907#M30139</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2025-07-16T20:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: SAS snowflake pre-assigned library</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-snowflake-pre-assigned-library/m-p/970909#M30140</link>
      <description>Thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976"&gt;@SASKiwi&lt;/a&gt; for your response.&lt;BR /&gt;As we are using pre-assigned library, we are not using lib name statement in the code. Below is the code we are using &lt;BR /&gt;&lt;BR /&gt;proc sql;&lt;BR /&gt;    connect using snow&lt;BR /&gt;    Create table work.dataset as&lt;BR /&gt;    select * from connection to snow&lt;BR /&gt;    (SELECT * FROM Db.Schema.MySnowFlakeTable);&lt;BR /&gt;    disconnect from snow&lt;BR /&gt;  quit;&lt;BR /&gt;&lt;BR /&gt;Snow is the preassigned library in smc.the above code is for data unloading.&lt;BR /&gt;&lt;BR /&gt;So that’s the reason I planned to amend the options directly on the smc preassigned library.&lt;BR /&gt;&lt;BR /&gt;There are 1000’s of Sas jobs which we can’t change and include the lib name statement.&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Wed, 16 Jul 2025 20:26:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-snowflake-pre-assigned-library/m-p/970909#M30140</guid>
      <dc:creator>freshstarter</dc:creator>
      <dc:date>2025-07-16T20:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: SAS snowflake pre-assigned library</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-snowflake-pre-assigned-library/m-p/970911#M30141</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;EM&gt;so thought of using this paramter on sas library on SMC.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Where to define this setting on library? We have other options tab ( under Advanced options ) as well as extended attribute tab ? Can we able to add it over there? I tried few options and it failed.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;I need to add &lt;STRONG&gt;BULKLOAD=YES , BULKUNLOAD=YES, BL_INTERNAL_STAGE='@~' , BL_DELETE_DATAFILE=YES,BL_COMPRESS=YES&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The correct place to do this in SAS Management Console is as you noted on the library properties -&amp;gt; Options tab -&amp;gt; Advanced Options button -&amp;gt; Other Options tab&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="carl_sommer_0-1752697716456.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/108403iDA30A762FE0DF034/image-size/large?v=v2&amp;amp;px=999" role="button" title="carl_sommer_0-1752697716456.png" alt="carl_sommer_0-1752697716456.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Carl Sommer - SAS Technical Support&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2025 20:29:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-snowflake-pre-assigned-library/m-p/970911#M30141</guid>
      <dc:creator>carl_sommer</dc:creator>
      <dc:date>2025-07-16T20:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: SAS snowflake pre-assigned library</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-snowflake-pre-assigned-library/m-p/970915#M30142</link>
      <description>Thanks Carl. Previously I have included under this other option tab but I have separated with semicolon ; , but it throws me an error when using the pre-assigned library.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I have defined like this &lt;BR /&gt;&lt;BR /&gt;Bulkload=yes;BL_Compress=Yes;BL_Internal_Stage=‘@~’;</description>
      <pubDate>Wed, 16 Jul 2025 20:37:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-snowflake-pre-assigned-library/m-p/970915#M30142</guid>
      <dc:creator>freshstarter</dc:creator>
      <dc:date>2025-07-16T20:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: SAS snowflake pre-assigned library</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-snowflake-pre-assigned-library/m-p/970916#M30143</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/462296"&gt;@freshstarter&lt;/a&gt;&amp;nbsp;- Actually we use pre-assigned Snowflake libraries exclusively also. I just used the LIBNAME statement as an illustration&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2025 20:46:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-snowflake-pre-assigned-library/m-p/970916#M30143</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2025-07-16T20:46:22Z</dc:date>
    </item>
    <item>
      <title>Re: SAS snowflake pre-assigned library</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-snowflake-pre-assigned-library/m-p/970918#M30144</link>
      <description>&lt;P&gt;You don't want to use the semi-colons.&amp;nbsp; To test this out, temporarily mark the library as not pre-assigned, set your advanced options, and then display the generated libname statement for the library.&amp;nbsp; That makes it much more straight-forward to understand how the options are being included.&amp;nbsp; &amp;nbsp;Once you can generate a libname statement that actually works when submitted, then mark it preassigned once again.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Carl Sommer - SAS Technical Support&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2025 21:04:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-snowflake-pre-assigned-library/m-p/970918#M30144</guid>
      <dc:creator>carl_sommer</dc:creator>
      <dc:date>2025-07-16T21:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: SAS snowflake pre-assigned library</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-snowflake-pre-assigned-library/m-p/970919#M30145</link>
      <description>Thank you.. let me try this out and will keep you updated</description>
      <pubDate>Wed, 16 Jul 2025 21:08:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-snowflake-pre-assigned-library/m-p/970919#M30145</guid>
      <dc:creator>freshstarter</dc:creator>
      <dc:date>2025-07-16T21:08:43Z</dc:date>
    </item>
  </channel>
</rss>

