Tagged Questions
0
votes
1answer
28 views
Oracle date format delete query considering the timezone
a question about date-time oracle data types:
We suppose that we have a Oracle database.
We suppose that we have a table with a field 'timestamp with timezone'.
When I insert some rows into this ...
0
votes
2answers
49 views
Postgresql: assign default timezone during table creation [duplicate]
I have the following definition of employees table
CREATE TABLE employees
(
id integer NOT NULL,
name text,
withouttz timestamp without time zone,
withtz timestamp with time zone,
...
2
votes
2answers
93 views
Can I read a timezone offset in minutes using TO_TIMESTAMP in Oracle?
Ok, I'm trying to convert a varchar column to a timestamp in Oracle.
The data all seems to be in the form '2012-02-01 11h35m34s 360', which is fine except for that 360 at the end. The vast majority ...
4
votes
1answer
108 views
monetdb-timezone difference in epoch function output(converting int to datetime format)
Q1: I want to convert a unix timestamp (INT) to monetdb timestamp ('YYYY-MM-DD HH:MM:SS') format
but it is giving me the GMT time not my actual time.
When I do
select (epoch(cast(current_timestamp ...
0
votes
1answer
159 views
Comparing Datetime in Oracle
Do I need to convert TIMESTAMP to DATE before doing a comparison? EX:
AND SORD.CREATED >= TO_DATE(FROM_TZ(CAST(TO_DATE('','DD-MON-YYYY HH24:MI:SS') AS TIMESTAMP), 'Asia/Kuala_Lumpur') AT TIME ZONE ...
0
votes
0answers
53 views
Converting Time Zone Issue
I want to get all records created on 1-Apr-2013. As the time and date in DB are stored in UTC, and user input would be in local time, I apply timezone conversion on user input, to convert the ...
1
vote
1answer
42 views
change timezone mysql without root
I have mySQL database in a free hosting web (because of that I can't set timezone).
When I make 'now()' sentence, It shows me the hour with GMT+8, and I need it with GMT+1.
Are there any way to ...
1
vote
2answers
46 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
48 views
PHP MySQL 24h Query outputs 24h +10h
I am running the following SQL Query in a php script:
SELECT DATE_FORMAT(LogDateTime, '%k:%i') AS LogDate, Temp AS OutsideTemp, InsideTemp
FROM cumuluslog.monthly
WHERE LogDateTime > ...
2
votes
2answers
81 views
Syncing MySQL and PHP times
I am trying to sync my PHP and MySQL times. Currently the times are different (outputs below):
'SELECT CURRENT_TIMESTAMP' returns '2013-03-16 13:14:28'
'date('Y-m-d g:i:s')' returns '2013-03-16 ...
0
votes
1answer
720 views
Oracle UTC Time
trying to read an ORACLE TIMESTAMP WITH TIMEZONE from a dbase in UTC-5(NY) as UTC.
Oracle is driving me crazy:
SELECT
from_tz(MAX(TIMESTAMPWITHTIMEZONE),'UTC'),
...
1
vote
1answer
95 views
How to convert between time zones in SQL Server 2008?
I am using SQL Server 2008 R2 and I wanted to know how we can convert CST time to IST time. I already have CST time in my dtDate column and want to convert it to IST format. Can somebody please help ...
1
vote
0answers
92 views
Simple Averaging Algorithm is Slightly Off. Why? Active Record/PostgreSQL issue?
In my Rails app, I have two custom Rake Tasks running every 30 minutes. Task A scrapes hourly prices from the internet and saves them to a database as HourlyPrice. Task B goes into the db, takes ...
2
votes
2answers
59 views
How can I get time-based data for each state based on local server time?
I have the following tables and relevant columns:
state
id int
name text
utc_offset int (minutes)
sale
id int
state_id int
created datetime
amount decimal(8,2)
The ...
0
votes
1answer
144 views
How to SELECT the UTC offset from a DateTimeOffset object?
I am currently using:
SELECT DATEPART(TZ, SYSDATETIMEOFFSET())
However, it returns the offset in minutes. I would like to preserve the format of '-05:00' instead of '-300'
Thank you.
0
votes
1answer
53 views
Using Hibernates SQLQuery to search documents between Date ranges
I have a database containing a list of clips. Each clip has a startTime and an endTime both timestamps with timezone. What I'm trying to do is get all the clips that fall inside a time range ( start - ...
1
vote
1answer
124 views
OSX postgres 9.1.4 timestamp with time zone order by
At OSX 10.8 on postresql server 9.1.4 is a unexpected behavior.
Since on Ubuntu 12.04 it was correct.
To reproduce this issue use the the following postgres sql example database.
Note:
The timestamp ...
1
vote
1answer
485 views
Convert Date to UTC timestamp in mysql
I have a table with the following columns:
|start_date |TZ |
|Dec 2, 2012 |Eastern |
|Dec 2, 2012 |GMT |
Note 1: our server is in UTC time.
Note 2:The column start_date is a date ...
1
vote
1answer
52 views
Hours of operations in different time zones
I posted a similar question here: Department hours of operation for different time zones in sql server
I think I added too much information to the post :)
What I am trying to do is display hours of ...
0
votes
1answer
460 views
How to convert timestamps' timezones in order to compare them in Oracle DB?
We are using Oracle 11g and we have a table with a timestamp column which doesn't contain the timezone (simply defined as TIMESTAMP). The timezone is written in a different column.
I want to be able ...
3
votes
1answer
480 views
How do I convert timezone in oracle sql stored procedure?
How do I convert a date/timeztamp from one timezone to another timezone in an Oracle SQL stored procedure? The DB server is set to use GMT, as is the machine which connects to the DB, but the data ...
0
votes
1answer
311 views
Selecting timestamp records in postgres
How do I select records in Postgres that have hour values greater than 00:00:00? The field type is Timestamp with time zone.
Example record:
"2012-07-30 07:00:00-07"
I need everything that is ...
2
votes
1answer
252 views
How to insert datetime with timezone to SQLite?
I know that to insert a datetime this format yyyy-mm-dd hh:mm:ss should be used.
However my dataset has a timestamp field that looks like yyyy-mm-dd hh:mm:ss +/-0X:00, where X can take many values ...
0
votes
1answer
205 views
confusion around DateTimeOffset and TimeZones
I am currently developing a .net application that will be used in multiple different countries and time zones. The back end database is sql server.
I have been looking in to the datetime, datetime2 ...
6
votes
3answers
123 views
Accounting for DST in Postgres, when selecting scheduled items
I have a Postgres table of clock alarms (not really, but this is analogous, and easier to explain). Alarms are set by users with a 1 hour resolution, and users can be from many different timezones. ...
0
votes
3answers
141 views
Issues with MySQL (phpmyadmin) time zones
I have a website stored on a shared server and the timezone is set based on the operating system of the server, which is two hours ahead.
I changed my php.ini and tried:
SET time_zone='-7:00'
SET ...
0
votes
1answer
90 views
timezone in GetDate query is 12 hours out
I am using MS webmatrix and razor.
I have a query that uses the expression CAST(GetDate() as INT) to get the current date integer value. However, even though my server and PC are both set on GMT + 12 ...
1
vote
3answers
256 views
How to compensate for MySQL timezone difference?
I store times in MySQL sent from a PHP script as CURRENT_TIMESTAMP. This makes times from the wrong timezone, minus 1 hour from where I am. I'm not superuser, so SET GLOBAL time_zone = ...
1
vote
1answer
130 views
Timestamp off in sql database for PHP and Javascript Chat Room
Basically I have been trying to follow a tutorial to create a chatroom.
Ajax Web Chat Tutorial
I have it all done except the time is being displayed incorrectly and I can't figure out where to ...
0
votes
1answer
494 views
Store Current Datetime according to client side timezone in sqlServer
I have dateTimeAuth column in sql table of datatype datetime and its default value is (getdate()) which returns me current time if i run my project at offline mode.
When i uploaded it to live server ...
7
votes
3answers
195 views
What is enough to store dates/times in the DB from multiple time zones for accurate calculations?
This is a HARD question. In fact it is so hard it seems the SQL standard and most of the major databases out there don't have a clue in their implementation.
Converting all datetimes to UTC allows ...
2
votes
2answers
167 views
Is there a simple and clean way to convert `DATE` to the `TIMESTAMP AT TIME ZONE` of that date at midnight UTC?
This should be really simple, but I'm having an embarrassing amount of trouble with it.
In PostgreSQL 9.1, I need to intepret a field stored as a DATE in the DB as if it were a TIMESTAMPTZ ...
0
votes
1answer
408 views
Oracle sql query needs to change based on timezone
I have a sql query to obtainrecords for a date range. My query works find byut when I analyzed data, I found that the records are retirved base don GMT timezone value, thus making the restults ...
1
vote
1answer
243 views
MySQL, Java, and TimeZone
I have a datetime type field some_field in a MySQL database. I can query the data using recordSet.getTimestamp("somefield"), which returns a java.sql.Timestamp object. However, the returned values ...
0
votes
2answers
133 views
Epoch time shows different date in different time zones?
I have an epoch time(seconds) . It shows me different times in JAVA, when i do
new Date(time*1000)
and in SQL when i do
SELECT cast((DATE '1970-01-01' + time/24/60/60) as timestamp) from dual.
The ...
1
vote
1answer
132 views
Is it possible to add offset value to universal time in sql server?
I have a scheduling application which is hosted on godaddy's server and is being used in Arizona. The problem I am having is an issue with the timezone. The server's timezone is different than that of ...
3
votes
1answer
353 views
Cant set mysql timezone to madrid
According to this question on how to set the time_zone in mysql and this timezone list, I thougth this should work:
SET time_zone = 'Europe/Madrid';
But this is what sqlBuddy logs:
The ...
1
vote
0answers
472 views
SQLite received a naive datetime while time zone support is active
I'm getting the following error while running my sql in python
/usr/lib/python2.6/site-packages/django/db/backends/mysql/base.py:64: RuntimeWarning: SQLite received a naive datetime (2012-06-22 ...
4
votes
1answer
320 views
SQL Server Jobs / Schedules - US vs. UK Daylight Savings Adjustment
SQL Server Jobs / Schedules - US vs. UK Daylight Savings Adjustment
We have a UK based server which needs to run a SQL Agent Job at 16:30 (US Central time – this may seem strange but it because of ...
1
vote
1answer
220 views
Modify Date Field in SQL Query from 00:00 GMT to 12:00 GMT
I need to adjust three queries for a specific day-part to accomodate a different time zone. These queries pull transaction data from the previous day, a date range, and the current day. The server ...
2
votes
2answers
424 views
Compare java Date to sql TIMESTAMP in the same timezone
I need to compare between userCurrentDate to a list of options.
The options is a table in the database that contain time attribute (definition: TIMESTAMP(6) WITH TIME ZONE. in oracle). Each option ...
0
votes
0answers
522 views
Converting UNIX (UTC) timestamp to EST (UTC-5) datestring
Consider the following UNIX timestamp:
1298063318
My MySQL server translates this into the following UTC/GMT datestring:
MYSQL> DATE_FORMAT(FROM_UNIXTIME(1298063318), '%Y/%m/%d %H:%i')
...
1
vote
1answer
284 views
Update Oracle table records timezone values
I have a table with an Oracle column of TIMESTAMP (6) WITH TIME ZONE. The table contains records of varying timezones. I'd like to update all of the records of the table to be UTC. Is there a ...
2
votes
1answer
2k views
Querying Oracle TIMESTAMP WITH TIMEZONE
I have a column in an Oracle DB table that is of type TIMESTAMP(6) WITH TIME ZONE. There are data rows with data from different timezones, some UTC, some in other timezone offsets.
Is there a way I ...
12
votes
5answers
5k views
Timezones in SQL DATE vs java.sql.Date
I'm getting a bit confused by the behaviour of the SQL DATE data type vs. that of java.sql.Date. Take the following statement, for example:
select cast(? as date) -- in most databases
...
4
votes
2answers
1k views
Oracle DateTime query with time zones
I have a SQL Builder library that direcltly uses ADO.NET. I have a means of creating a select query with a greater-than-or-equal operator, like:
select *
from book
where book.date_created >= {some ...
0
votes
3answers
508 views
How to convert time to date in the local timezone during query
We have a very simple payments model with the default "created_at" datetime field that we have to search in a date range so I did this:
>> Payment.all(:conditions =>
...
6
votes
2answers
3k views
Postgres Select Time With Timezone From Time Without Timezone and time zone name WITHOUT conversion
First off, I realize time with timezone is not recommended. I am going to use it because I'm comparing multiple time with timezones to my current system time regardless of day. IE. a user says start ...
0
votes
1answer
93 views
Using case when to insert values
Below shows a executable statement:
Successful attempt:
INSERT INTO Personnel_Assignment (DATE, testno, Hours)
SELECT '21-OCT-2011', '12345',
CASE
WHEN Extract(day ...
0
votes
3answers
822 views
Display correct subtraction of two timestamps in create view
By using normal minus '-' function between two timestamps, the answer given from oracle is incorrect.
This is what i want to do:
ALTER SESSION SET NLS_TIMESTAMP_TZ_FORMAT='DD-MON-RR HH24:MI TZR';
...



