show/hide this revision's text 2 clarified my comment and added further info.

I did consider that , (double-hop), but what is the difference between a sproc-in-a-sproc call like I am referring to vs. a typical cross-server join via INNER JOIN? Both would be executed on Server1, using the Linked Server credentials, and authenticating to Server 2.

Can anyone confirm that calling a sproc cross-server is different than doing a join on data tables? And why?

If the Linked Server config is a sql account - is that considered a double-hop (since what you refer to is NTLM double-hops?)

In terms of whether multiple resultsets are coming back - no. Both Server1.Sproc1 and Server2.Sproc2 would be "ExecuteNonQuery()" in the .net world and return nothing (no resultsets and no return values).

show/hide this revision's text 1

I did consider that, but what is the difference between a sproc-in-a-sproc call like I am referring to vs. a typical cross-server join via INNER JOIN? Both would be executed on Server1, using the Linked Server credentials, and authenticating to Server 2.

Can anyone confirm that calling a sproc cross-server is different than doing a join on data tables? And why?