Profiler and procedure calls
if I have something like this:
create proc Second
as
select *from Something
go
create proc First
as
exec Second
go
Is it possible to see in profiler when i call exec First that second is called also. Like this
RPC Starting exec First
RPC Starting exec Second
RPC Comleted exec Second
RPC Comleted exec First
|