Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 Other SQL Server Topics (2005)
 Profiler and procedure calls

Author  Topic 

joxa831
Starting Member

7 Posts

Posted - 2008-09-09 : 05:56:19
f 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
   

- Advertisement -