Summary: Yes, if your database has a message queue service.
You can send a message to the queue, and the queue processor will consume it asynchronously.
- Oracle: Queues
- Sql server: service broker
- DB2: event broker
For pure stored procedure languages (PL / Sql or T-Sql), the answer is no, because it works against the main transaction model, which has most databases.
However, if your database has a queuing mechanism, you can use it to get the same result.
Mark harrison
source share