I am trying to import some data from Sql Server 2008 into R, using RODBC with:

db <- odbcDriverConnect(connection = "Driver={SQL Server Native Client 10.0};Server=server; Database=db;Trusted_Connection=yes;")
results <- sqlQuery(db, "select timestamp from table where some-restriction")

The data is stored in a column of type "datetime". All timestamps are in UTC, however my system timezone is CET. R converts all timestamps to values of type "POSIXct" "POSIXt" e.g:

"2011-01-01 07:24:12 CET"

"2011-01-01 08:35:10 CET"

"2011-01-01 09:02:50 CET"

timestamps are correct, timezone is wrong. Is seems to me that since timezone is not explicitly specified, R assigns to all timestamps my local timezone.

Is there any way the timezone of the data can be specified, so timezone information would be correct?

link|improve this question

I don't have RODBC and a db to connect to, but have you tried Sys.setenv(TZ="UTC") before querying the db? – Anatoliy Sep 20 '11 at 12:16
Sys.setenv(TZ='UTC') will indeed work. Are there any other options which do not effect the entire system? – Gregor S. Sep 20 '11 at 12:21
feedback

2 Answers

up vote 3 down vote accepted

For object os class POSIXlt, you could modify the tzone attribute of the variable directly after importing the data:

attr(results$timestamp,"tzone") <- "UTC"

If your data is of class POSIXct this will change the data by the timezone offset, so convert to POSIXlt first by wrapping in an as.POSIXlt():

results$timestamp <- as.POSIXlt(results$timestamp)

eg:

> tm <- as.POSIXlt(Sys.time())
> tm
[1] "2011-09-20 13:45:01 BST"
> attr(tm,"tzone") <- "UTC"
> tm
[1] "2011-09-20 13:45:01 UTC"
link|improve this answer
This converts the time to UTC, so it changes the actual hour by the zone offset. – Gregor S. Sep 20 '11 at 12:37
@Gregor S. Not according to my test, see edit. – James Sep 20 '11 at 12:46
I can confirm that your example works indeed, I have no idea why it does not work with values from db, maybe it has something to do that the tzone information is missing. – Gregor S. Sep 20 '11 at 12:56
attr(as.POSIXlt(Sys.time()),"tzone") prints "CET" "CET" "CEST" when used on value from database attr(dbvalue,"tzone") it prints "" – Gregor S. Sep 20 '11 at 13:01
1  
@GregorS. I think it will do that with objects of class POSIXct, which doesn't have a tzone attribute by default. – James Sep 20 '11 at 13:05
show 3 more comments
feedback

Probably easiest to change the timezone afterwards.

library(lubridate)
tz(results) <- "UTC"
link|improve this answer
Great, this worked for me, thanks. – Gregor S. Sep 20 '11 at 12:31
I accepted @James answer since it does not use additional libraries. – Gregor S. Sep 20 '11 at 13:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.