SQL to XREF all BizTalk Maps on all Send and Receive Ports
Suppose you want to find if a map is used on some ReceivePort. In BizTalk, one Receive Port can contain multiple maps. The one that is executed is based on the matching target namespace and root element. <pre> select app.nvcName as ApplicationName, rp.nvcName as ReceivePortName, it.Name as MapName, it.FullName, — you might […]