Fetching data from Oracle to query Table
问题 I am trying to fetch a query to extract data from an Oracle Database, but get an error message when trying to produce the final data frame to work on. packages already installed library(ROracle) library(RODBC) create the connection to the database con<-dbConnect(Oracle(), username='xxxx', password='xxxx', dbname='xxxx') query the data query<- dbSendQuery(con,"select * from table") execute query and return results in object of type dataframe result<- fetch(query) Everything works fine till the