I have created a couples of tables (data frames) in R that I need to upload to Cloudera Impala, I am using DBI package to connect with Impala. So I have for example:
df<-data.frame(x)
How do I insert df into Impala as a table?
I have seen that this is possible to do using dbSendUpdate(), so I have done something like this:
dbSendUpdate(dbh,paste0("Create Table db.df as select * from ",db))
but no luck.
Any idea on how to handle this issue with this function or any other function I could use for this?