Compute the last 24 hrs from current time

Hi
Given the current time as "20021017 16:00:00 GMT", how can I compute the previous 24 hours. The result will be strings "20021016 16:00:00 GMT" and "20021017 15:59:59 GMT"
Thanks

How about this?
        Calendar cal = Calendar.getInstance();
     cal.add(Calendar.HOUR, -24);Regards,

Similar Messages

  • HT1386 I am unable to synch photo albums from ipad 3 to itunes on my windows pc. In addition to camera roll and ipod cache albums, i have 6 other albums made from pix derived from the camera roll. I have trawled the net for the last 8 hrs in vain!

    Dear Community members,
    I am unable to synch photo albums from iPad 3 to iTunes on my Windows 7 pc.
    In addition to Camera roll and iPod cache default albums, I have 6 other albums made from pix derived from the camera roll. Eg -  Family pix in a folder, Office pix in another, Plant pixs in another, House architecture pix in another.......all also exist in the camera roll.
    I have trawled the net for the last 8 hrs in vain!
    I have ios5 on Ipad 3 and the latest Itunes on Windows PC.
    As a precaution, I have used the windows "add pictures from...." to keep a copy in a separate folder in the windows desktop, but again it has all the pics mixed up together and not sorted as per the various albums in the ipad!
    How to replicate the albums in the windows PC???
    Regards
    Sohal NS

    Sync the photos back to the iPad using iTunes. You have to place the photos into a folder from which you sync photos. All photos that you want to sync to the device must be included in the main photos folder and selected to sync each time that you sync.
    Connect the iPad to the PC and launch iTunes.
    Click on the iPad name on the left side under devices.
    Click on the Photos Tab on the right.
    Click on the Sync Photos From heading in order to select it.
    Select the photos folder that you want to sync from.
    Select all of the albums or photos within the folder that you want to sync.
    Click on Apply in the lower right corner of iTunes
    You can read more here.
    http://support.apple.com/kb/HT4236

  • Is it possible to stop the system time outs on my imac ,i have tried 5 times in the last 24 hrs.each time it will go for maybe 3hrs and then times out.each time i have to start the download all over again,thanks,

    is it possible to stop the system time out on my imac? i have tried 5 times in the last 24 hrs.it will run for approx.3hrs,and then times out and i have to start
    from the beggining again

    What is the url of the file your are downloading?
    What web browser are you using?
    What type of connection do you have to your isp?  phone line, dsl, cable, fios...
    Try iCab.  It lets you restart a download.
    icab.de
    Robert

  • Help find the Last run date from previous month

    Hi all
    I am stuck trying to find the Last Run Date from the previous month.
    select distinct(date_ran) from TABLE X where date_ran like '%/11-%' order by date_ran desc gives
    "03/30/11-06:19
    "03/25/11-03:01
    "03/24/11-03:00
    "03/23/11-03:00
    "03/22/11-03:00
    "03/21/11-03:00
    "03/18/11-03:00
    "03/17/11-00:00
    "03/16/11-06:31
    "02/15/11-07:42
    "02/15/11-06:00
    "02/14/11-08:19
    Here the result I am trying to acheive is 02/15/11-07:42 ;Note the column date_ran is a VARCHAR2(255) and not a TIMESTAMP
    I tried
    select ADD_MONTHS(to_date(max(date_ran), 'MM/DD/YYYY-HH24:MI'),-1)
    from daily_tests_a
    where date_ran like '%/11-%'
    order by date_ran desc
    which returns 2/28/0011 6:19:00 AM and that is not the result I am looking for
    Regards
    SMK

    Welcome to the forum!
    user2931503 wrote:
    Hi all
    I am stuck trying to find the Last Run Date from the previous month.
    select distinct(date_ran) from TABLE X where date_ran like '%/11-%' order by date_ran desc gives
    "03/30/11-06:19
    "03/25/11-03:01
    "03/24/11-03:00
    "03/23/11-03:00
    "03/22/11-03:00
    "03/21/11-03:00
    "03/18/11-03:00
    "03/17/11-00:00
    "03/16/11-06:31
    "02/15/11-07:42
    "02/15/11-06:00
    "02/14/11-08:19
    Here the result I am trying to acheive is 02/15/11-07:42 ;Note the column date_ran is a VARCHAR2(255) and not a TIMESTAMPThat's a very bad idea. Points in time should always be stored in DATE (or maybe TIMESTAMP) columns. If not, you're going to waste resources converting them to DATEs whenever you need them to behave like DATEs, and risk run-time errors because of bad data.
    Normally, the "previous" month means the month before the current month. In April, the previous month is March.
    By "previous" month, do you mean the 2nd latest month in the table? That is, this data contains data from February and March, 2011; March 2011 is the latest of those months, February 2011 is the next-to-last, and so is that why you want a date from February?
    I tried
    select ADD_MONTHS(to_date(max(date_ran), 'MM/DD/YYYY-HH24:MI'),-1)
    from daily_tests_a
    where date_ran like '%/11-%'
    order by date_ran desc
    which returns 2/28/0011 6:19:00 AM and that is not the result I am looking for
    Regards
    SMKTry this:
    WITH   got_real_date   AS
         SELECT     TO_DATE ( SUBSTR (date_ran, 1, 14)
                   , 'MM/DD/RR-HH24:MI'
                   )     AS real_date
         FROM     table_x
    --     WHERE     ...     -- If you need any filtering, put it here
    SELECT     TO_CHAR ( MAX (real_date)
              , 'MM/DD/RR-HH24:MI'
              )     AS last_date
    FROM    got_month_num
    WHERE     real_date     < (
                               SELECT  TRUNC (MAX (real_date), 'MONTH')
                         FROM    got_real_date
    ;Edited by: Frank Kulash on Apr 5, 2011 3:59 PM

  • I'm trying to set up a DAQ assist just to measure some voltage, how do i get the graph to start from 0 (time) every time I press run

    Hi all,
    I am trying to set up a simple DAQ assist to measure some voltages (currently a 9 volt battery to aid set up), when choosing to use a waveform chart to log the voltages the graph doesnt start from 0 (time seconds) how do I do this and get it to reset every time I press run or even stop.
    What I want to see at the end is a chart for the full lenght of the test showing voltage against time in seconds.
    Any ideas peeps
    many thanks
    Shane

    Hi Shane,
    Look at this VI
    Here, I clear the chart before running the VI, using a 'history data' property node ( i pass an empty array to clear it)
    In effect, each time you run the VI, the chart will begin at 0:00
    Hope this helps
    Regards
    Dev
    Attachments:
    chart_start.vi ‏20 KB

  • Extract data on report between last 30 days from current date.

    Hi Experts,
    Ealrier i had provided user promt to select the date range, now i need to schedule the report for this i have to set the date between last 30 days from current date.
    How can i add this in formaula on record selection.
    before:
    {pm_process.pm_creation_date} in {@Start Date to UTC} to {@End Date to UTC}
    I tried:
    {pm_process.pm_creation_date} in CurrentDate() - 30 to CurrentDate()
    But this is diplaying me only data of 30th date from current date.
    Please advice.

    Hi Brian,
    Thank you!
    1. I have not created any function for {pm_process.pm_creation_date} in [CurrentDate() - 30 to CurrentDate()] i am just adding this on Record Selection and its not helping.
    2. {pm_process.pm_creation_date} in Last30Days; this is throwing below error.
    please advice what to be done?

  • I'll ask this again.  I'm running Yosemite, LR 4.4 everything was running fine and I'm not sure if this is connected but when I loaded the last security update from Apple I started getting the "no content" box when I tried to publish to LR (Facebook OK),

    I'll ask this again.  I'm running Yosemite, LR 4.4 everything was running fine and I'm not sure if this is connected but when I loaded the last security update from Apple I started getting the "no content" box when I tried to publish to Flickr (Facebook OK), now I can't get it to authorize, I loaded 3rd party JR plug in and still get can't authorize.  Can anybody help?  Basically LR is useless, it has been nothing but problems.

    It would probably be better to continue your previous thread on the same question than to start a new one.

  • I've recently received 3 emails over the last 2 weeks from admin@appleid-apple.co.uk asking me to confirm my apple id- I presume this is fake

    I have recently received 3 emails over the last 2 weeks from [email protected] I presume these are fake. Can anyone confirm

    https://appleid.apple.com
    Go to the above website, sign in to your AppleID using the "Manage your Apple ID" link, and make sure everything is correct.  If it is, then clearly, at the least, the emails are in error.

  • Sums up the last 4 weeks from the start date

    Hi all,
    Pls tell me how to find the give issue with example
    How to write queri in SQL
    sums up the last 4 weeks from the start date selected (meaning range of date 1st to 7th) (the 4 weeks should stop on the 31st).
    Thanks & Regards

    <DIV><FONT size=2>
    <P><FONT size=2>select</FONT></FONT> tstdate, weeks, (sum*<FONT
    color=#0000f0>7</FONT>) as sum<BR>from <SPAN
    class=224524108-18042006>  </SPAN>(select to_date(<FONT
    color=#0000f0>'&date'</FONT>,<FONT color=#0000f0>'dd-mon-rrrr'</FONT>) as
    tstdate,<BR><SPAN
    class=224524108-18042006>                    
    </SPAN>last_day(to_date(<FONT color=#0000f0>'&date'</FONT>,<FONT
    color=#0000f0>'dd-mon-rrrr'</FONT>)) as weeks, <BR><SPAN
    class=224524108-18042006>                    
    </SPAN>floor((last_day(to_date(<FONT color=#0000f0>'&date'</FONT>,<FONT
    color=#0000f0>'dd-mon-rrrr'</FONT>)) - to_date(<FONT
    color=#0000f0>'&date'</FONT>,<FONT color=#0000f0>'dd-mon-rrrr'</FONT>))
    /<FONT color=#0000f0>7</FONT>) as sum <BR><SPAN
    class=224524108-18042006>          
    </SPAN>from dual)<FONT size=2></P></FONT></DIV>

  • I was trying to change from my iphone 4 to my new iphone 5, and i backed up my contacts onto iclould, when i restored my iphone 5 on my computer, the contacts were wiped from both devices, how do i recover the contacts?

    i was trying to change from my iphone 4 to my new iphone 5, and i backed up my contacts onto iclould, when i restored my iphone 5 on my computer, the contacts were wiped from both devices, how do i recover the contacts?

    On the iPhone tap Settings > iCloud
    Make sure Contacts is switched ON. It may take a few minutes for the data to sync via Wi-Fi.
    If you are using iCloud, there's no need to connect your iPhone to a computer via iTunes to sync your contacts.

  • How do I delete the last photos synched from my iMac to my iPad?

    How do I delete the last photos synched from my iMac to my iPad from the iPad?  They have taken up all of my storage.

    Synced photos can only be deleted by syncing again with iTunes and deselecting all synced items.
    See:  iTunes: Syncing photos

  • I have tried a complete reset on my I4s as directed  by apple.   All it has done is show the apple for the last 12 hrs - other ideas

    After attempting to download the new OS, I received an error message when restarting the phone stating only that an error occurred while installing.  After contacting tech support they told me to reset the system which I have attempted to do - for the last 12 hrs all that has happen is the  apple insignia and the rotating wheel - any suggestions?

    Have you seen this guidance
    http://support.apple.com/kb/HT1808

  • Get last august month from current date

    Hi,
    I need to get last august month from current date.
    e.g if current date is 1-OCT-2013 need to get last August date i.e.1-AUG-2013
    e.g. if current date is 1-MAY-2013 need to get last August date i.e.1-AUG-2012

    Something like this?
    SQL> WITH table_x AS(
      2     SELECT SYSDATE dt from dual UNION ALL
      3     SELECT TO_DATE('20-05-2013','dd-mm-yyyy') from dual
      4  )
      5  --
      6  ---
      7  --
      8  SELECT  dt,
      9    CASE
    10      WHEN (dt >= Add_Months(TRUNC(dt,'YEAR'),7)) THEN
    11          Add_Months(TRUNC(dt,'YEAR'),7)
    12      WHEN (dt < Add_Months(TRUNC(dt,'YEAR'),7)) THEN
    13          Add_Months(TRUNC(dt,'YEAR'),7) - 365
    14    END cs
    15  FROM table_x;
    DT        CS
    24-OCT-13 01-AUG-13
    20-MAY-13 01-AUG-12

  • HT1430 I have reset all my settings and content of my iphone 3GS but for the last 3 hrs I am stuck at the apple logo and after sometimes its getting off and on by itself but what is coming back is the same apple logo and nothing else is happening. pls adv

    I have reset all my settings and content of my iphone 3GS but for the last 3 hrs I am stuck at the apple logo and after sometimes its getting off and on by itself but what is coming back is the same apple logo and nothing else is happening. pls advice.

    Read https://discussions.apple.com/thread/4875757?start=0&tstart

  • HT204150 I cloud has deleted the last 200 contacts from my list of 800 contacts.

    I cloud has deleted the last 200 contacts from my list of 800 contacts. I lost them from my phone and iMac, but was able to turn off my ipad so it could not erase them from there. After the letter "R" all the contacts are gone. Help? Anyone have a remedy?

    change your email passwords.

Maybe you are looking for