The timestamp-with-timezone tag has no wiki summary.
0
votes
1answer
21 views
Changing the timezone value in /postgresql.conf when select perticular timezone from the UI
I have multiple timezone support in my project. I have requirement to change the timezone of postgressql.conf when changing the timezone. I am using cakephp - php scripting language. I can use python ...
0
votes
1answer
93 views
Google timezone API - timestamp parameter
In my client application I have the Latitude & longitude information from skyhook API based on its I.P.
Now based on the latitude and longitude information I need to find out the timezone ...
1
vote
3answers
62 views
PHP log files timezone
I am playing with the FengOffice project, and i am a beginner with PHP.
I would like to change the logs from GMT to HongKong time.
But even i set
[Date]
date.timezone = "Asia/Hong_Kong"
or
[Date]
...
1
vote
1answer
89 views
google map Time Zone get local time
I'm trying to use google Time Zone API. I provide the longitude and latitude and the API give me the timezone.
How can I get the local time with this following value (dstOffset and rawOffset) ?
Here ...
1
vote
2answers
39 views
How to extract consistent year from timestamptz
I'm trying to use the Postgres function extract() to get the year from a timestamptz column, but get unexpected results. I expected that it would use UTC, but appears to use whatever the local ...
0
votes
1answer
52 views
Working with unix timestamps and timezones
Timezones and timestamps confuses me so I'm hoping someone can answer my questions :)
Lets say I have a Python script that parses an RSS feed, converts the date value into a timestamp using the ...
0
votes
0answers
23 views
Need to query a timestamp with a rolling date, but set time
I need to query a timestamp with a rolling date, but hard time
Example that works with a hard timestamp:
(m.last_modified >= '1/22/2013 8:00 AM'
AND
m.last_modified < '1/23/2013 8:00 AM')
I ...
2
votes
2answers
440 views
Change the date and time stamp format for data in the table
We have a huge Oracle database that contains data which has date and time stamps.
Right now we are using mm-dd-yyyy format for date and EST Time zone for time stamp.
Now we need to change the date ...
0
votes
1answer
56 views
datetime with timezone field/template output strange behavior
Timezone settings settings.py:
USE_TZ = True
TIME_ZONE = 'Europe/Moscow' # +4
Record in database table(postgresql 9.1, timestamp with timezone :
2012-12-19 15:30:51.164368+04
Django date ...
3
votes
1answer
178 views
Convert datetime object in a particular timezone to epoch seconds in that timezone
eg:
>>> print dt
2012-12-04 19:00:00-05:00
As you can see, I have this datetime object
How can I convert this datetime object to epoch seconds in GMT -5.
How do I do this?
2
votes
2answers
509 views
How to pass string with ' ' (timestamp) in prepared statement?
I am trying to execute the following query
INSERT INTO hotspot(timestamp) VALUES
(timestamp with time zone '2012-10-25 14:00:00 +05:00' at time zone 'EET');
and i want to pass the timestamp as a ...
4
votes
2answers
374 views
How can i insert timestamp with timezone in postgresql with prepared statement?
I am trying to insert to a timestamp with timezone field of my DB a string which includes date, time and timezone using prepared statement.
The problem is that Timestamp.valueof function does not ...
-1
votes
1answer
65 views
Inserting a date in RFC2822 format - no timezone specifier?
I have a string in RFC2822 format and I would like to insert the appropiate timestamp in UTC time.
Until now I've come up with
DATE_FORMAT(?, "%a, %d %b %Y %T -0700")
but the problem is the TZ ...
2
votes
1answer
496 views
c/c++ strptime() does not parse %Z Timezone name
I am new to C. When I practicing C to covert time sting to structure tm back and forth. I noticed some difference. Please advice what I did wrong.
#include <string.h>
#include <stdio.h>
...
0
votes
1answer
220 views
Change device timezone to GMT in android
"13-11-2012 09:14:39" is the sample timestamp string getting from server in my app. I need to calculate the defference between that time and current device time.
My Server is sending the time in GMT ...
0
votes
1answer
331 views
Does Oracle manage timezone correctly for all regions?
I have the following query. It returns the current time in different regions. It works fine for most of the regions which are in the table V@timezone_names. But this query returns the wrong result ...
1
vote
1answer
1k views
ORACLE SQL: add time to a timestamp with timezone
I need to add seconds and substract variables with type TIMESTAMP WITH TIMEZONE, however, to my understanding, adding numbers to such data causes the information about the timezone to be lost, perhaps ...
3
votes
1answer
258 views
time zones in POSIXct and xts, converting from GMT in R
I have a bunch of 1 minute returns in an xts object with the index being POSIXct and time zone being GMT. The returns are on NYSE so I would like to convert to the eastern time zone but I would like ...
0
votes
2answers
288 views
Why date time different 1 hour when retrieve timestamp data of postgresql from rails
I have a problem that is
I migrate database table from rails.
In the tables columns timestamps with timezone is also include.
When I insert data into database, timestamp columns save current time as ...
0
votes
1answer
242 views
Converting MySQL Timestamp with GMT offset to local PHP timestamp
I have a PHP script that's called by an external vendor. One of the GET values is a timestamp that is MySQL format, GMT + 0200. Here's an example:
2012-07-16 16:51:22
I can convert that into the ...
1
vote
4answers
3k views
Convert java.sql.Timestamp to java.sql.Timestamp in another timezone
I am in need to manipulate on java.sql.Timestamp.
Input to the function is:
Formatted DateTime in java.sql.Timestamp
[Possible date formats are: MM/dd/yyyy hh:mm:ss aa, MM/dd/yyyy hh:mm:ss, ...
0
votes
0answers
68 views
ACE logging - timezone error
once in a while I see that the ace logger is printing timestamp in GMT timezone.
then immediately switches back to local in subsequent print
local-local-local-GMT-local-local.....
the logs are ...
2
votes
1answer
760 views
Change timezone component of TIMESTAMP WITH TIMEZONE in Oracle
I have some data that is stored in a TIMESTAMP(6) WITH TIMEZONE column in Oracle, but it is stored in the wrong timezone. By convention, all timestamps in the DB must be stored in UTC, but this data ...