A timestamp is the time at which an event is recorded by a computer system. The timestamp term may also refer to Unix Time or to the timestamp data type.

learn more… | top users | synonyms

1
vote
1answer
33 views

time() safe in mysql doesnt work

I have a little problem safe the current time in Mysql. The Table have two rows: timestamp - on update CURRENT_TIMESTAMP A PHP file Here is my code: $stamp = time(); if (mysqli_connect_errno() ...
2
votes
1answer
12 views

Mac OS or Linux - Change year but leave Month Day Hours & Seconds untouched

I need to recurse a directory tree and update the YEAR ONLY portion of the timestamp for all files to a certain year. I can't work out how to do this with touch. I can't use touch -A since the the ...
0
votes
1answer
15 views

problems in timestamp insert Godaddy

I have an insert code on which is works on localhost but on my hosting which is Godaddy (Linux) i am having timestamp problem when i insert timestamp gets 10 hours back from my local time. i have ...
0
votes
0answers
3 views

logstash. convert timestamp to UTC and add to field

I am shipping combined appache log to logstash. How can I convert event timestamp to UTC and add it to new field?
2
votes
1answer
31 views

Date value in mysql tables changes while exporting mysql db

I am exporting mysql table to setup it on live, but while exporting DB I noticed that my date column value is changing.. If it was "2007-06-11 00:00:00" earlier then after export it is now changed to ...
0
votes
0answers
12 views

Elastic search _timestamp path

I am using Logstash to export the logs onto the elastic search database. The problem is that I want to specify the TTL(time to live) with each index as well, which is working completely fine. Here is ...
0
votes
1answer
10 views

SQlite creating a database with a timestamp column and adding a value in

I am trying to create a database that called rawData. The db will hava a column for the id, a foreign user id (_id from another table), data and finally a timestamp. My question is how can I create a ...
2
votes
3answers
44 views

What format of a timestamp is this?

I have to make some changes on an wordpress plugin. The plugin gives back this timestamp format: 1364495828.1500 What's the name of this format and how can I change it to DD/MM/YYYY - HH:MM??? I am ...
2
votes
1answer
28 views

format.POSIXct to as.POSIXct conversion issue [duplicate]

I have a POSIXct variable with the value "2012-04-15 16:49:36 CEST". The format function returns the year, week of the year and the weekday in decimal numbers, for this example 2012 15 0. The ...
0
votes
1answer
28 views

seconds value in timestamp in filename gettin rounded off sometimes

For one task I have to create files with the timestamp attached in filename for uniqueness. There is another program which reads these files. The condition for the other program to pick these files is ...
0
votes
1answer
20 views

Querying MySQL Timestamp in PHP

I'm querying the timestamp from the field created in the table messages. My database table currently stands as.. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | msg_id | messages | ...
4
votes
2answers
38 views

PostgreSql: Getting strange-formated “timestamp with time zone”

I am inserting into the table with field type "timestamp with time zone" string "1858-11-17 01:09:05+0000" and getting back strage formated value "05:11:29+04:02:24". Here is session test=> ...
2
votes
1answer
17 views

Redirect output processed via vbscript (cscript) to file

Issue with command output: I am attempting to have a continuous ping report back to a text file. Started with: ping 127.0.0.1 -t >> C:Textping.txt Works great I also want to have ...
0
votes
2answers
14 views

pythonian comparison: date.time from csv file to date.time from timestamp

In python I import a csv file with one datetime value at each row (2013-03-14 07:37:33) and I want to compare it with the datetime values I obtain with timestamp. I assume that when I read the csv the ...
0
votes
2answers
38 views

Sorting Array of Datas in Objective C

Say I have Stored some array of data using NSMutableArray. The stored array contains Timestamp and real time datas I am receiving array of size 6 each time from a sensor device. The first position ...
1
vote
4answers
37 views

SQL query for combining rows that have overlapping dates in separate columns

this is an odd question. let me lay out my table structures... my 'server' table gives me status information of my servers (i get a few of these messages every minute). my 'client' table is updated ...
0
votes
4answers
34 views

Current timestamp field in mysql table is not updated automatically

I really apologize for asking such a simple question but i am stuck in it. Actually my table has three coloumns such as id, status and date. The date field is current timestamp (Also I have selected ...
0
votes
1answer
28 views

How to get the month name in French and year from a number

Is there a way in PHP to print the month name and year in french when we have a number in this format 52013 or 42013 ? I have tried: $month = 42013; $monthNr = substr($month, -5, 1); $timestamp ...
2
votes
1answer
18 views

Rails don't generate create_at for fixture

I have a model Question with "question_id", "elapsed_time", "allowed_time" and "status" as its fields and a controller named Reporting that receive JSON containing questions and save it. ...
1
vote
1answer
43 views

Convert varchar to timestamp in SQL Server 2008 R2

There is table with timestamp column in SQL Server 2008 R2. When I only add this column to my table I see values like this 0x00000000000007D1. I try to put data into it: UPDATE test_time SET date3= ...
0
votes
1answer
15 views

Subtracting (Apache log) timestamp strings in python?

I have an apache log which has timestamps like: [03/Feb/2013:02:52:05 +0000] As a string. for my purposes the trailing +0000 isn't needed. My end goal is to get the time-difference between two ...
0
votes
1answer
30 views

Find records in array in time range

I'm adding some account-spamming security to my registration script. The aim is for the script to reject the user from creating a new account if over 10 accounts in the database match their IP ...
0
votes
1answer
36 views

Check if line is a timestamp in Python

I have a script that runs every 30 minutes on my server, and when it's done it writes a timestamp to the last line of the file. It does this to about 20+ files in one directory. I'm trying to write a ...
1
vote
2answers
28 views

MySQL reorder string using regexp?

I have a mysql table with a varchar fields containing date values in the format; "dd/mm/yyyy" I would like to reorder these string values, and create a datetime value or a timestamp, so I can order ...
0
votes
1answer
29 views

Consequences of Indexing the rowversion/timestamp column on SQL Server

Related to my prior question about having a sequence without interim holes (a guarantee that the numbers that are visible to readers are always incrementing) enter link description here I'd like to ...
0
votes
1answer
21 views

How can I select distinct column based on max datetime (another column) also joining two tables in MySQL?

I've read many somewhat similar questions here and tried everything I can think of, without success. I think I've found the question based on a single table, or without the need for getting a ...
0
votes
5answers
61 views

calculation comparing sql timestamp and php date(“y-m-d h:i:s”)

Is there a way to see if ((the current time - a timestamp in a database)>10 minutes) in php? I have a row in a database called lockout. I have the following code so far: echo ...
0
votes
0answers
27 views

How to convert timestamp to ISO 8601 date and time format? [duplicate]

I need to convert timestamps to the ISO 8601 date and time format, which is defined as: YYYY-MM-DDTHH:MM:SS.SSSZ (e.g., 2004-08-04T19:09:02.768Z) I can get the year, month, and day using the ...
1
vote
1answer
23 views

Format mysql TIMESTAMP AS x days, x hours, x minutes, x seconds

I have table that saves tickets information, and I want to know how long time the ticket stayed in a certain pool. I wrote the following query: SELECT ...
0
votes
2answers
18 views

Select current months records mysql from timestamp column

I have a mysql DB that has a TIMESTAMP field titled date. How can I select all fields where the month is the current month? Thanks in advance!
0
votes
2answers
30 views

how to format timespan in wpd DataGrid?

I had a TimeSpan saved into SqlCe in ticks, and when i load the data in a DataGrid i want to format this value in HH:MM:SS. I try it with this: <DataGridTextColumn Binding="{Binding tiempo, ...
-1
votes
1answer
20 views

Which type of timestamp is this and how to convert?

I have some values as follow: Time stamp= 46545775926 GPS TIME(S)= 1037863153 GPS TIME(US)=841354 I don't know which type of timestamp the time stamp is.How can I convert GPS TIME(S) and GPS ...
1
vote
2answers
29 views

How to convert ZSH ls timestamps to %Y-%m-%d?

Anyone know how to convert ZSH ls timestamps to %Y-%m-%d? From This(ZSH): host1% ls -lrt | tail -1 -rw-r----- 1 user group 4802 Mar 21 15:41 get.csv To This(BASH): user@host1:/home/user> ls ...
-1
votes
1answer
24 views

Oracle TimeStamp update/insert year interpret

Am I right in thinking within Oracle, if I were to do a an Update/Insert to a TimeStamp column with the following... UPDATE tblBlah set TimeStampColumn = to_timestamp('01-01-99 12:00 AM', 'MM/DD/YY ...
0
votes
0answers
22 views

mySQL - I want to select only the 75 most recent posts unless a column deems the post 'permanent'

Here is what I have tried: SELECT * FROM posts WHERE ( post != '' AND timestamp >= ( SELECT `posts`.`timestamp` FROM posts WHERE post != '' ORDER BY timestamp DESC LIMIT ...
0
votes
3answers
54 views

How can I select one row of data per hour, from a table of time stamps?

Excuse me if this is confusing, as I am not very familiar with postgresql. I have a postgres database with a table full of "sites". Each site reports about once an hour, and when it reports, it makes ...
0
votes
3answers
52 views

Save PHP date string into MySQL database as timestamp

I am trying to save a datestring in PHP into a MySQL database as timestamp datatype. I found a lot of posts about this, but none of them worked for me. This is what I've tried: $date = ...
0
votes
1answer
26 views

SQLite: Select rows with time in rage

I have a table where let's say we have ID | NAME | Time -------------------- 3 | ex | 15:22:00 From this table I want to select the rows that have time that is between Time ...
2
votes
2answers
80 views

absolutely NO functions surrounding a tstamp in a SQL? Hourly historical data query

I need to obtain for some specific hours data for a specific week day back to 10 weeks. The DB I work on is Oracle. I came up with the following condtions with the time stamp field: ...
0
votes
1answer
24 views

XQuery check for empty element and return a default value if the element is empty

I have an Xquery question. I have a timestamp element in my output xml, which needs to take the value of an element from the input xml only if it exists, otherwise it should return a default value. ...
1
vote
1answer
36 views

WinSCP time based file download

I would like to use .bat and .txt and WinSCP to download a file that is placed onto the remote server every morning between 4-4:30am. Is there a way to do this with time-stamping? I want to ...
4
votes
1answer
71 views

rounding times to the nearest hour in R [duplicate]

I have data in the format time: 16:53, 10:57, 11:58 etc I would like to create a new column where each of these times is rounded to the nearest hour. I cannot seem to get the POSIX command to work ...
-1
votes
1answer
20 views

How can generate thumbnail with timestamp with ffmpeg [closed]

I am working with ffmpeg. I made some thumbnails with ffmpeg command like below. ffmpeg -ss 600 -i input.mp4 -s 420x270 -f mjpeg vframes 1 output.jpeg but it is just plane photo. What I need is ...
1
vote
1answer
48 views

How do I convert human readable hours into milliseconds using javascript?

Given "3:00 AM" or "7:00 PM", are there built in functions (like Date) for me to convert these into milliseconds? 3:00 AM would be 3 hours in milliseconds, while 7:00 PM would be 19 hours in ...
0
votes
1answer
30 views

Handling different timezone to get data from db in javascript [duplicate]

I have pcap import and read facility in my project. I have handling timezone in my project. Imported pcap is not read/display if I changed my timezone from GMT to other Asia/Kolkota. How can I handle ...
2
votes
1answer
43 views

How to convert sql-timestamp to string in Racket?

The closest thing I came up with looking at the documentation was (define (sql-datetime->rfc2822 datetime) (let ([dt (sql-datetime->srfi-date datetime)]) (date->string dt ...
-1
votes
0answers
13 views

Extract publication date from news, blogs [closed]

I designed a library to extract timestamp candidates from blog webpages, based on the HTML code, i.e. I look for given patterns and try to find matching strings. Let's make some assumptions: my ...
0
votes
2answers
38 views

basic Time and Date manipulation in JavaScript

I have a time stamp of the in following form 2013-05-05 16:00:00 Can anyone tell me how to get rid of the time part and advance it one day using javascript, so I have. 2013-05-06
0
votes
0answers
29 views

Inserting drop down value into MySQL table

I have a site, where people are supposed to be able to arrange meetings with users within the system. However I'm having some difficulties getting the start and endtime from my form to appear in my ...
0
votes
1answer
34 views

SQL time range query

I am trying to query an SQL table using a time range via the statement below. SELECT columnName FROM tableName WHERE time between 2013-05-03 22:47:02 and 2013-11-19 22:47:02 Where the column ...

1 2 3 4 5 52