-
Notifications
You must be signed in to change notification settings - Fork 174
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
function tbl doesn't work anymore #658
Comments
I am aware that with dbplyr version 2 schema and table name calls have become case sensitive.
but this does:
may this be bugging you? |
Thank you for your answer Erreur : nanodbc/nanodbc.cpp:1655: HY000: [Oracle][ODBC][Ora]ORA-00933: SQL command not properly ended 'SELECT * I cannot collect() data. |
The error come frome the "FETCH FIRST 11 ROWS ONLY" |
issue is reported here : #27 I find a dirty way to correct it. I changed the function dbplyr:::sql_query_select.Oracle to
|
Hi! is there a way you could help me to implement your solution in the current dbplyr version? I am stuck with the same problem (oracle 11 not being supported, FETCH FIRST not working), and I can't fix it with your code (since dbplyr has changed too much, I guess) |
This is fixed in the dev version which should be released to CRAN soon. |
ahh, that would be supergood. Thanks! |
I use dbplyr to extract information from an oracle database with odbc driver.
I download last version of dbplyr and dyplr and since yesterday i got some errors with tbl().
My connection is active in rstudio and i am able to see the table i want to work with .
I am able to use sql to get data from table.
When i use this fonction
I got the following error :
Erreur : nanodbc/nanodbc.cpp:1655: 42S02: [Oracle][ODBC][Ora]ORA-00942: table or view does not exist
'SELECT *
FROM ("schema"."table") "q01"
WHERE (0 = 1)'
The text was updated successfully, but these errors were encountered: