CreateODBCDateTime monkeys with Daylight Saving Time!!

If one uses CreateODBCDateTime to convert a date into the
proper format for storing in a SQL Server database, and one runs
this operation on a date between 0200 and 0300 on the day that
Daylight Saving Time changes, the function will change the time
forward or backward one hour. IT WILL DO THIS EVEN IF THE DATE YOU
ARE STORING IS UTC, thus rendering UTC times INVALID because they
do not have DST. Why does this function monkey with DST at all?

I have several international web sites on this server, one of
which has over 100,000 users who have contributed over 70 million
records, all with UTC timestamps. The problem occurs during the one
hour period EVERY YEAR when daylight saving time is started. It
does not do this in the fall when the time reverts. So, yes, the
problem only occurs during 1 hour out of 8,760 hours, but when you
start with 70 million records over 5 or 6 years...
But the danger is for anybody who stores or manipulates a
date/time OTHER THAN the date/time that is being used internally to
the server. In other words, if your server is set to Central Time,
and you have users in Hawaii or Arizona who need to store their own
date/time, it is likely to apply Central Timezone RULES to that
date/time, even if Hawaii and Arizona don't use DST.
Let's say you're scheduling operating rooms in a hospital in
Honolulu. All the CF routines are going to make sure to shift those
times forward an hour without warning, have a nice day. In my case,
it is happening with UTC, but it could be ANY time zone that has
different rules than the ones on your server.
Yes, I can probably figure out a different way to process
times, but this is a massive system with thousands of different
templates. In fact it affects several pretty massive software
systems with millions of lines of code, so it's not as if I can
just change a few SQL queries and be done with it.
It probably should be a rule for anybody operating a
ColdFusion server in an international setting, where dates and
times from different regions might need to be stored in a database,
to set up the server on UTC time just to avoid this problem.
Me, I have to
a. find all the places this will affect in thousands of lines
of code,
b. try to decide what impact going to UTC on the server will
have on things like scheduled tasks, email servers, etc,
c. then figure out whether there is any way to repair tens of
thousands of corrupted records

