Tagged Questions

A timestamp is a mathematical representation of time.

learn more… | top users | synonyms

247
votes
9answers
167k views

How do you get a timestamp in JavaScript?

How can I get a timestamp in JavaScript? Something similar to Unix's timestamp, that is, a single number that represents the current time and date. Either as a number or a string.
230
votes
16answers
41k views

datetime vs timestamp?

What would you recommend using between a datetime and a timestamp field, and why? (using mysql). I'm working with php on the server side.
33
votes
3answers
7k views

How can one change the timestamp of an old commit in Git?

The answers to this question describe a way to amend previous commit messages that haven't yet been pushed upstream. The new messages inherit the timestamps of the original commits. This seems ...
30
votes
8answers
38k views

Convert a Unix timestamp to time in Javascript

I am storing time in a MySQL database as a Unix timestamp and that gets sent to some Javascript, how would I get just the time out of it? Ex. HH/MM/SS
25
votes
4answers
22k views

How to convert UNIX timestamp to DateTime and vice versa?

As the title says really. There is this example code, but then it starts talking about millisecond / nanosecond problems. http://blogs.msdn.com/brada/archive/2004/03/20/93332.aspx Edit: This is ...
23
votes
9answers
34k views

Creation timestamp and last update timestamp with Hibernate and MySQL

