<?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 Send E-mail using sas viya code in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Send-E-mail-using-sas-viya-code/m-p/909431#M358701</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to send alert email through sas viya. whenever the saswork libarary is full then automatically it should send an alert mail&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shivraj&lt;/P&gt;</description>
    <pubDate>Fri, 22 Dec 2023 07:03:08 GMT</pubDate>
    <dc:creator>shivrajpawar98</dc:creator>
    <dc:date>2023-12-22T07:03:08Z</dc:date>
    <item>
      <title>Send E-mail using sas viya code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Send-E-mail-using-sas-viya-code/m-p/909431#M358701</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to send alert email through sas viya. whenever the saswork libarary is full then automatically it should send an alert mail&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shivraj&lt;/P&gt;</description>
      <pubDate>Fri, 22 Dec 2023 07:03:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Send-E-mail-using-sas-viya-code/m-p/909431#M358701</guid>
      <dc:creator>shivrajpawar98</dc:creator>
      <dc:date>2023-12-22T07:03:08Z</dc:date>
    </item>
    <item>
      <title>Re: Send E-mail using sas viya code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Send-E-mail-using-sas-viya-code/m-p/909472#M358717</link>
      <description>&lt;P&gt;Check out the SAS Communities library article&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-send-email-using-SAS/ta-p/746523" target="_blank"&gt;Tip: How to send email using SAS&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Dec 2023 13:19:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Send-E-mail-using-sas-viya-code/m-p/909472#M358717</guid>
      <dc:creator>SASJedi</dc:creator>
      <dc:date>2023-12-22T13:19:44Z</dc:date>
    </item>
    <item>
      <title>Re: Send E-mail using sas viya code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Send-E-mail-using-sas-viya-code/m-p/909476#M358718</link>
      <description>&lt;P&gt;Your SAS might not be able to do&amp;nbsp;&lt;U&gt;anything&lt;/U&gt; once WORK is exhausted, so this may not work at all.&lt;/P&gt;
&lt;P&gt;Instead use your operating system's tools. Servers have tools to detect such conditions and issue alerts in multiple ways.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Dec 2023 13:47:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Send-E-mail-using-sas-viya-code/m-p/909476#M358718</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-12-22T13:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: Send E-mail using sas viya code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Send-E-mail-using-sas-viya-code/m-p/909667#M358785</link>
      <description>&lt;P&gt;There are tools at the OS level such as SolarWinds that periodically monitor the work library. Typically, this occurs at 15 minutes interval.&lt;/P&gt;
&lt;P&gt;When the free space reduces to a predetermined level (for example 10%), the software sends an alert.&lt;BR /&gt;This type of action can be implemented writing a custom script or a SAS program that runs at 15 minutes interval.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Dec 2023 02:28:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Send-E-mail-using-sas-viya-code/m-p/909667#M358785</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2023-12-26T02:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: Send E-mail using sas viya code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Send-E-mail-using-sas-viya-code/m-p/909676#M358791</link>
      <description>&lt;P&gt;In UNIX, I'd run the df command, pipe the output into cut to extract the "percentage used" column, after which mail (or mailx) can be used conditionally. All this in a short shell script which can easily be started every minute through cron (such a script only needs milliseconds to run, with minimal CPU use when no mail needs to be sent).&lt;/P&gt;
&lt;P&gt;And it is always a VERY GOOD IDEA to run the SAS cleanwork utility periodically to get rid of the remnants of crashed SAS sessions.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Dec 2023 08:45:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Send-E-mail-using-sas-viya-code/m-p/909676#M358791</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-12-26T08:45:49Z</dc:date>
    </item>
  </channel>
</rss>

