-
The following code
results in creation of table in Oracle database with column data types as follows:
How can I manipulate schema types to receive VARCHAR, NUMBER with precision and scale, etc. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @rd5802! If you want fine-grained control over DDL, you are probably better off using
Ibis will treat all of Oracle's many stringy times as a Also note that you have to manage the cursor generated by the |
Beta Was this translation helpful? Give feedback.
Hi @rd5802!
If you want fine-grained control over DDL, you are probably better off using
raw_sql
to create your tables. Something like:Ibis will treat all of Oracle's many stringy times as a
string
, but the specific type of string in the underlying table schema will be preserved.Also note that you have to manage the cursor gen…