I am using JAVA as my backend code and SQL server as my database server and i am calling a Stored procedure and it's very huge sp so i am breaking it into 3 sp's and calling it. but i just want to trigger one sp and it should continue it's task and only i should do is to check in every 1 min or so but i when i am calling the sp my java is waiting till the sp returns the value.
if i use webhook i can achieve this but i just want to use through stored procedure.
SimpleJdbcCall jdbcCall = new SimpleJdbcCall(Master.getJdbcTemplate).withProcedureName("sp_getDetails"); jdbcCall.setProcedureName("sp_getDetails");
Map m = jdbcCall.execute();