You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although this is uncoupled from APEX, there are a few basic data models we have preloaded. Testing, and realized that some do not work. Here is one that is broken:
departments /insert 4
name /nn
location
country
employees /insert 14
name /nn vc50
email /lower
cost center num
date hired
job vc255
view emp_v departments employees
This is a simple departments and employees table with a view and some fake rows.
Although this is uncoupled from APEX, there are a few basic data models we have preloaded. Testing, and realized that some do not work. Here is one that is broken:
This is a simple
departments
andemployees
table with a view and some fake rows.Here is the script it generates:
You can see the that view here is missing a
;
and if you try to run this whole script, it fails withError at line 22/1: ORA-00936: missing expression
Also the inserts ALL fail with :
ORA-01465: invalid hex number
This is due to the
image
column being a blob and trying to insert'N/A'
into it. BLOB columns rather should just getnull
.The text was updated successfully, but these errors were encountered: