I have some tables in a odbc conection to which I have access with this code:
con <- dbConnect(odbc::odbc(), uid = usid, pwd = pwd, dsn = "Oracle-dw02-32")
When I use the STR command
str(TF_MDE_DATA_10)
I get this error
Error in str(TF_MDE_DATA_10) : object 'TF_MDE_DATA_10' not found
Is there any similar command to STR to tables in conections?
Thank you.