Hello Mates,
Iām currently working on four workflows, all of which are connected to my own notebook.
The four workflows should be started automatically one after the other and the only point that should be passed is the output of Workflow 1.
The workflow 1 reads a file, stores it in a table and edits the table name.
This table name should be accessed by Workflow 2 and thus get the table at the same time, so that Workflow 2 is then executed. With the same procedure, Workflow 3 and 4 should then run.
Currently I have set the job parameters Key = table_name and Value = {{tasks.File_Reader.values.table_name}} in workflow 2.
I want to set the task.value in Workflow 1 via dbutils.job.taskValue.set and then I want to get the table_name via the .get function.
Can someone suggest me a solution here, because I'm slowly running out of ideas on how to implement this?