I'm trying to import a very large data that includes timestamp formatted as "2015-08-31 07:23:25.3" The table has almost 2.5mil rows and when I import it into the dataframe, it loses time.
table1 <- dbReadTable(db_connection, "table_name")
Above is the code I have used. It works fine with another table with the same format timestamp and has 800 rows.
I have used following code to check if anything is hidden... no luck :-(
unclass(as.POSIXlt(table1$timestamp))
Please help!