Getting one day difference in add_months function

when i am using the add_months for a
particular days i am getting one day
difference
ex : select add_months(to_date('30-aug-2000',
'DD-mon-YYYY'),27) from dual;
result : 30-nov-2002
select add_months(to_date('30-nov-2000','DD-mon-YYYY'),-27) from dual;
result : 31-aug-2000.
differnce between : 31-aug-2000 and 30-aug-2000
is comming

When you are passing the last day in the month to the add_month function ( 30-NOV-2002) it will always return the last day in the resulting month ( 31-AUG-2000).
This is a known Oracle bug and you'll need to create your own logic for adding month to avoid this problem. You can use last_day function in there.

Similar Messages

  • Why my calendar display different there is one day difference from different  when I see main screen and open the calendar

    See my Why my calendar display different there is one day difference from different  when I see main screen and open the calendar

    I too am having the same issue only I am in Regina, Canada.  iCloud appears to think Regina, Canada is in the Central time zone which it is, but it does not use Daylight Savings time.  My PC is Windows 7 and I am using Outlook 2010.  I have iCloud on iPhone 5 and iPad 2.   Terribly frustrating!

  • How to get one day back data from selecting date .

    Hi Experts,
                   Iam using DB2 database .How to see one day back of selected date . i tried by using prompts .
    Date=(@prompt('Mssg','D',,mono,free)-1 days)   Date is a date object and i applied prompt for date . butting i'm facing error . so kindly help me to over come this issue .
    Regards
    Dinesh

    first capture Date on univers by simply using your formula
    Date=(@prompt('Mssg','D',,mono,free))
    Now to get the previous date i.e 1 day back date
    create another variable called
    back_Date = (Date - 1 Day)
    Thanks,
    Swapnil

  • Memo creation with one day difference / Missing fe...

    Hi,
    I have a N70 and the PC Suite is version 7.1.51.0.
    Whenever I create a memo (calendar) or edit it, the Communication Centre saves it as one day earlier.
    Well, I just wanted to report this bug. I searched here in forum I've found some people with similar.
    I can't understand how Nokia let this kind of bug pass...
    And don't even has an official bug report channel (one like contact us, so we can make our product better).
    BTW, I already have reported by some weird channel (a survey I guess) that I also can't figure out why PC Suite does not manage (create/edit/delete) Notes...
    []s, Ramon

    Hi,
    I have a N70 and the PC Suite is version 7.1.51.0.
    Whenever I create a memo (calendar) or edit it, the Communication Centre saves it as one day earlier.
    Well, I just wanted to report this bug. I searched here in forum I've found some people with similar.
    I can't understand how Nokia let this kind of bug pass...
    And don't even has an official bug report channel (one like contact us, so we can make our product better).
    BTW, I already have reported by some weird channel (a survey I guess) that I also can't figure out why PC Suite does not manage (create/edit/delete) Notes...
    []s, Ramon

  • Get particular day by using date functions in bpel

    Hi all,I want to get the 2nd day from every month of every year.Any body please suggest me how to write the xpath expression for this in bpel .Thq!
    Edited by: 851924 on Dec 28, 2011 2:12 AM

    Not possible....you have to use java embedding.

  • Outlook 2007 calendar with iphone 5 gets one hour difference

    Good morning,
    I've iPhone 5, windows 7 and Outlook 2007. When I sync the calendar with iTunes everything works fine but then tried to sync whith Icloud the calendar entries on my iPhones everything is one hour later than the ones on my Outlook 2007.
    When I create a metting on outlook with the hour correctly on the Icloud and on the Iphone have one hour later.
    When I create a meeting in the iphone, the icloud gets the hour correctly but outlook shows it one hour earlier.
    I've already checked the GMT setting on both Outlook and Windows, also the iPhone sync with my computer time and GMT when I connect it to the docking station so they are always the same.
    Anyone has an idea about what is going wrong?
    Thanks for your time.
    Kind regards,
    Armando

    Hi, wildcoach2652. 
    Thank you for visiting Apple Support Communities. 
    Here a couple troubleshooting articles that I would recommend when experiencing issues syncing calendars. 
    iPhone, iPad, iPod touch: Troubleshooting contact and calendar syncing via USB on Windows
    http://support.apple.com/kb/HT1692
    Advanced troubleshooting for Sync Services on Windows with Microsoft Outlook 2003, Outlook 2007, or Outlook 2010
    http://support.apple.com/kb/TS2776
    Regards,
    Jason H. 

  • How can I get one button to perform two functions?

    here's what I want:
    have one button with a + that opens a pop up using a MSO and then turn that button to a X to close the pop up changing states on the MSO

    1. Create a graphic with plus sign and make it a button
    2. Group it with an empty frame of desired size
    3. Create a graphic with x sign and make it a button
    4. Group it with a frame with a pop up
    5. Create an MSO of the two groups
    6. Assign "goto next state"  to each button

  • Which query will gives the exact one day difference:

    SELECT COUNT(*) AS tot FROM Test WHERE DATETIME BETWEEN TO_DATE('01/01/2012 12:00:00 AM', 'DD/MM/YYYY hh:mi:ss am') AND TO_DATE('01/02/2012 11:59:59 PM', 'DD/MM/YYYY hh:mi:ss am')
    SELECT COUNT(*) AS tot FROM Test WHERE DATETIME BETWEEN TO_DATE('01/01/2012 00:00:00 AM', 'DD/MM/YYYY hh:mi:ss am') AND TO_DATE('01/01/2012 11:59:59 PM', 'DD/MM/YYYY hh:mi:ss am')

    hI,
    First lets assume that you did not mean to have the 1-feb-2012 in the last date of the first select.
    SELECT COUNT(*) AS tot FROM Test WHERE DATETIME BETWEEN TO_DATE('01/01/2012 12:00:00 AM', 'DD/MM/YYYY hh:mi:ss am') AND
    TO_DATE('01/02/2012 11:59:59 PM', 'DD/MM/YYYY hh:mi:ss am')
    --           XXBut you want 1-jan-2012.
    Then I would not use between for this but trunc for beter readability like:
    TAB AS
    select to_date('2012/01/01 00:00:00', 'YYYY/MM/DD HH24:MI:SS') DATETIME FROM DUAL union all
    select to_date('2012/01/01 12:17:22', 'YYYY/MM/DD HH24:MI:SS') DATETIME FROM DUAL union all
    select to_date('2012/01/01 23:59:59', 'YYYY/MM/DD HH24:MI:SS') DATETIME FROM DUAL union all
    select to_date('2012/01/02 00:00:00', 'YYYY/MM/DD HH24:MI:SS') DATETIME FROM DUAL union all
    select to_date('2012/01/02 12:17:21', 'YYYY/MM/DD HH24:MI:SS') DATETIME FROM DUAL
    SELECT
      TO_CHAR(DATETIME,'YYYY/MM/DD HH24:MI:SS') DATETIME
    FROM
      TAB
    WHERE
      TRUNC(DATETIME) = to_date('2012/01/01', 'YYYY/MM/DD')
    ;You may look into an function based index on trunc(datetime) for preformance
    Regards,
    Peter

  • Dates one day behind after java upgrade to 1.6.0_27

    I have upgraded from Java 1.5.0_06 to 1.6.0_27
    After the upgrade ,I saw that dates are a day behind.All dates that lie between November 6th to March 10th are correct but dates
    lying between March 10th to November 5th for any year are wrong.(one day behind)
    Is it something to do with DayLight saying.
    I am using GMT-5 Eastern Time(US & Canada) and Server is set to automatically adjust time coressponding to day light saving.
    I checked,I get the date correct from database and in the factory class also it is correct,in the servlet it is correct but my Viewclass which calls this servlet shows date one day behind.
    I am doing no conversion ,the date fetched from database is stored like
    java.sql.Date beginDate= resultSet.getDAte("BeginDate")
    Schedule.setBegindate(beginDate)
    In the Schedule Object ,the beginDAte is of type Date.
    I am adding all dates to a treeset.I do a printout just after setting,it is correct
    But in my view class ,its one day behind,no manipulation is done.Dont know why is the day incorrect.
    IS it because of Java version.
    Please help

    As I mentioned That
    My view class TestView code is some what like this
    public class TestView extends JFrame
    public TestView(URL url, AppletContext appletContext)
    this.appletContext = appletContext;
    SwingUtilities.invokeLater(new Runnable() {
    public void run()
    testCommand test= new GetDatesCommand();//call factory class which fetches result from database
    Object returnValue = TestUtils.callServlet(test);//calls the servlet .
    if( returnValue instanceof TreeSet )
    TreeSet testSet= (TreeSet)returnValue;
    TestView.setDate(testSet));
    I am calling this constructor of viewtest class from my LoginTestApplet
    public class LoginTEstApplet extends JApplet
    public LoginApplet()
    TimeZone.setDefault(TimeZone.getTimeZone("EST"));
    LoginTestActionperformed()
    new testView(getDocumentBase(), this.getAppletContext());
    As I mentioned the values of dates as fetched from database ,factory class and getDatesCommand class prints fine.Its just inside this class after the call to servlet ,it displays wrong date.
    I have an applet ,LoginTestApplet which is the entry point for my application.Inside the default constructor ,I am doing
    TimeZone.setDefault(TimeZone.getTimeZone("EST"));
    I have mentioned in my second post what results it shows for getDefaults.
    I know its very strange ,the dates gets one day behind immedately only in the view class not in the servlet or the factory class.
    Please let me know if I need to post some more data .

  • TS4605 Hi, I was working in WORD on a file containing huge data. My machine just hung up one day while working and now I seem to have lost the file how do I get it back.  Please HELP me.

    Hi, I was working in WORD on a file containing huge data. My machine just hung up one day while working and now I seem to have lost the file how do I get it back.  Please HELP me.

    Well, iCloud has nothing to do with this.
    Do you have the built-in backup function Time Machine running on your Mac?
    See: http://support.apple.com/kb/ht1427

  • I installed lightroom 5 with a 30 day trial and it finished. Yesterday I installed cc and when I open LR5 I need a serial number. What do I do/how do I get one? Please help Tank you

    I installed lightroom 5 with a 30 day trial and it finished.
    Yesterday I installed cc and when I open LR5 I need a serial number.
    What do I do/how do I get one?
    Please help, Thank you.

    Your photos remain in place, the catalog you have been using will remain. After you install Lightroom from the CC, all you have to do is open your existing catalog and continue right where you left off.

  • Hi, After I try to load either an existing or new project in Adobe Premier Elements 9 I just get a blank grey screen with none of the timeline, etc. boxes on view. This has suddenly happened, one day OK next not! At the top of the screen I get the normal

    Hi, After I try to load either an existing or new project in Adobe Premier Elements 9 I just get a blank grey screen with none of the timeline, etc. boxes on view. This has suddenly happened, one day OK next not! At the top of the screen I get the normal Pre icon, File, Edit, Clip, etc.
    I am planning on purchasing Premier Elements 13, would it be better if I bought a new program rather than download an upgrade, just in case the upgrade doesn't load properly due to the error with my existing program?
    If I the deleted Premier Elements 9 on my PC would I lose all my existing videos that were produced using Premier Elements 9 or would they be saved so that they can still be worked on in Premier Elements 13?
    Does Premier Elements 13 work with Windows 7?
    Thanks
    Terry

    Premiere Elements 13 absolutely works with Windows 7!
    In fact, I'd highly recommend you download the free trial and give it a test run.
    Meantime, go to Windows Update and make sure you have all of the latest Windows updates, including those that don't install automatically. Then go to the nVidia or ATI site and ensure you have the latest driver for your graphics card, and go to Apple.com and ensure you have the latest version of Quicktime, per the program's requirements.

  • The list of extensions for InDesign now have a yellow triangle warning symbol in front of a good many of the extensions and when moused over i get one of two messages:  "Extensions may not function properly because it does not meet the dependency conditio

    The list of extensions for InDesign now have a yellow triangle warning symbol in front of a good many of the extensions and when moused over i get one of two messages:
    "Extensions may not function properly because it does not meet the dependency condition."
    OR
    Extension Status is not consistent with extension set configuration."
    The reason I opened the Extension Manager in the first place was to check to see if I had installed a third party extension.  And I was presented with these warning symbols.  I haven't added anything, I haven't done anything that would cause this.
    Does anyone know how to fix this???
    I am running OSX 10.9.5; Indesign CS6 version 8.0.2 And Adobe Extension Manager version  6.0.8.28.
    Thanks in advance!
    Nina

    Many InDesign pre-installed extensions (Those extensions you have immediately after InDesign installation) define dependency rules in their mxi files. Dependency means that one extension works well only if one or more other extensions are installed and enabled. If this condition is not met, the yellow triangle warning will be shown.
    You can select an extension with warning, click "Advanced" tag page in the lower right panel. You will see "This extension has dependency on: <extension name> ...". Check whether every extensions listed here are available and enabled. If not, enable them. Repeat these steps for all the extensions which have warning.

  • I have been using the kindle app to load books on my ipad. For the past two days I cannot access those books. I might get one page to show then the screen will freeze and I can't turn the page. Does anybody know what is going on. Help!

    For the past two days I cannot access my kindle books on my ipad. I might be able to get one page of a book to appear but then it freezes and I can't turn the page. I tried turning my ipad completely off and then on again. Any ideas to fix this?

    Start by doing a reset ,you will not lose any data
    hold home /sleep button until Apple logo appears  ignore off slider
    first try closing Kindle App on iPad

  • Subscribe to Photoshop CC for photographers but keeps saying my trial has expired. Both Photoshop and lightroom. Smetimes this happens 3 times in one day or perhaps every  third day. When I open either package I get a message saying that I have 00 days le

    Both Photoshop and Lightroom exhibit the same error. Sometimes this happens 3 times in one day or perhaps every  third day. When I open either package I get a message saying that I have 00 days left in the trial and to continue I need to purchase a licence or start a trail. If I click on purchase a Licence the once I log in with Adobe ID I can get started. I have contacted Adobe chat support 6 times. They suggest deleting an opm.db  file and assure me that this will sort the problem and within 24 hours back to square one

    Here it happens only with photoshop cc 2014. i just deleped opm.db i will check again tomorrow.

Maybe you are looking for