I am trying to run sqlQuery in Rstudio, which seems to crash the program. I want to use the RODBC package to import a name called the package name and elapsed time from an Oracle database. When I try to execute sqlQuery, for example, the following
dataframe <- sqlQuery(channel, "select package_name, elapsed_time from fooSchema.barTable")
When I run this only with the name package_name or other fields in the table, it works fine. If I try to run this using elapsed_time, RStudio will fail. The data type elapsed_time is INTERVAL DAY (3) TO SECOND (6), so one record, for example, looks like this: "+000 00: 00: 00.22723"
Are there certain data types, such as Interval Day to Second, from Oracle that don't work at all in RStudio or R?
source share