Similar Messages

  • SCEP scheduled scan time problem with daylight-saving time?

    Since the daylight-saving time change from last weekend (1 hour earlier) we see that a large group of SCEP clients start their scheduled scan at 11:00 where we have it set in the policy in SCCM2012 at 12:00.
    Most workstations still begin their scan at 12:00.
    Any idea?
    Regards, Bob

    I’m cleaning up old post, did you figure this out yet, if so what was the solution?
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Upgrading Linux java 1.4.2 AMD 64 bit edition with Daylight Saving Time

    I am running 64 bit version of Java 1.4.2 It is the linux blackdown version because at the time Sun did not support a 64 bit version. Now I would like to upgrade java to fix the possible problems with the Daylight Savings Time change.
    I have tried the tzupdater tool released by Sun but it did not work on my 64 bit machine, stating it could not find any tzone data to update.
    Next I looked into updating the JRE itself but it appears that Sun still does not offer a AMD 64 bit version for 1.4.2 linux. They only seem to have support for 64 bit in Java 5 and 6.
    Any ideas as to my best migration path? Should I consider taking the plunge and upgrading straight to Java 6 - although this will require updating Tomcat also and possibly breaking many of the 3rd party jar files we have in use.
    Message was edited by:
    Hatton

    My OS configuration is identical to your (save for the graphics card) and I do not experience these issues at all. I run pop-up blockers, firewalls, etc., etc., myself, and even mess around extensively with my browser settings (for debugging my own development), and have only EVER experienced an apparent lock-up under one condition:
    If an applet is signed, and pops up and dialog, OR if there is any other condition under which the PLUGIN displays a dialog box, and during this time your browser is no longer in focus, when you reactive the browser window, the dialog box does not appear in the front. What I'm saying is that there might be an active MODAL DIALOG box, but which is not being seen. These dialog boxes do not appear on the taskbar under windows (just like the calendar doesn't) but you can active it by using the Alt+Tab function of Windows. When I've experienced support calls regarding this sort of problem, I get the user to check Alt+Tab to check if there is a hidden dialog box (which is most often the case, since we used signed applets).
    I'm also a little confused by your reference to http://www.giga-byte.com - this site doesn't even load an applet when I open it.

  • TS1638 When syncing calendar on iPhone with Microsoft Office whole day appointments get moved to double day. I am aware this may be caused by conflicts in clock, viz daylight saving time. However, Outlook seems OK and takes time from Windows time and zone

    When syncing my iPhone to Microsoft Outloook all the full day appointments become two day - 2300hrs to 2300hrs next day. Sometimes this will include a nuber of a single day of 23 hours. Looked at solutions and all point to a clock issue or a daylight saving and winter times. Outlook operating time is directly from the Windows clock that incudes the change of times for daylight saving etc. It is set for UTC Dublin, Edinburgh, Lisban, London with daylight saving included in the options. I can't see what I can do.

    When syncing my iPhone to Microsoft Outloook all the full day appointments become two day - 2300hrs to 2300hrs next day. Sometimes this will include a nuber of a single day of 23 hours. Looked at solutions and all point to a clock issue or a daylight saving and winter times. Outlook operating time is directly from the Windows clock that incudes the change of times for daylight saving etc. It is set for UTC Dublin, Edinburgh, Lisban, London with daylight saving included in the options. I can't see what I can do.

  • Conversion mapping is losing time zone data during daylight saving time

    We have a problem with conversion of Calendars to timestamp with timezone for the last hour of Daylight Saving Time (e.g. 01:00 EDT - 01:59 EDT) where it is being interpreted as Standard Time which is in reality 60 minutes later.
    We've written a JUnit test case that runs directly against TopLink to avoid any issues with WAS and its connection pooling.
    The Calendar theDateTime comes from an object called TimeEntry which is mapped to a TIMESTAMP WITH TIMEZONE field using conversion mapping with Data Type TIMESTAMPTZ (oracle.sql) and Attribute Type Calendar (java.util).
    We are using:
    Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build Patch for Bugs 5145690 and 5156075)
    Oracle9i Enterprise Edition Release 9.2.0.7.0 - 64bit Production
    Oracle JDBC driver Version: 10.2.0.1.0
    platform=>Oracle9Platform
    Execute this Java:
    SimpleDateFormat format = new SimpleDateFormat("MM/dd/yyyy HH:mm z");
    TimeZone tzEasternRegion = TimeZone.getTimeZone("US/Eastern");
    Calendar theDateTime = Calendar.getInstance(tzEasternRegion);
    theDateTime.setTime(format.parse("10/29/2006 01:00 EDT"));
    Persist to the database and execute this SQL:
    SELECT the_date_time, EXTRACT(TIMEZONE_REGION FROM the_date_time), EXTRACT(TIMEZONE_ABBR FROM the_date_time), EXTRACT(TIMEZONE_HOUR FROM the_date_time)
    FROM time_table WHERE time_table_id=1
    This provides the following results:
    THE_DATE_TIME EXTRACT(TIMEZONE_REGION FROM the_date_time) EXTRACT(TIMEZONE_ABBR FROM the_date_time) EXTRACT(TIMEZONE_HOUR FROM the_date_time)
    29-OCT-06 01.00.00.000000 AM US/EASTERN US/Eastern EST -5
    The wrong time zone is in the database. It should be EDT -4. Let's test the SQL that should be generated by TopLink. It should look like the following.
    Execute this SQL:
    UPDATE time_table SET the_date_time = TO_TIMESTAMP_TZ('10/29/2006 01:00 US/Eastern','mm/dd/yyyy HH24:MI TZR') WHERE (time_table_id=1)
    SELECT the_date_time, EXTRACT(TIMEZONE_REGION FROM the_date_time), EXTRACT(TIMEZONE_ABBR FROM the_date_time), EXTRACT(TIMEZONE_HOUR FROM the_date_time)
    FROM time_table WHERE time_table_id=1
    This provides the same results:
    THE_DATE_TIME EXTRACT(TIMEZONE_REGION FROM the_date_time) EXTRACT(TIMEZONE_ABBR FROM the_date_time) EXTRACT(TIMEZONE_HOUR FROM the_date_time)
    29-OCT-06 01.00.00.000000 AM US/EASTERN US/Eastern EST -5
    Now, execute this SQL:
    UPDATE time_table SET the_date_time = TO_TIMESTAMP_TZ('10/29/2006 01:00 EDT US/Eastern','mm/dd/yyyy HH24:MI TZD TZR') WHERE (time_table_id=1)
    SELECT the_date_time, EXTRACT(TIMEZONE_REGION FROM the_date_time), EXTRACT(TIMEZONE_ABBR FROM the_date_time), EXTRACT(TIMEZONE_HOUR FROM the_date_time)
    FROM time_table WHERE time_table_id=1
    This provides better results:
    THE_DATE_TIME EXTRACT(TIMEZONE_REGION FROM the_date_time) EXTRACT(TIMEZONE_ABBR FROM the_date_time) EXTRACT(TIMEZONE_HOUR FROM the_date_time)
    29-OCT-06 01.00.00.000000 AM US/EASTERN US/Eastern EDT -4
    The correct time zone is now in the database. Let's test reading this with the following Java:
    System.out.println("cal= " + theDateTime);
    System.out.println("date= " + theDateTime.getTime());
    System.out.println("millis= " + theDateTime.getTimeInMillis());
    System.out.println("zone= " + theDateTime.getTimeZone());
    This provides the following results:
    cal= java.util.GregorianCalendar[...]
    date= Sun Oct 29 01:00:00 EST 2006
    millis= 1162101600000
    zone= sun.util.calendar.ZoneInfo[id="US/Eastern",...]
    The TimeZone object is correct since we are using the US/Eastern regional time zone, but the millis are wrong which makes the time EST instead of EDT. The millis should be 1162098000000.
    The conversion from java.util.Calendar to TIMESTAMPTZ loses the actual offset when setting to a regional time zone. It can maintain this info by specifying it explicitly.
    The conversion from TIMSTAMPTZ to java.util.Calendar also loses the actual offset even if the correct offset is in the database.
    Has anyone else encountered this conversion problem? It appears to be a conversion problem in both directions. I know that the Calendar is lenient by default and will assume Standard Time if time is entered during the repeated 1 o'clock hour at the end of Daylight Saving Time, but the Calendars we are using are explicit in their time, so this would be classified as data corruption.
    Nik

    Opened an SR. Looks like there is a problem with conversion either in TopLink or in JDBC.

  • Brazil Daylight Saving Time Problem

    In Brazil, we enter the summer time and my blackberry 9800 torch automatically work, but when I synchronized with the playbook, some problems arose.
    The time in the menu setting is correct, as you can see in this image:
    But the wrong time remains the main screen:
    Does anyone have the same problem and knows how to fix it?
    tks,

    It did not work.
    It is indifferent to select manual or automatic, the problem persists.
    I'm in Brazil and with the correct time zone, but we are on daylight saving time.
    On the menu setting time and date, the time is right, however, in early 1 hour on application clock and and late 1 hour on the main screen.

  • Clock UI control and daylight saving time.

    Hi,
    We have a customer that has several sites around the world.
    In a VC-model I like to use the Clock UI control to display the times of the different sites.
    This can be done by setting the ‘time zone’ in the control properties.
    A long ago we have introduced ‘daylight saving time’.
    It seems that the clock control does not do anything with this ?
    How can I change the time zone when the model is running ?
    Can it be done by an expression and how ?
    There is also a problem of the country, some have DST, others don’t.
    See http://en.wikipedia.org/wiki/Daylight_saving_time_around_the_world
    Example:
    I have 2 clocks and the end-user lives in Amsterdam:
    Amsterdam, time zone = GMT + 1
    Santiago, time zone = GMT – 4
    During the winter in Amsterdam it is summer in Santiago and has ‘daylight saving’ so the time in Santiago should be GMT – 3 in stead of GMT -4.

    With the current version of VC / flash, it is not possible to display the correct time all the year 'round.
    If you only want to show the (user) current time then you can use this VC clock object.
    If you need to show clocks from different cities around the world, than its better NOT to use the VC clock.
    Because you can not define the country and city in the clock properties, that determine the use of DST, it will not always show the correct (default / DST) time.
    Solution:
    Add a HTLM-view to your model with a links to a web clock.
    Nice (free !) clocks can be found (and customized) on <a href="http://www.worldtimeserver.com/clocks/wtsclock001.aspx">worldtimeserver.com</a> or <a href="http://www.timeanddate.com/clocks/free.html">timeanddate.com</a> .
    Example:
    For the city Santiago (Chile) the URL =
    http://free.timeanddate.com/clock/ielrw91/n232/tluk/fn13/fs16/fc009/tt0/tw1/td2/th1/ts1/tb4

  • Daylight Saving Time Changes for 2007

    Hello Friends
    Sun's J2SE 1.4.2_11 has taekn care of the new Daylight Saving Time changes in accordance with The Energy Policy Act of 2005. Does anyone know if bea has incorporated same changes to their Jrockit, if so then starting which version.
    http://java.sun.com/developer/technicalArticles/Intl/USDST/
    Thanks for the answers in advance.
    Regards
    Rajeev Bhogal

    Hello All
    We currently compile and run our application with Jrockit 1.4.2_04 (build 1.4.2_04-b05), if we change to minor version 11 for 1.4.2 should we recompile the application. I would think that DST related binaries would only be called at run time not compile time, however I am far from being a compiler expert. Can any learned friend shed some light.
    Henrik what do you think.
    Regards and Thanks
    Rajeev Bhogal

  • App. Servers Patches (Fix) for U.S. Daylight Saving Time Changes in 2007

    Hi --
    I am having an issue with Oracle 10g Application Server (9.2.0.4 and 10.1.2) and BEA Weblogic (8.1.4) upgrading their corresponding JDK's to resolve the Daylight Saving Time Changes. Right now these app servers are using SUN jdk version, whcih prone to the DST issue, less that JDK 1.4.2.11.
    The details about the DST can be found at this location:
    http://java.sun.com/developer/technicalArticles/Intl/USDST/
    Thanks

    Hi,
    Thanks for posting.
    Metalink Note:403311.1 for DST E-Business Suite (EBS))Patches.
    Regards,
    Phani.K

  • Daylight Saving Time Patch

    Hi,
    I'm using instantclient-basic-solaris32-10.2.0.2. Does anyone know if I need to patch this client for the Daylight Saving Time change coming up?
    Thanks.

    Hi,
    Time zone and DST information are only used in TIMESTAMP WITH LOCAL TIME ZONE (TSLTZ) and TIMESTAMP WITH TIME ZONE (TSTZ) datatypes, and not for any other datatype. If TSLTZ or TSTZ types are not used there is no requirement to make any updates to the time zone rules.
    For more information, you should read Metalink Doc ID 359145.1
    More information, you can get here:
    http://blogs.ittoolbox.com/database/technology/archives/changes-to-daylight-savings-time-in-2007-may-affect-your-databases-db2-oracle-and-others-13443
    Cheers

  • Recurring events off by 60 minutes after daylight saving time switch

    I searched but didn't find this exact issue anywhere. Following this past weekend's switch to Daylight Saving Time (DST), iCal recurring events have been shifted one hour later. It is a problem that I encountered with my own web calendaring application, wherein the offset between UTC and a given time zone changes with the coming and going of DST. I am curious why Apple has never instituted a fix for this, especially considering that the fix is so simple. All that must be done is detect whether the original datetime is in DST or not. If it is not, and the given recurrence is, then you must subtract 60 minutes from the recurrence's datetime. Similarly, if the originating datetime is in DST, and the given recurrence is not, then you must add 60 minutes to the recurrence's datetime.

    I have the same problem but much worse. Only 5 of my 18 recurring weekly events have shifted, so I didn't realize that anything was off until I missed one of my classes today. This seems weird....

  • Exchange Active Sync UTC Daylight Saving Time

    Color me a bit confused. I am attempting to write an IOS client application to communicate with Exchange ActiveSync and display calendar information. But I am seeing some conflicting information in the protocol docs when compared to what I am getting from
    Exchange. Either that or I am somehow misinterpreting one or the other.
    My intent is to save an appointment in my local database in Coordinated Universal Time and then have the UI read in the information and display it as appropriate to the local timezone. In this way an recurring appointment created before daylight saving time
    for Noon will still be at the same time of day in local time as an appointment created during daylight saving time for noon. But they are not.
    My understanding of the documentation is as such:
    In MS-ASCAL pdf section 2.2.2.40 (roughly page 34) it says for Start Time that : ...the value of this element is a dateTime data type as specified in MS-ASDTYPE section 2.3.
    Moving to MS-ASDTYPE section 2.3 (roughly page 7) the dateTime value is specified in the format of ISO-8601 and all dates are given in Coordinated Universal Time (UTC)
    Looking up coordinated universal time I see that UTC does not changed with the seasons as local or civil time does and therefore DOES NOT support daylight saving time. This makes sense, as DST is decidedly local and is ignored by many areas. You cannot know
    from the perspective of UTC whether or not to apply a DST offset without knowing what timezone and area the time represents, therefore no daylight saving time can be supported. Based on this information I should be able to just slap the dates into my database
    as they are and merely have the UI adjust itself to display them properly.
    However, as a tested I began seeing a divergence of an hour between the two appointments in the database before the UI has even read them. To confirm this I created two recurring appointments representing Lunch at 12 noon local time. One that starts on March
    1st 2014 (Standard Time) and one that starts on March 10th 2014 (daylight saving time) in the eastern timezone. This should be March X 2014 at 1700 hours in both cases should it not?
    In the WBXML/XML that I am receiving I am getting two different times. The appointment that starts during standard time gives me a start time of 20140301T170000Z. The appointment that starts after daylight saving time is in effect locally gives me 20140301T160000Z.
    The difference between the two times is 1 hour, which is the daylight saving time offset. It is my perception based on everything that I have read both in the microsoft protocol documentation and outside it that these two times should be the same and that whatever
    client that gets to display them should be the one putting the offset in place as needed. Noon local time is noon local time but local time is the province of the local municipality/timezone, not that of UTC.
    So my question is what exactly is going on here? Are the start/stop/date stamp date times in UTC or not. If they are in UTC, then why are they offset by an hour instead of being at the same time? Obviously outlook displays these correctly for local time,
    because both appear at noon. But in my case my database contains locally adjusted times instead of the UTC times I thought I was getting which is throwing off when those appointments appear in the UI.
    Can someone please clarify what's going on here and what I should be seeing?
    Thanks.
    E

    Thanks for the reply, however after doing what is said the problem still remains. I did not try the manual approach, because of the time that would take with calendars that change at least daily.
    I am running the latest update of ICal and IPod, you would think this would have been addressed with one of the updates to allow the sync to work correctly with 5th generation IPods.
    I am going to try and turn off day light savings time set the clock to a Central Time zone and see if that works, I do not cross time zones much, anymore.
    MacBook   Mac OS X (10.4.9)  

  • Gmt vs. labview daylight saving time XL

    I am manipulating XL sheets with time& dates. Everything works fine except that all XL times are in GMT (number of fractional days since 1900). No problem to jump to Mac 1904 reference, but a problem to get rid of the daylight saving time offset without changing my Windows setting. Is there a way to get dates and times in string readable format from my GMT number from the time of EXCEL? In other words, can I get the offset somewhere from windows to adjust the number of seconds since 1904 to eliminate this daylight offset? Not the offset of the current time, but well the offset of the past instant from my XL sheets.
    I could do that via XL and activeX, but I suspect someone has a vi to do the trick.
    I guess the time jumps for daylig
    ht saving times lies somewhare in Windows.
    Gérard

    It looks to me like the "is DST" output of Seconds to Date/Time always works on today's date, not a date/time record you pass to it. So, you can use it to tell if Daylight Savings Time is active now, but you can't use it to check if DST was active at a particular date and time, without changing the system time clock in the PC.
    See the attached LV 6.1 VI.
    Attachments:
    Is_DST.vi ‏33 KB

  • Disable daylight saving time

    Hi all,
    I know this subject has been posted before, but i haven't found any suitable response. I need to disable daylight saving time, but i haven't been lucky yet. I've tried several things:
    // Option A
    Calendar calendar= new GregorianCalendar(TimeZone.getTimeZone("GMT+01:00"));
    // Option B
    Calendar calendar= new GregorianCalendar(TimeZone.getTimeZone(Some String Suitable));
    // Option C
    Calendar calendar= new GregorianCalendar(new SimpleTimeZone(int, Some String Suitable));
    // Option D
    SimpleTimeZone stz;
    stz.setDSTSavings(0); // I get an errorAnd many other solutions, but it keeps applying daylight saving time and changing from 25/03/2007 01:00 to 25/03/2007 03:00. Any workarounds that doesn't involve to build my own Calendar? Also i can't disable it in the Operating System because it would affect other applications.
    Thanks in advance.

    Hi man, i've tried that also and still the same problem, code:
    // Japan hasn't DST
    Calendar calendar= new GregorianCalendar(TimeZone.getTimeZone("GMT+9"), Locale.JAPAN);
             calendar.set(Calendar.MONTH, Calendar.MARCH);
             calendar.set(Calendar.DAY_OF_MONTH, 24);
             for (int i= 0; i< 50; i++) {
                 System.out.println(calendar.getTime());
                 calendar.add(Calendar.HOUR, 1);
             }Also i've tried with identical result:
    Calendar calendar= new GregorianCalendar(TimeZone.getTimeZone("Asia/Tokyo"), Locale.JAPAN);
             calendar.set(Calendar.MONTH, Calendar.MARCH);
             calendar.set(Calendar.DAY_OF_MONTH, 24);
             for (int i= 0; i< 50; i++) {
                 System.out.println(calendar.getTime());
                 calendar.add(Calendar.HOUR, 1);
             }And finally i've tried the "set" method (in several lines) and still the same result:
             Calendar calendar= new GregorianCalendar(TimeZone.getTimeZone("Asia/Tokyo"), Locale.JAPAN);
             calendar.setTimeZone(TimeZone.getTimeZone("Asia/Tokyo"));
             calendar.set(Calendar.MONTH, Calendar.MARCH);
             calendar.set(Calendar.DAY_OF_MONTH, 24);
             calendar.setTimeZone(TimeZone.getTimeZone("Asia/Tokyo"));
             for (int i= 0; i< 50; i++) {
                 System.out.println(calendar.getTime());
                 calendar.add(Calendar.HOUR, 1);
                 calendar.setTimeZone(TimeZone.getTimeZone("Asia/Tokyo"));
             }Output:
    Sat Mar 24 10:11:38 CET 2007
    Sat Mar 24 11:11:38 CET 2007
    Sat Mar 24 12:11:38 CET 2007
    Sat Mar 24 13:11:38 CET 2007
    Sat Mar 24 14:11:38 CET 2007
    Sat Mar 24 15:11:38 CET 2007
    Sat Mar 24 16:11:38 CET 2007
    Sat Mar 24 17:11:38 CET 2007
    Sat Mar 24 18:11:38 CET 2007
    Sat Mar 24 19:11:38 CET 2007
    Sat Mar 24 20:11:38 CET 2007
    Sat Mar 24 21:11:38 CET 2007
    Sat Mar 24 22:11:38 CET 2007
    Sat Mar 24 23:11:38 CET 2007
    Sun Mar 25 00:11:38 CET 2007
    // HERE AGAIN !!!
    Sun Mar 25 01:11:38 CET 2007
    Sun Mar 25 03:11:38 CEST 2007
    Sun Mar 25 04:11:38 CEST 2007
    Sun Mar 25 05:11:38 CEST 2007
    Sun Mar 25 06:11:38 CEST 2007
    Sun Mar 25 07:11:38 CEST 2007
    Sun Mar 25 08:11:38 CEST 2007
    Sun Mar 25 09:11:38 CEST 2007
    Sun Mar 25 10:11:38 CEST 2007
    Sun Mar 25 11:11:38 CEST 2007
    Sun Mar 25 12:11:38 CEST 2007
    Sun Mar 25 13:11:38 CEST 2007
    Sun Mar 25 14:11:38 CEST 2007
    Sun Mar 25 15:11:38 CEST 2007
    Sun Mar 25 16:11:38 CEST 2007
    Sun Mar 25 17:11:38 CEST 2007
    Sun Mar 25 18:11:38 CEST 2007
    Sun Mar 25 19:11:38 CEST 2007
    Sun Mar 25 20:11:38 CEST 2007
    Sun Mar 25 21:11:38 CEST 2007
    Sun Mar 25 22:11:38 CEST 2007
    Sun Mar 25 23:11:38 CEST 2007
    Mon Mar 26 00:11:38 CEST 2007
    Mon Mar 26 01:11:38 CEST 2007
    Mon Mar 26 02:11:38 CEST 2007
    Mon Mar 26 03:11:38 CEST 2007
    Mon Mar 26 04:11:38 CEST 2007
    Mon Mar 26 05:11:38 CEST 2007
    Mon Mar 26 06:11:38 CEST 2007
    Mon Mar 26 07:11:38 CEST 2007
    Mon Mar 26 08:11:38 CEST 2007
    Mon Mar 26 09:11:38 CEST 2007
    Mon Mar 26 10:11:38 CEST 2007
    Mon Mar 26 11:11:38 CEST 2007
    Mon Mar 26 12:11:38 CEST 2007
    Any help will be appreciated.

  • DST Daylight Saving Time

    I am using Solaris 9 on Sun hardware. I have set the Time Zone as Asia/Karachi. I dont know how the Daylight Saving Time is enabled with this setting. I just want DST to Trun Off. How can I disable DST for my zone?

    Thank you for all the reply. Finally, I've solved the problem. For Tunisia there is no DST according to this page: http://www.timeanddate.com/worldclock/timezone.html?n=253&syear=2010
    So, I did the followings:
    # vi /usr/share/lib/zoneinfo/src/africa
    I modified the rules according to the following:
    Rule Tunisia 2006 2008 - Mar lastSun 2:00s 1:00 S
    Rule Tunisia 2006 2008 - Oct lastSun 2:00s 0 -
    Finally I run the following command:
    # zic /usr/share/lib/zoneinfo/src/africa
    It is solved my problem!
    BR,
    Gyorgy

