Hi All,
We recently upgraded our setup from Alteryx 10.6 to 11.3
One of the workflows which runs without any issues in 10.6 started throwing errors in 11.3
A very simple workflow to update the Oracle Database Table. Getting "Primary Key required for Update option" error.
Screenshots and DDL statements from a dummied down version to reproduce the error is attached.
The same workflow is running without any issues in 10.6.
Table Creation below: -
******************
drop table ana_test purge;
create table ana_test
(
col1 number,
col2 number,
col3 number,
constraint pk_ana_test primary key (col1)
) ;
insert into ana_test (col1,col2,col3) values (100,1,1);
select * from ana_test;
******************
Appreciate your help.
Thanks & Regards,
Anandh