(Async) execution out of a natively compiled stored procedure

161 Views Asked by At

I have a natively compiled stored procedure and I would like to do an async execution of another stored procedure. The background is, that I need to store some staging data as fast as possible (in my natively compiled stored procedure) and I would like to call another stored procedure asynchronous to further process my data (but without "blocking" the current natively compiled stored procedure).

Does anybody know whether this is possible?

Here an example of what I want:

create procedure [Staging].[spProcessXXX]
with native_compilation, schemabinding, execute as owner
as 
begin atomic
with (transaction isolation level=snapshot, language=N'us_english')


    -- 1.

    -- do my performance-relevant stuff here


    -- 2.

    -- exec SP_XYZ (async, for example over SQL Job Agent or Service Broker)


end 
1

There are 1 best solutions below

1
On BEST ANSWER

That's not possible. Make the app issue the asynchronous call.

Alternative: If this was a non-native procedure you could use service broker. So create a wrapper procedure that is not natively compiled. That wrapper calls the native proc and can the use service broker.