-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Oracle SQL DBs (via odbc or ROracle) #462
Comments
hi @NZambranoc |
@pachadotdev, as in a connection string? if so:
|
I see we can treat it similar to SQL Server via ODBC |
@NZambranoc I think I got it can you please send me this but with your connection, OracleDB is a paid product so I am working with my imagination library(dplyr)
library(RPostgres)
# replace this with your connection to Oracle
con <- dbConnect(
Postgres(),
user = Sys.getenv("dbedu_usr"),
password = Sys.getenv("dbedu_pwd"),
dbname = "tradestatistics",
host = "databases.pacha.dev"
)
dbListTables(con)
class(con)
d <- tbl(con, "sections") # replace with your own table
tbl_src_info <- utils::capture.output(d %>% unclass() %>% .$src)
# send me the output of this line
# PLEASE redact any IP or URL
tbl_src_info[grepl("^src:", tbl_src_info)] %>% gsub("src:\\s*", "", .)
dbDisconnect(con) |
@pachadotdev Here's the output:
|
@NZambranoc do you know of any public access oracle database? |
@pachadotdev This, perhaps? |
it's in browser... I shall install oracle locally when I have some bandwidth by the end of april |
@rich-iannone I have some spare time. Any advice about this? The in-browser DB won't make it. Perhaps we should promote PostgreSQL |
https://www.oracle.com/autonomous-database/free-trial/#free-container-image might provide an environment to test ? |
Prework
Proposal
For those that are interested in using pointblank for remote oracle databases.
When trying to create an agent with a table of the class
tbl_OraConnection
,tbl_dbi
,tbl_sql
,tbl_lazy
,tbl
I get the following error:
The text was updated successfully, but these errors were encountered: