Example: Original sp called GetInfo and takes 2 dates (e.g. SELECT col1, col2, col2 FROM mytable WHERE datecol BETWEEN @start_date AND @end_date)If the original SP does not do an INSERT can I call it from another sp to just find out if it returns rows or would I create a second sp that is basically the same query but does a COUNT() on a unique field and then returns that count as a return value.CREATE PROCEDURE New_SPASBEGIN SET NOCOUNT ON; exec GetInfo '1/1/2012', '1/3/2012' ???Row count returned from GetInfo ENDGO