For a certain Hibernate entity we have a requirement to store its creation time and the last time it was updated. How would you design this? What data types would you use in the database (assuming ...
22
votes
1answer
2k views

In Ruby on Rails, what's the difference between DateTime, Timestamp, Time and Date?

In my experience, getting dates/times right when programming is always fraught with danger and difficulity. Ruby and Rails have always eluded me on this one, if only due to the overwhelming number ...
22
votes
10answers
60k views

How to convert date to timestamp in PHP?

How do I get timestamp from e.g. 22-09-2008?
18
votes
9answers
4k views

Are unix timestamps the best way to store timestamps?

I always use unix timestamps for everything, but am wondering if there is a better way. What do you use to store timestamps and why?
17
votes
8answers
8k views

How can I insert current date and time into a file using Emacs?

What commands in Emacs can I use to insert into the text buffer of a file the current date and time? (For example, the equivalent in Notepad is simply pressing F5 which is about the only useful ...
17
votes
5answers
12k views

Resetting the time part of a timestamp in Java

In Java, given a timestamp, how to reset the time part alone to 00:00:00 so that the timestamp represents the midnight of that particular day ? In T-SQL, this query will do to achieve the same, but I ...
16
votes
2answers
15k views

Ruby/Rails: converting a Date to a UNIX timestamp

How would I get a UNIX timestamp (number of seconds since 1970 GMT) from a Date object in a Rails app? I know Time#to_i returns a timestamp, but doing Date#to_time and then getting the timestamp ...
16
votes
7answers
12k views

How to get timestamp of tick precision in .NET / C#?

Up until now I used DateTime.Now for getting timestamps, but I noticed that if you print DateTime.Now in a loop you will see that it increments in descrete jumps of approx. 15 ms. But for certain ...
15
votes
4answers
3k views

MySQL datetime fields and daylight savings time — how do I reference the “extra” hour?

I'm using the America/New York timezone. In the Fall we "fall back" an hour -- effectively "gaining" one hour at 2am. At the transition point the following happens: it's 01:59:00 -04:00 then 1 ...
13
votes
4answers
6k views

Java: Date from unix timestamp

I need to convert a unix timestamp to a date object. I did it like this: java.util.Date time = new java.util.Date(timeStamp); Timestamp value is: 1280512800 and time must be "2010/07/30 - 22:30:00" ...
13
votes
1answer
5k views

How to use JodaTime with java.sql.Timestamp

I Have a prepared statement INSERT INTO mst(time) VALUES (?); where time is of type Timestamp in a PostgreSQL database. I am inserting a Joda DateTime object, or I should say I am trying to. I can ...
13
votes
11answers
1k views

How do you avoid adding timestamp fields to your tables?

I have a question regarding the two additional columns (timeCreated, timeLastUpdated) for each record that we see in many solutions. My question: Is there a better alternative? Scenario: You have a ...
12
votes
5answers
27k views

NOW() function in PHP

Is there any PHP function that returns time format as the MySQL fuction NOW() I know how to do it using date() .. but I am asking if there is a function only for this. e.g. "2009-12-01 00:00:00"
12
votes
4answers
40k views

Function that creates a timestamp in c#

I was wondering, is there a way to create a timestamp in c# from a datetime? I need a millisecond precision value that also works in Compact Framework(saying that since DateTime.ToBinary() does not ...
12
votes
7answers
17k views

Sqlite: CURRENT_TIMESTAMP is in GMT, not the timezone of the machine

I have a sqlite (v3) table with this column definition: "timestamp" DATETIME DEFAULT CURRENT_TIMESTAMP The server that this database lives on is in the CST time zone. When I insert into my table ...
11
votes
7answers
5k views

PHP How to find the time elapsed since a date time?

How to find the time elapsed since a date time stamp like 2010-04-28 17:25:43, final out put text should be like xx Minutes Ago/xx Days Ago
10
votes
3answers
156 views

R Object Creation Timestamps?

Is there a way to retrieve the time an object was created at? Thanks, Zach
10
votes
5answers
253 views

Is there a Windows absolute time for timestamps? (.NET)

I'm working with a WPF/C# app where I need to lock out users from accessing a particular feature for some amount of time. Basically, from the time a certain event happens, I want to prevent certain ...
10
votes
3answers
11k views

Current time in microseconds in java

On a Unix system, is there a way to get a timestamp with microsecond level accuracy in Java? Something like C's gettimeofday function.
10
votes
1answer
3k views

“Touch” updated_at column in Rails 2.3.2

I have a process which iterates through a bunch of ActiveRecord models, does some processing, and saves the models again. Often though, the processing doesn't result in an changes to the attributes ...
9
votes
4answers
1k views

Why there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT clause?

Why there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause? CREATE TABLE `foo` ( `ProductID` INT(10) UNSIGNED NOT NULL, `AddedDate` TIMESTAMP NOT NULL ...
9
votes
4answers
12k views

Using HQL to query on a date while ignoring the time on Oracle

I have a table (in Oracle 9 and up) where I need to find all entries for a given day using Hibernate. The entries have timestamps (with data type 'date'). Some of the entries have a time, others only ...
8
votes
2answers
205 views

How to select part of a Timestamp in a SQL Query

In the DB I am working with, I want to select only the year from a specific TimeStamp field. In particular, I'm hoping to select the unique years from this database column. For instance, if all of ...
8
votes
3answers
4k views

How can I keep original file timestamp on subversion?

I want to be sure that if I commit something in subversion from one machine and I checkout on another I will get the same value for datetime/timestamp. Currently I observed that the file datetime is ...
8
votes
4answers
264 views

English to Time

Does anyone know of a good class / library to convert English representations of time into timestamps? The goal is to convert natural language phrases such as "ten years from now" and "three weeks" ...
8
votes
2answers
3k views

Quickly getting to YYYY-mm-dd HH:MM:SS in Perl

When writing Perl scripts I frequently find the need to obtain the current time represented as a string formatted as YYYY-mm-dd HH:MM:SS (say 2009-11-29 14:28:29). In doing this I find myself taking ...
8
votes
4answers
18k views

Setting a JPA timestamp column to be generated by the database?

In my SQL Server 2000 database, I have a timestamp (in function not in data type) column of type datetime named lastTouched set to (getdate()) as its default value/binding. I am using the Netbeans ...
8
votes
8answers
31k views

Oracle: how to add minutes to a timestamp?

I need to add 30 minutes to values in a Oracle date column. I do this in my SELECT statement by specifying "to_char(date_and_time + (.000694 * 31)", which works fine most of the time. But not when ...
8
votes
5answers
7k views

SQL Server 2005 Auto Updated DateTime Column - LastUpdated

I have a table defined (see code snippet below). How can I add a constraint or whatever so that the LastUpdate column is automatically updated anytime the row is changed? CREATE TABLE dbo.Profiles ( ...
7
votes
1answer
225 views

Python's fromtimestamp returns inconsistent results on different machines

I have two computers, for the first one: >>> datetime.datetime.fromtimestamp(0) datetime.datetime(1970, 1, 1, 7, 30) >>> datetime.datetime.fromtimestamp(1309846824) ...
7
votes
3answers
169 views

mysql delayed insert timestamp

I have a table with a field:: ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP My question is, if I use delayed insert on this table, will the timestamp be the time when the request is queued or the time when ...
7
votes
4answers
5k views

Converting local timestamp to UTC timestamp in Java

I have a milliseconds-since-local-epoch timestamp that I'd like to convert into a milliseconds-since-UTC-epoch timestamp. From a quick glance through the docs it looks like something like this would ...
7
votes
5answers
3k views

Milliseconds in DateTime.Now on .NET Compact Framework always zero?

i want to have a time stamp for logs on a Windows Mobile project. The accuracy must be in the range a hundred milliseconds at least. However my call to DateTime.Now returns a DateTime object with the ...
7
votes
6answers
2k views

Accurate timestamping in Python

I've been building an error logging app recently and was after a way of accurately timestamping the incoming data. When I say accurately I mean each timestamp should be accurate relative to each other ...
6
votes
2answers
21 views

How can I Determine Date of Import from MySQL?

I uploaded a joomla website to my database some time ago. Now I would like to know what the exact date is that I uploaded the website. Is there a way to find this out in the database?
6
votes
6answers
1k views

Log with timestamps that have millisecond accuracy & resolution in Windows C++

I'm aware that for timing accuracy, functions like timeGetTime, timeBeginPeriod, QueryPerformanceCounter etc are great, giving both good resolution & accuracy, but only based on time-since-boot, ...
6
votes
3answers
1k views

Getting seconds between two Oracle Timestamps

Tom Kyte suggests to use EXTRACT to get the difference: extract( day from (x-y) )*24*60*60+ extract( hour from (x-y) )*60*60+ ... This seems to be harder to read and slower than this, for example: ...
6
votes
4answers
276 views

php - help converting timestamp string to readable time format

I have a record called Time with the following date string: 20100902040003 in the input file. I need some php help to convert this to something more readable such as this format: 2010-09-02 04:00:03 ...
6
votes
2answers
2k views

PreparedStatement and setTimestamp in oracle jdbc

I am using PreparedStatement with Timestamp in where clause: PreparedStatement s=c.prepareStatement("select value,utctimestamp from t where utctimestamp>=? and utctimestamp<?"); ...
6
votes
5answers
2k views

How to maintain precision using DateTime.Now.Ticks in C#

I know that when I use DateTime.Now.Ticks in C# it returns a long value but I need to store it in an int variable and I am confused as to whether or not I can maintain that precision. As of right now ...
6
votes
10answers
1k views

Use MySQL to determine whether today is a user's birthday

I have all users' birthdays stored as a UNIXtimestamp and am wanting to send out e-mails each day to users that have a birthday that day. I need to make a MySQL query that will get all of the rows ...
6
votes
1answer
3k views

Dealing with timestamps in R

I have multiple lists of measurements. In each list have the timestramp formated as a string ("2009-12-24 21:00:07.0") and I know that each measurement in the list is separated by 5 seconds. I want to ...
6
votes
3answers
13k views

Getting unix timestamp in milliseconds in PHP5 and Actionscript3

In Actionscript, the Unix timestamp in milliseconds is obtainable like this: public static function getTimeStamp():uint { var now:Date = new Date(); return now.getTime(); } ...
6
votes
4answers
4k views

How to implement automatic timestamps for record changes (SQL Server)

I am used to using "changed_at" fields in my MySQL database that Ruby on Rails automatically updates when changing a record. Now I am using ASP.NET MVC with SQL Server 2008 and I am wondering, how ...
6
votes
5answers
7k views

Best timestamp format for CSV/Excel?

I'm writing a CSV file. I need to write timestamps that are accurate at least to the second, and preferably to the millisecond. What's the best format for timestamps in a CSV file such that they can ...

1 2 3 4 5 27