Viewing 4 posts - 1 through 4 (of 4 total)
Ok, I have finally inspected the table. 3 triggers where being called, each one executing sp_runwebtask.
Thanks a lot for helping!!! 🙂
June 11, 2019 at 7:57 am
I have just dropped them. I believe the triggers had been created just for experimenting. Will dig further on tomorrow and post my findings.
June 10, 2019 at 5:44 am
You can find what procs and triggers are calling it with a search such as:
SELECT s.name AS schema_name, o.name AS object_name, o.type_desc
FROM sys.objects o
...
June 8, 2019 at 4:01 pm
Apparently there is a trigger the table calling sp_runwebtask.
Yes! 3 bloody triggers where set for that table. Deleted them fixed the problem!! Thanks!
June 8, 2019 at 3:58 pm
Viewing 4 posts - 1 through 4 (of 4 total)