Hi Experts,
I have one target table .
After executing some UI steps in my application, duplicate data inserted into target table. During those UI Steps there are several procedures are being called.
is there is any possibility to find out what are the procedures being hit to those table for data insertion during UI Steps.
I have checked the below query
select distinct O.name from sysobjects O
Join Syscomments C
on O.id=C.id
Where C.text like '%insert into%TargetTableName%'
But it is giving total procedures which are being refered in those database.
But my requirement is i want runtime procedure names during those UI execution.
Thanks in Advance.