If I try to connect to a large Oracle database using DBI package.
library(DBI)
con <- dbConnect(odbc::odbc(), "ORACLE")
In R terminal, a connection is established instantly. But in RStudio with new "Connections" pane added, it takes several minutes. I guess the reason is that RStudio is trying to download a list of schema from the server, which appears on the "Connections" pane. This is unnecessary and I want to disable it.
Is there a way to close "Connections" pane or to disable the automatic schema downloading at the beginning?