Hello @RadAndric , You can create a function to pare the JSON data and
get the result with query activity. For e.g you have data like below in
a tableidjsonData1{"name":"John", "age":30, "car":"BMW"}' In the query
activity you need to get the name, age and car, like below. There you
need to create a three function like nameFun, ageFunc and carFun to get
the value of name, age and car respectively. Function definition depends
upon your database. if you are using PostGreeSql data base, then you th...