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?
Sys.setenv(TZ="UTC")before querying the db? – Anatoliy Sep 20 '11 at 12:16