Tagged Questions
2
votes
1answer
2k views
How to get current GMT in Oracle
I'm trying to get the current GMT/UTC regardless of the time zones my current database is located. The possible solution I found is:
SELECT SYSTIMESTAMP AT TIME ZONE dbtimezone FROM DUAL;
and it is ...
1
vote
2answers
704 views
Converting UTC time field from a POSTGRE/SQL database in SQL
I am having a problem from my database.
I never been used to work in PostgreSQL, and i would like to make a select from a UTC datetime field and getting a GMT Datetime as result.
Actually my request ...
0
votes
1answer
284 views
SQL: Offsetting timestamp in a query from GMT to Pacific
I'm hoping someone can help out a SQL newbie (note, I'm very green so please be gentle). I'm trying to help do an audit of some contractor employees at my company and see if they might be milking ...
3
votes
3answers
905 views
Convert historic dates from utc to local time
I have an sql table with data like this:
| theDate (datetime) | theValue (int) |
----------------------------------------
| 2010-05-17 02:21:10 | 5 |
| 2009-03-12 04:11:35 | ...
3
votes
5answers
10k views
JDBC Timestamp & Date GMT issues
I have a JDBC Date column, which if a i use getDate is get the 'date' part only 02 Oct 2009 but if i use getTimestamp i get the full 'date' 02 Oct 2009 13:56:78:890. This is excatly what i want.
...