I have a trigger that fires on insert.
The trigger then fires off a Job using sp_start_job. which executes a stored procedure.
The stored procedure my trigger calls uses sp_OACreate
The account I use from my webapp doesn't have permission to sp_OACreate and I prefer not to.
The job owner is the webapp user. but I am unable to change the run as to dbo.
Is it possible to have a non sysadmin job owner to use run as dbo?
The trigger then fires off a Job using sp_start_job. which executes a stored procedure.
The stored procedure my trigger calls uses sp_OACreate
The account I use from my webapp doesn't have permission to sp_OACreate and I prefer not to.
The job owner is the webapp user. but I am unable to change the run as to dbo.
Is it possible to have a non sysadmin job owner to use run as dbo?