Maybe you are looking for

  • How to dynamically display value in column header

    Hi, I have a requirement where in the user selects a particular value from a drop down list, and the same has to be displayed in the column header. For example, there are A,B,C,D types of quantities in a drop down list. Once the user selects these va

  • Embedded YouTube videos do not play on my Mac Mini

    Embedded YouTube videos don't play in non-YouTube web pages.  I can click the link in the top of the video to be taken directly to YouTube, and I can watch the video there, but when I click the big Play button in the middle of the video window, I jus

  • SQLDeveloper running on Citrix - Best Practice ?

    Dear all, is there any kind of advice on how to configure SQLDeveloper when running on Citrix? At the moment I am facing the problem that it is working allright, but every time I log on to Citrix all my configurations are lost. My Windows-Home is map

  • CSS-Directing request to particular file on webserver

    Hi , I am trying to direct user request to particular file on webserver. We have many customer using same portal through different url(DNS Alias). Is it possible that CSS can direct request to a file (e.g xxx.html) on webserver instead of direction o

  • Installing JCA environment Error: eventmanagement-webapp] is a system comp.

    hi *, whenever i try to do this: http://developers.sun.com/docs/javacaps/designing/jcapssunjcaad.inst_base-cmpts_t.html i am getting the following error: $ asant -f ~/AdapterPack/Runtime/install.xml install Buildfile: /home/caps/AdapterPack/Runtime/i