Having trouble reading data from another schema in Oracle database #9867
Replies: 2 comments 2 replies
-
Ahh, what version of Oracle is this? We currently only have robust support for 23+, since that's when Oracle decided that booleans were a valid datatype. |
Beta Was this translation helpful? Give feedback.
2 replies
-
@gforsyth, thanks for responding and no worries. I'll just wait for our team to move to Oracle version 23. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I'm using ibis-framework[oracle]==9.3.0 to connect to an oracle database to read a table from another schema. Here is an example of the actual code that I'm running:
I keep getting the following error:
Full traceback is as follows:
I think the issue is the
get_schema
method, specifically in the following lines:sqlglot translates
stmt
to the following SQL query:It seems like
C.nullable.eq(sge.convert("Y")).as_("nullable")
isn't translating correctly for Oracle sincenullable = 'Y' AS nullable
is not a valid Oracle syntax.Has anyone else faced a similar issue?
Beta Was this translation helpful? Give feedback.
All reactions