Được rồi, về cơ bản thì giải pháp là thế này (loại đó tự động hóa một nửa vấn đề):
declare @tvpVal_string nvarchar(max) = 'declare @tvpVal myTVPType;'
set tvpVal_string += isnull(stuff((select ';insert into @tvpVal values('+...your values...+')' as [text()] from @tvpVal from xml path('')),1,1,'')+';','');
declare @sql nvarchar(max) = tvpVal_string +
'exec myProc @[email protected],
@[email protected]'
exec [REMOTESRV].DB..sp_executesql @sql,'@OtherVal type',@OtherVal