I have a stored procedure that executes a couple of queries. Each query might fail because of a timeout.
I still want to continue to execute the other queries. Is this possible? Does a try catch work for timeouts?
I can offcourse have different sps for each query, but that would make the application more complex.