This helps greatly! can you please also put the video on how to create the ORDS in SQL developer itself and do the remaining REST services?
@mianhmd20743 жыл бұрын
Good Job - Keep it up :)
@ayushmodi13694 жыл бұрын
very helpful
@PankajKumar-su5dq3 жыл бұрын
Great Video. Can you also cover the cases where we have to develop Rest services which will fetch details from multiple tables , like SQL Joins.
@learn.dataengineering3 жыл бұрын
Great suggestion!
@srikanthgaddam758111 ай бұрын
PUT method is not there in video you can use below query that is PLSQL block BEGIN UPDATE table SET STATUS = :STATUS WHERE emp_id = :emp_id; END;
@mithileshinamdar96173 жыл бұрын
How can i remove "items" tag from the header
@SaisreeRam4383 жыл бұрын
I am unable to connect to the sample schema even after creating it successfully. Can anyone suggest me how to do it.
@Anonymousvlogger13 жыл бұрын
Hi sir, I want to hit the API URL through table specific trigger. Basically that trigger will be of type "after insert". So whenever user inserts data into that particular table, trigger should get enabled and should hit that api URL. Create trigger Mytrigger After Insert On Test_table For each row Declare Api_url varchar2(100) := 'testing.test.com:5550/checkrow'; Body_url varchar2(100) := 'row inserted'; Begin // Need to know what to write here to hit above mentioned URL with that body and without expecting any response End;