Tagged Questions
The date-conversion tag has no wiki summary.
25
votes
4answers
7k views
What's the BEST way to remove the time portion of a datetime value (SQL Server)?
Here's what I use:
SELECT CAST(FLOOR(CAST(getdate() as FLOAT)) as DATETIME)
I'm thinking there may be a better/more elegant way.
Requirements:
- It has to be as fast as possible (the less ...
5
votes
4answers
4k views
Convert Between Datetime Formats Using Perl
We're currently using a 3rd party API that provides datetime in the following format:
Sat Mar 06 09:00:00 ICST 2010
Fri Feb 19 19:30:00 JDT 2010
Fri Feb 19 19:30:00 PST 2010
However, we want to ...
4
votes
3answers
117 views
In Oracle, why does this return March 1st?
In Oracle, this returns 03/01/2010. That does not make sense to me. Anybody know why?
SELECT TO_DATE( '2010' ,'yyyy' ) AS STRANGE_YEAR_RESULT
FROM DUAL
I've tried on Oracle 10g and 11g.
3
votes
2answers
85 views
Converting Numbers from Western Arabic Digits “1,2,3…” to Eastern Arabic Digits “١, ٢, ٣…”
I need to convert date stored in database into Hijri and display the same in Arabic
I used the Culture to convert the date which it does but it still display date as English numbers
Example
...
3
votes
1answer
35 views
Datetime conversion error for 1 sql server, but not another
I've got 2 servers running SQL Server 2008, and I have the following query:
SELECT cast('13/1/2011' as datetime)
If I execute this query on Server A I get the result:
2011-01-13 00:00:00.000
...
2
votes
1answer
485 views
In SQL Server, how to convert a date to a string in format M/D/YYYY? (no leading zeros, not MM/DD/YYYY)
Right now, my code has the following conversion for a date field:
convert(varchar, Citation.PublishedOn, 101)
However, that returns dates like 03/01/2010. The request was to have the dates display ...
2
votes
3answers
3k views
Converting JSON date(ticks) to NSDate
Does anyone know how to convert a JSON date(ticks) to an NSDate in Objective-C? Can someone post some code?
1
vote
2answers
185 views
Converting MYSQL timestamp to ISO-8601 without timzone offset
I'm trying to use timeago ( http://timeago.yarp.com/ ) and have found solutions for converting timestamps from MYSQL using php to ISO-8601.
date('c',strtotime($TimeStamp));
This works fine except ...
1
vote
1answer
152 views
Date Conversion error in VB6
If user entered date as 1st june 2011 (01/06/2011) in dd/mm/yyyy format
after conversion it returns “6th jan 2011” instead o f “1st june 2011”.
Let me explain how it converts it in 1st jan 2011.
...
1
vote
2answers
382 views
Days since 1900
I'm using data from Excel2007 as parsed by PHPExcel, and dates come out as days since 1900. How can I convert to string of 'YYYY-MM-DD' (or anything similar)?
1
vote
2answers
913 views
jython date conversion
Given a string as below, I need to convert:
1 Dec 2008 06:43:00 +0100
to
MM/DD/YYYY HH:MM:SSAM
using jython what is the best way to do this?
0
votes
3answers
97 views
Changing date format in R
I have some very simple data in R that needs to have its date format changed:
date midpoint
1 31/08/2011 0.8378
2 31/07/2011 0.8457
3 30/06/2011 0.8147
4 31/05/2011 0.7970
5 ...
0
votes
4answers
459 views
SQL query to convert Date to another format
Thanks for your help. I am not able to make out the type/format of the "Value" in a Date column.I guess its in Julian Date format.
The Column is paid_month and the values are below.
...
0
votes
6answers
139 views
-1
votes
2answers
38 views
php date conversion to date having time [closed]
I am trying to convert php date conversion like 09/30/2011 to this format 2011-09-30 21:35:46.
I read some manuals but its going to be difficult for me.
$input = "09/30/2011";
$output = "2011-09-30 ...
-1
votes
3answers
131 views
get date by week number php [closed]
Possible Duplicate:
Get Day of week for week number in php
I run a mysql query that returns week numbers. I want to take that number and then convert it back into a date (yyyy-mm-dd). I'd ...
-2
votes
1answer
64 views
How to vectorize and accelerate strtime() logtime conversion on a data-frame
(EDIT: one of the issues here is scale, namely what works for one row will blow up/crash R on a 200,000 * 50 dataframe. For example, strptime must be applied column-wise, not row-wise, to avoid ...