• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Impact of Daylight Saving Time (DST)

Participant ,
Feb 19, 2007 Feb 19, 2007

Copy link to clipboard

Copied

Hi

I want to know the impact of the Daylight Saving Time (DST). In next month some states going to change their timings, by adjustings 1 hour.
How this is going be effect on the CF applications as well as batch jobs.
I have an time entry system, will there is any effect on this?
could any one can explain on this.
TOPICS
Advanced techniques

Views

922

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Feb 19, 2007 Feb 19, 2007

Copy link to clipboard

Copied

vkunirs wrote:
> I want to know the impact of the Daylight Saving Time (DST). In next month
> some states going to change their timings, by adjustings 1 hour.
> How this is going be effect on the CF applications as well as batch jobs.
> I have an time entry system, will there is any effect on this?
> could any one can explain on this.

if you don't update for the DST changes your datetimes will be off by one hour.
this includes cf, your OS, your database server, etc. of course this only
matters if your server/application uses US timezone but if it does, by all means
do the updates.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Feb 20, 2007 Feb 20, 2007

Copy link to clipboard

Copied

Hi

Yes.. my application is using the US timezone.
does i just need to change the time..thats it?
or else...does i need to do any other changes?
what about the transaction done in between that time.?
will the batch jobs executes twice? if then what i need to do?
and even for later purpose also does i need to change the batch job timings to effect the DST changes.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Feb 20, 2007 Feb 20, 2007

Copy link to clipboard

Copied

vkunirs wrote:
> Hi
>
> Yes.. my application is using the US timezone.
> does i just need to change the time..thats it?

i wouldn't just simply "change the time". apply the OS, cf, etc. patches & the
server will take of all this.

> what about the transaction done in between that time.?

not sure i understand.

> will the batch jobs executes twice? if then what i need to do?

no, if you have one scheduled right on the DST cusp it might not fire off that
one time.

> and even for later purpose also does i need to change the batch job timings
> to effect the DST changes.

no, apply the patches.

btw what ver of cf?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Feb 20, 2007 Feb 20, 2007

Copy link to clipboard

Copied

Check out http://www.sargeway.com/blog/index.cfm/2007/1/22/ColdFusion-DST for more information. On March 11, there will be no 2:00:00 - 2:59:59 a.m. Any chron job scheduled during that period will not run. And beware of the DateConvert( ) function.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Feb 20, 2007 Feb 20, 2007

Copy link to clipboard

Copied

Hi

thats nice link to look it.
Can I get impactness on JRun/Apache also, because i am running my CF on this.


Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Feb 20, 2007 Feb 20, 2007

Copy link to clipboard

Copied

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Feb 20, 2007 Feb 20, 2007

Copy link to clipboard

Copied

Here is a page that shows the change in behavior of DateDiff. I use it to test that the patches were installed properly. It shows different output before and after applying the patches.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
<head>
<title>Untitled</title>
</head>

<body>

Hours between 3/10 and 3/12: <CFOUTPUT>#DateDiff( "h", "3/10/2007 0:0:0", "3/12/2007 0:0:0" )#</cfoutput>
<BR><BR>
Answer should be: 47 (?)
<BR><BR>
Hours between 3/31 and 4/2: <CFOUTPUT>#DateDiff( "h", "3/31/2007 0:0:0", "4/2/2007 0:0:0" )#</cfoutput>
<BR><BR>
Answer should be: 48

</body>
</html>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Feb 21, 2007 Feb 21, 2007

Copy link to clipboard

Copied

Hi

than Q very much to all.
first i need to update my CF JRE ver. then it will works automatically.

thanks

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Feb 21, 2007 Feb 21, 2007

Copy link to clipboard

Copied

LATEST
Applications which are using the coldfusion server for timed events are using server time. Where are your servers located? If they are in Arizona, Arizona does not recognize daylight savings time.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation