Update and Insert into existing oracle table

Hi All
I have two task to do.
1. I wanna update into existing table in oracle, is there any option to do that ?
2. Then I wanna insert into existing table in oracle, I saw the append instead of overwrite option but how to give the existing table in output ?
Please guide/Suggest the way
Thanks in advance
Answers
-
Hi @Renga3037
UPSERT operations are not graphically supported in DSS, however, you can still carry out these operations if you use a SQL recipe script option, see here for some info on how these work.
Good luck!
-
-
For task 1 you can use an SQL recipe script type with UPDATE inside.
For task 2 you can use a normal SQL recipe which will compute records and append new records if you have selected Append new records from the Input/Output tab of the recipe.
Or
You could do both in one go using an SQL recipe script type with UPSERT inside.
-
Turribeach Dataiku DSS Core Designer, Neuron, Dataiku DSS Adv Designer, Registered, Neuron 2023 Posts: 2,531 Neuron
There is a new Upsert recipe plugin available in 13.5.0:
DSS 13 Release notes — Dataiku DSS 13 documentation
However the documentation seems missing:
https://www.dataiku.com/product/plugins/upsert-recipe
-
-