<?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: Daylight Savings (again!) in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/daylight-savings-again/m-p/3706447#M8857</link>
    <description>&lt;BR /&gt;See chapter 6 of the System Manager's Manual vol 1 and sys$examples:DAYLIGHT_SAVINGS.COM.  You'll need to change auto_dlight_sav to 0 (and reboot) to prevent the automatic change.  &lt;A href="http://h71000.www7.hp.com/doc/732FINAL/aa-pv5mh-tk/aa-pv5mh-tk.HTMl" target="_blank"&gt;http://h71000.www7.hp.com/doc/732FINAL/aa-pv5mh-tk/aa-pv5mh-tk.HTMl&lt;/A&gt;  &lt;BR /&gt;&lt;BR /&gt;Andy</description>
    <pubDate>Wed, 11 Jan 2006 00:29:01 GMT</pubDate>
    <dc:creator>Andy Bustamante</dc:creator>
    <dc:date>2006-01-11T00:29:01Z</dc:date>
    <item>
      <title>Daylight Savings (again!)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/daylight-savings-again/m-p/3706445#M8855</link>
      <description>Ok, so down here (down under), we have the Commonwealth Games happening at the end of March.&lt;BR /&gt;The government have decided that as the majority of TV viewers won't be in Oz or NZ, the change to daylight savings will be a week later than normal.(So the Poms don't have to get up too early!).This has of course nothing to do with money generated by TV advertising.&lt;BR /&gt;&lt;BR /&gt;Anyway, what do I need to do (if anything) to change the automatic daylight savings to kick in on the first Sunday in April, rather than the last Sunday in March.&lt;BR /&gt;&lt;BR /&gt;OpenVms V7.3-2, tpip V5.4, no DTSS, Decnet V over tcpip, auto_dlight_sav set to 1.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Matt (who is both Pom and Aussie)&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Jan 2006 22:53:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/daylight-savings-again/m-p/3706445#M8855</guid>
      <dc:creator>matthew robey</dc:creator>
      <dc:date>2006-01-10T22:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Daylight Savings (again!)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/daylight-savings-again/m-p/3706446#M8856</link>
      <description>Matthew, we have our OPS make the changes using command procedures. We run VMS 7.3-2 and RDB. From an application point of view only some aspects uses dates stored as data. RDB use sequence numbers so it won't break. &lt;BR /&gt;I would ensure that time offsets are used. Experience has show that if OPS key in times manually say using a set time command then they might get the year, month or all wrong.&lt;BR /&gt;After considering the applications affects and I would submit a batch job using something similar to our MENU scripts. &lt;BR /&gt;&lt;BR /&gt;An extract from our script is this&lt;BR /&gt;&lt;BR /&gt;$ current_time = f$cvtime()&lt;BR /&gt;$ current_time_plus_one_hour = f$cvtime("+01:00")&lt;BR /&gt;$ current_time_minus_one_hour = f$cvtime("-01:00")  &lt;BR /&gt;$ clearx&lt;BR /&gt;$ ws bold + "This Procedure will set the time FORWARDS by exactly one hour from NOW" + normal&lt;BR /&gt;$ ask "''f$fao("Confirm change of time !/!_from !AS !/!_to   !AS (y/n) ",current_time,current_time_plus_one_hour)'" ans&lt;BR /&gt;$ if ans&lt;BR /&gt;$ then&lt;BR /&gt;$       if f$getsyi("CLUSTER_MEMBER") &lt;BR /&gt;$       then&lt;BR /&gt;$               ws bold + "$ set time/cluster=''current_time_plus_one_hour'" + normal&lt;BR /&gt;$               set time="+01:00"/cluster&lt;BR /&gt;$               ws bold + f$fao("Current system time on the Cluster is !%D",0) + normal&lt;BR /&gt;$       else&lt;BR /&gt;$               ws bold + "$ set time=''current_time_plus_one_hour'" + normal&lt;BR /&gt;$               set time="+01:00"&lt;BR /&gt;$               ws bold + f$fao("Current system time !%D",0) + normal&lt;BR /&gt;$       endif&lt;BR /&gt;$     request/to=security "''f$getjpi("","USERNAME")' has changed the SYSTEM TIME Forwards."&lt;BR /&gt;$ else&lt;BR /&gt;$       ws tab + "Request terminated."&lt;BR /&gt;$ endif&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Jan 2006 23:02:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/daylight-savings-again/m-p/3706446#M8856</guid>
      <dc:creator>Thomas Ritter</dc:creator>
      <dc:date>2006-01-10T23:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: Daylight Savings (again!)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/daylight-savings-again/m-p/3706447#M8857</link>
      <description>&lt;BR /&gt;See chapter 6 of the System Manager's Manual vol 1 and sys$examples:DAYLIGHT_SAVINGS.COM.  You'll need to change auto_dlight_sav to 0 (and reboot) to prevent the automatic change.  &lt;A href="http://h71000.www7.hp.com/doc/732FINAL/aa-pv5mh-tk/aa-pv5mh-tk.HTMl" target="_blank"&gt;http://h71000.www7.hp.com/doc/732FINAL/aa-pv5mh-tk/aa-pv5mh-tk.HTMl&lt;/A&gt;  &lt;BR /&gt;&lt;BR /&gt;Andy</description>
      <pubDate>Wed, 11 Jan 2006 00:29:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/daylight-savings-again/m-p/3706447#M8857</guid>
      <dc:creator>Andy Bustamante</dc:creator>
      <dc:date>2006-01-11T00:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Daylight Savings (again!)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/daylight-savings-again/m-p/3706448#M8858</link>
      <description>See VMS FAQ section 4.4.1 &lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/faq/vmsfaq_006.html#time13" target="_blank"&gt;http://h71000.www7.hp.com/faq/vmsfaq_006.html#time13&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Jan 2006 04:18:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/daylight-savings-again/m-p/3706448#M8858</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2006-01-11T04:18:25Z</dc:date>
    </item>
    <item>
      <title>Re: Daylight Savings (again!)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/daylight-savings-again/m-p/3706449#M8859</link>
      <description>In case there are any other Aussies who want to know:&lt;BR /&gt;&lt;BR /&gt;Modified the AUSTRALASIA file in &lt;BR /&gt;SYS$COMMON:[SYS$ZONEINFO.SYSTEM.SOURCES]&lt;BR /&gt;&lt;BR /&gt;added the following line under NSW &lt;BR /&gt;&lt;BR /&gt;Rule    AN      2006    only    -       Apr     Sun&amp;gt;=1  2:00    0       -&lt;BR /&gt;&lt;BR /&gt;Then $ zic -v -d sys$common:[sys$zoneinfo.system] australasia&lt;BR /&gt;(note the space between ] and australasia)&lt;BR /&gt;&lt;BR /&gt;Then @sys$manager:utc$time_setup&lt;BR /&gt;&lt;BR /&gt;And the logical  "SYS$TIMEZONE_RULE" = "EST-10EST-11,M10.5.0/02,M4.1.0/03"&lt;BR /&gt;&lt;BR /&gt;So in theory all should be sweet for April.&lt;BR /&gt;&lt;BR /&gt;Thanks for your help.&lt;BR /&gt;&lt;BR /&gt;Matt</description>
      <pubDate>Wed, 11 Jan 2006 16:24:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/daylight-savings-again/m-p/3706449#M8859</guid>
      <dc:creator>matthew robey</dc:creator>
      <dc:date>2006-01-11T16:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: Daylight Savings (again!)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/daylight-savings-again/m-p/3706450#M8860</link>
      <description>Matt,&lt;BR /&gt;&lt;BR /&gt;  Please log a case. There's an updated timezone rule "patch" for Australiasia. It may eventually make its way out to the Sydney CSC FTP site.</description>
      <pubDate>Wed, 11 Jan 2006 19:31:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/daylight-savings-again/m-p/3706450#M8860</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2006-01-11T19:31:33Z</dc:date>
    </item>
  </channel>
</rss>

