I am using RJDBC package for R to Oracle connection and ojdbc6.jar file.
I have a column of clob datatype in which there is HTML encoding as a data and i am trying to fetch that data in r but its not giving me the result its hang up my system. Below is my code.
There are 200000 rows in my table
queryToRun < - paste(SELECT * FROM ABData)
output <- data.frame(dbGetQuery(jdbcConnection, queryToRun), stringAsFactors = FALSE)
How can i do that efficiently?