<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Scheduler/Calendar</title><link>https://community.appian.com/discussions/f/process/37659/scheduler-calendar</link><description>Hello All, 
 
 I need to create a Scheduler which marks all the existing records under in table against column Is_observed = 1 at the end of each year starting December 31, 2024. 
 
 Is this good to go?</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Scheduler/Calendar</title><link>https://community.appian.com/thread/141396?ContentTypeID=1</link><pubDate>Tue, 08 Oct 2024 03:52:26 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1d82b6c2-f91a-45cb-a093-fd236855a1b5</guid><dc:creator>Kumar Agniwesh</dc:creator><description>&lt;p&gt;You can also try to do this&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-sql"&gt;&lt;span class="token"&gt;&lt;/span&gt;&lt;pre class="ui-code" data-mode="text"&gt;CREATE EVENT yearly_event
ON SCHEDULE
  EVERY 1 YEAR
  STARTS &amp;#39;2023-12-31 16:00:00&amp;#39;
DO
  BEGIN
    -- Your event logic goes here
    SELECT &amp;#39;This event runs every year on December 31st at 4 PM&amp;#39;;
  END;&lt;/pre&gt;&lt;span class="token"&gt;&lt;br /&gt;&lt;br /&gt;This will help you create an event in Maria DB which would be running to update at specific date and time&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Scheduler/Calendar</title><link>https://community.appian.com/thread/141394?ContentTypeID=1</link><pubDate>Tue, 08 Oct 2024 03:32:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2817dd51-da2a-4883-8e66-12f6a688fd70</guid><dc:creator>varshithak774792</dc:creator><description>&lt;p&gt;Yes, It is the correct way. As the process runs only once a year on the mentioned date and the value of Is_observed will becomes 1 if there is no error in your PM.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>