简体   繁体   中英

SELECT For BizTalk Tracking Orchestration, Pipelines, Send Port Receive Locaton

Could someone provide select (or method) to list any orchestrations, send port, etc. that have tracking option enabled?

I have a lot of applications deployed and I'd have to check them manually thus it is a lot of checking

You can use;

imgData column of StaticTrackingInfo table for orchestrations

select * from StaticTrackingInfo where CONVERT(varbinary, imgData) <> 0x00000000

nTracking column of bts_receiveport table for receive ports

select * from bts_receiveport where nTracking <> 0

nTracking column of bts_sendport table for send ports

select * from bts_sendport where nTracking <> 0

I understand what you're trying to accomplish.

For this, querying the database wouldn't be my first option. Instead...

I would write a program/script that queries exported binding files. All the info you would need to report on this is contained right there, no joining or table mucking necessary.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM