I need help to convert hours,minutes and seconds to seconds.

Hi, I need help with the code on how to convert the hours,minutes and seconds to seconds. I don't know which formula to use so that I can get the results in total number of seconds. Thanks.

Jos ("when in doubt: parenthesize correctly")Bracist.You're more right than you'd known: last week I climbed over a safety
fence (which I wasn't supposed to do of course) to adjust the position
of an optical measurement device we installed in a huge production
machine in a factory. I stepped on some sort of hose; the end of that
hose broke loose and hit me straight in the middle of my lower jaw. My
front teeth feel wiggly now and my molars on the left of my lower jaw are
not what they used to be. This Wednesday I get that all fixed at some
dental clinic. Keep your fingers crossed because me+dentists == war.
My tongue continuously keeps on reporting craters and disaster ;-)
Jos, how's it going? Besides a possible loss of some teeth, I'm fine ;-)
My Spring/Hibernate journey continues. I'm trying out Hibernate 3.2
annotations and the Ant tools. So far, so good.Good to hear. At the moment I'm putting my teeth (sic) in that darn snmp
stuff which simply refuses to work the way I want it and besides that I'm
heavily involved in some of that SAP stuff. Spring is not in the vicinity for
me in the next couple of months sadly enough.
kind regards,
Jos

Similar Messages

  • How do I log the time in hours, minutes and seconds to a table

    Hi
    I'm a relatively new user of Labview. I am currently writing a program that logs the temperature of an oven and the current time to a table and graph. I am using a GPIB card to communicate with the oven. I have used the Get Date/Time string to get the time and the Decimal String to Number to convert the time to a number which I have then put into an array which goes to a table and graph. My problem at the moment is that the time is being logged in hours only. I need to log the time in hours, minutes and seconds. Can you tell me how I can do this?

    Hi,
    I can see the setup now. The decimal string to number will only ever give the hours, since the ':' character is not part of a number, so won't translate. Use the code I attached previously to get the time as a timestamp, and then go from there.
    I've made some modifications, although you'll need to alter the file save to take into account the double precision number
    for the timestamp is now 3E+9 (since it's seconds since 1904!!), but since you're writing to a comma separated values (or tab deliminated) style file, this shouldn't be a problem. You could always do a textual save from the table instead.
    Thanks
    Sacha Emery
    National Instruments (UK)
    // it takes almost no time to rate an answer
    Attachments:
    temp time program.vi ‏98 KB

  • How to conver this System.nanoTime() into Hours,minutes and second

    I am getting my Total time with the help of this function ie System.nanoTime(). But i want to Display in the form of Hours,minutes and second.
    So can any one plz tell me that how i will do this conversion.

    If it's less than 24 hours you can use Calendar. or SimpleDateFormat. Add the epoch time for some convenient midnight to the milliseconds value (divide nanos by 1000000).
    Otherwise it's just successive division and remaindering.
    Probably nanos is higher resolution than you need, milliseconds is easier.

  • Formula for Distance/Velocity Returned in Hours, Minutes, and Seconds

    I want to find the formula to calculate elapsed time in hours, minutes, and seconds when you are given the velocity and distance.

    Distance(Miles)
    MPH
    Duration(h, min, s)
    60,0
    20,30
    0
    100,0
    20,80
    For an unknown reason the formula do not work for me.
    Cells A2, B2, A3, and B3 are numbers.
    In cell C2 I use formula : =DURATION(0,0,A2/B2)
    Thanks
    Carougeois

  • SharePoint DateTime Control "Hour, Minute, and Second parameters describe an un-representable DateTime"

    I am facing a strange behavior from SharePoint:DateTime control.
    I have a webpart containing couple of fields along with datetime control. If I leave this page inactive for a while and then click submit, an exception is thrown stating that "Hour, Minute, and Second parameters describe an un-representable DateTime". 

    Hi,
    According to your post, my understanding is that you got datetime control error.
    The problem may be lied in the Time component. You can disable the time component and go for a date only rendering of the control by setting
    DateTimeField.DateOnly = true.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/64c05363-fd7e-49bb-8239-c93ec78172b6/datetime-control-using-basefieldcontrol?forum=sharepointgeneralprevious
    what’s  more, you can the ULS log to see the details errors.
    For SharePoint 2013, by default, ULS log is at
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Date difference in Days,hours minutes and seconds.

    Hi All,
    I have two date Suppose one is getdate() and other one is gatedate() +1 .I have to show the difference, currently I used a datediff in the stored proc which just shows the difference of the days :( but i need to show the difference in days:hours:minutes:seconds if possible.
    its a countdown with the current date. Like the two fields are sale_start_date and sale_end_date. Hope i am clear.
    Please let me know ASAP thanks in advance.Can anyone help me?all help is great help.
    Say the difference of
    12/6/2007 7:00:00 AM, 12/8/2007 8:00:00 AM  as 2 days 1:00:00)
    Thanks
    N

    One of the problems of using DATEDIFF when dealing with either seconds or milliseconds is that this function will result in execution errors if the start and end dates span then entire domain of possible dates.  Below is an alternative that seems to work over the entire date domain.  A couple of things to note:
    1. This select converts the days and seconds of each date into BIGINT datatypes to avoid the overflow error
    2. This select uses a CROSS APPLY operator; in this case I chose CROSS APPLY to suggest the possibility of converting this select into an inline table function.
    I suspect that if you dig around this forum and the net that you will find a better routine, but here is yet another alternative:
    declare @test table
    ( startDate datetime, endDate datetime)
    insert into @test values
    ('6/1/9', getdate()),
    ('6/9/9 15:15', '6/10/9 19:25:27.122'),
    ('6/9/9 15:15', '6/10/9 13:25:27.122'),
    ('6/9/9', '6/10/9 00:00:01'),
    ('1/1/1760', '12/31/2999')
    select
      startDate,
      endDate,
      [Days],
      [Hours],
      [Minutes],
      [Seconds]
    from @test
    cross apply
    ( select
        cast((endSecond - startSecond) / 86400 as integer) as [Days],
        cast(((endSecond - startSecond) % 86400) / 3600 as tinyint) as [Hours],
        cast(((endSecond - startSecond) % 3600) / 60 as tinyint) as [Minutes],
        cast((endSecond - startSecond) % 60 as tinyint) as [Seconds]
      from
      ( select
          86400 * cast(convert(integer, convert(binary(4),
                        left(convert(binary(8), startDate),4))) as bigint)
            + cast(convert(integer, convert(binary(4),
                right(convert(binary(8), startDate),4)))/300 as bigint)
          as startSecond,
          86400 * cast(convert(integer, convert(binary(4),
                        left(convert(binary(8), endDate),4))) as bigint)
            + cast(convert(integer, convert(binary(4),
                right(convert(binary(8), endDate),4)))/300 as bigint)
          as endSecond
      ) q
    ) p
    /* -------- Sample Output: --------
    startDate               endDate                 Days        Hours Minutes Seconds
    2009-06-01 00:00:00.000 2009-06-22 08:28:36.670 21          8     28      36
    2009-06-09 15:15:00.000 2009-06-10 19:25:27.123 1           4     10      27
    2009-06-09 15:15:00.000 2009-06-10 13:25:27.123 0           22    10      27
    2009-06-09 00:00:00.000 2009-06-10 00:00:01.000 1           0     0       1
    1760-01-01 00:00:00.000 2999-12-31 00:00:00.000 452900      0     0       0
    (5 row(s) affected)
     EDIT:
    I based the routine more-or-less on Thilla's reply.
    Kent Waldrop

  • Insert hour, minute and seconds in database

    I need to work with a date with this format:
    22/dec/2000:09:10:55
    My problem is:
    I don't now how to insert it in my database. If I declare a field date it doesn't works, even if i use To_date.
    if I declare a field varchar2 I cant do operation like the difference between hours and minutes.
    Thanks.
    I work with oracle7.

    Internally oracle stores a date variable in
    integer form and hence the format is irrelevant. You can use any format that includes second's and minutes, as you need it.
    What matters is how you retrieve it.
    While retrieving it if you put the fetched value in date variable then things are fine, but if you want it in char / varchar then use
    to_date('date_field','<format>')
    I feel what you are trying to do is select on sql prompt and see the min and seconds.
    I suggest you check your nls_date_format parameter on sql environment for your default date format.
    You could set it according to your need like this
    alter session set nls_date_format='dd-mon-yyyy hh24:mi:ss';
    null

  • Convert hours:minutes into seconds

    hi friends,
    how can i convert output of following query to "seconds"
    select to_char(sysdate,' hh:mi') from dual
    thanks and regards
    Ajith

    SQL> select extract(hour from systimestamp) * 60 * 60 +
      2         extract(minute from systimestamp) * 60 seconds
      3  from dual;
       SECONDS
         51960                                                                                                                                                                                                                                                                                                                                                                           

  • How to get time in hours minutes and seconds subtract between two varchar t

    Hi all,
    I have two varchar variable which has value like this
    v_outpunch1:='17:50:00'
    and v_Shifttime:='18:00:00'
    this both time i am subtracting here and storing in another varchar variable
    which is like this.
    v_EarlyLeaverstimeformat := LPAD((extract(hour from TO_TIMESTAMP (v_ShiftTime,'HH24:mi:ss')) - extract(hour from TO_TIMESTAMP (v_OutPunch1,'HH24:mi:ss'))), 2, '0')||':'|| LPAD((extract(minute from TO_TIMESTAMP (v_ShiftTime,'HH24:mi:ss')) - extract(minute from TO_TIMESTAMP (v_OutPunch1,'HH24:mi:ss'))), 2, '0')||':'|| LPAD((extract(second from TO_TIMESTAMP (v_ShiftTime,'HH24:mi:ss')) - extract(second from TO_TIMESTAMP (v_OutPunch1,'HH24:mi:ss'))), 2, '0');
    it's not subtracting value correctly.
    thanks

    You shouldn't store time information in a varchar2, but if you do
    declare
      v_outpunch1 varchar2(100);
      v_Shifttime varchar2(100);
      v_EarlyLeaverstimeformat varchar2(100);
    begin
      v_outpunch1:='17:50:23';
      v_Shifttime:='18:00:00';
      v_EarlyLeaverstimeformat := numtodsinterval( to_date( v_Shifttime, 'hh24:mi:ss' ) - to_date( v_outpunch1, 'hh24:mi:ss' ), 'day' );
      dbms_output.put_line( v_EarlyLeaverstimeformat );
      v_EarlyLeaverstimeformat := to_char( trunc( sysdate ) + ( to_date( v_Shifttime, 'hh24:mi:ss' ) - to_date( v_outpunch1, 'hh24:mi:ss' ) ), 'hh24:mi:ss' );
      dbms_output.put_line( v_EarlyLeaverstimeformat );
    end;

  • DateValidator and inputFormat, I would like to check hour minute and second too

    Hi this is my control and I would like to validate the whole
    date not just YYYYMMDD
    <mx:DateValidator id="dateVal" source="{TI_FechaInicio}"
    property="text" inputFormat="yyyy-mm-dd L:NN:SS A"/>
    But it doesn't seems to work, so how can I fix it?
    The only working thing are yyyy-mm-dd but (L:NN:SS A) none of
    those ones work

    Thanks again, I've read your link and I also had a
    RegularExpression that I used on .NET but here in flex doesn't
    seems to work, I've tested this Regular Expression and its working
    but not in flex, do you know what I'm doing wrong?
    <mx:RegExpValidator id="REV_FechaInicio"
    source="{TI_FechaInicio}" property="text"
    expression="^(19[0-9]{2}|[2-9][0-9]{3})-((0(1|3|5|7|8)|10|12)-(0[1-9]|1[0-9]|2[0-9]|3[0-1 ])|(0(4|6|9)|11)-(0[1-9]|1[0-9]|2[0-9]|30)|(02)-(0[1-9]|1[0-9]|2[0-9]))\x20(0[0-9]|1[0-9]| 2[0-3])(:[0-5][0-9]){2}(?:\x20[aApP][mM])$"
    trigger="{B_Actualizar}" triggerEvent="click"
    noMatchError="Fecha no válida" />
    <mx:Form width="95%">
    <mx:FormItem label="Fecha Inicio (mm/dd/yyyy):"
    width="100%">
    <mx:TextInput id="TI_FechaInicio" />
    </mx:FormItem>
    <mx:FormItem>
    <mx:Button id="B_Actualizar" label="Actualizar"
    click="Submit();"/>
    </mx:FormItem>
    </mx:Form>

  • Regarding function module to convert hours to minutes and seconds to minute

    hi all,
        is there any function module to convert hours to minutes and seconds to minutes....if so please guided me....i hav req like this...want to convert all those to minutes[seconds and hours]....

    Hi,
    Use FM
    SD_CALC_DURATION_FROM_DATETIME
    Pass paramters like
    I_DATE1 16.09.2008
    I_TIME1 10:33:00
    I_DATE2 16.09.2008
    I_TIME2 19:00:00
    and you will get the result as below..
    E_TDIFF 8:27
    8 hours and 27 minutes...
    Now u can use this values of hours and minutes to get the exact wage type values... get the details from HR module and multiply it with the hours and minute and calculate it...
    Use Offsets and get the hour and minute value from E_TDIFF
    Hope it will solve your problem..
    Thanks & Regards,
    Naresh

  • How to Convert frames into minutes and seconds

    Hi,
    does anyone know how to convert frames into time (minutes and
    seconds). I need the users to view the swf with current time being
    played and over time. I have 2152 frames in total and I want that
    to be converted to time. Can anyone help me on this. I would really
    appreciate it. It is very urgent!!!!
    Thanks

    Time Indicator,
    > does anyone know how to convert frames into time
    (minutes
    > and seconds).
    That depends entirely on the framerate of the movie. At the
    default
    12fps, 12 frames would be one second; 24 frames would be two.
    At 24fps, 24
    frames would be one second.
    > I need the users to view the swf with current time being
    played
    > and over time. I have 2152 frames in total and I want
    that to be
    > converted to time. Can anyone help me on this. I would
    really
    > appreciate it. It is very urgent!!!!
    Judging by your four exclamation points, I'd say it's
    definitely urgent!
    Well, again, if you're at 12fps, 2152 frames would take 179
    seconds, or 2
    minutes and 59 seconds. I arrived at that number by dividing
    2152 by 12.
    Keep in mind, though, framerate is actually more of a
    guideline than an
    exact figure. Framerate determines the rate at which Flash
    will *try* to
    display content. On an especially slow computer, the Flash
    Player may not
    be able to keep up, and the same number of frames might
    actually take more
    time.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • I need help in converting a pdf to a fillable form in my adobe

    I need help in converting a pdf to a fillable form in my adobe

    "Adobe" is a company. If you mean "Adobe Reader" then you can't (at least not easily). You need Adobe Acrobat for that.

  • Need help with my iPhone 5 and my Macbook Pro.

    Need help with my iPhone 5 and my Macbook Pro.  I was purchased some music on itunes at my mac. Some reason I deleted those music from both on Mac and iPhone 5.  Today, I went to my iPhone iTunes store inside of iCloud to redownload my puchased. But those song won't able to sync back to my iTunes library on my Mac.  Can anyone help me with that ??....
    iPhone 5, iOS 6.0.1

    You've posted to the iTunes Match forum, which your question does not appear to be related to. You'll get better support responses by posting to either the iTunes for Mac or iTunes for Windows forum. Which ever is more appropriate for your situation.

  • TS4268 I need help getting my face time and imessage to work.

    I need help getting my face time and imessage to work. It is saying wating for activation. I just got my iphone 5 2 days ago. I have reset it from the phone and from itunes on the computer, made sure I'm attached to wifi.

    The 3 basic troubleshooting steps are these in order: 1. Restart your iphone  2.  Reset your settings/iphone  3.  Restore your iphone.  Since your iphone is only a couple of days old, you should backup your device before restoring.  If you don't have anything on your iphone that you care to lose, then simply restoring without a backup is fine.  A quick reset of pressing the sleep/wake button (top of iphone) and your home button simultaneously and holding it until the silver Apple logo appears. 

Maybe you are looking for

  • Will it affect my music and apps if I make a new iTunes account for iMessage?

    I made a new apple account and i want to know if it will affect my iPod if I do.

  • Best way to change locations?

    I would like to know if there is a better way to move mappings and process flows between different test environments. I designed a mapping and process flow on one machine then used the export/import metadata mechanism to move the work to a different

  • Help! Can I recover my Lightroom edits after renaming source folders and re-syncing?

    My source files were a mess, so I went in and roughly organized them, creating folders and grouping them by type. I figured I could just re-link the offline files back in LR. In Lightroom, I right-clicked on my root photo folder and chose "Syncronize

  • Bluescreen after pressing Stop-Button

    Hi, I've got a problem again. My system: DIAdem 9.1 (evaluation), MS Windows XP My program: I read ascii data from an measuring-instrument (force, torgue) via RS-232. I use script-DAC-Driver to do this. While measurement I display data with DIAdem-VI

  • Deleting orphaned alarm

    I have been using a Nokia N97 for the past two years, and it has recently started sounding an alarm at the same time every night. There is no dialogue box to delete the alarm, and no alarms are set for that time in either the clock or calendar applic