简体   繁体   English

选择BizTalk跟踪业务流程,管道,发送端口接收位置

[英]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 用于业务流程的StaticTrackingInfo表的imgData

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

nTracking column of bts_receiveport table for receive ports nTrackingbts_receiveport表接收端口

select * from bts_receiveport where nTracking <> 0

nTracking column of bts_sendport table for send ports 发送端口的bts_sendport表的nTracking

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. 您将需要报告的所有信息都包含在此处,无需加入或进行表格处理。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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