目录

Search

  1. 简介
  2. 配置 Hub 控制台工具
  3. 构建数据模型
  4. 配置数据流
  5. 执行 Informatica MDM Hub 进程
  6. 配置应用程序访问
  7. MDM Hub 属性
  8. 查看配置详细信息
  9. 使用 Solr 进行搜索
  10. 行级锁定
  11. MDM Hub 日志记录
  12. 表分区
  13. 使用产品使用工具包收集 MDM 环境信息
  14. 词汇表

使用时间轴提取

使用时间轴提取

您可通过以下方式运行时间轴提取:
  • 在 MDM Hub 控制台的批处理查看器工具中运行提取 BVT 版本批处理作业
  • 运行 executeBatchExtractBVTVersions SIF API

运行提取 BVT 版本批处理作业

对于有效的基础对象,在 MDM Hub 控制台的批处理查看器工具中运行提取 BVT 版本批处理作业。
在批处理查看器工具中运行提取 BVT 版本批处理作业时,您无法指定限制日期。提取 BVT 版本批处理作业使用当前应用程序服务器时间作为限制日期。要指定限制日期,请运行 executeBatchExtractBVTVersions SIF API。
有关批处理查看器工具的信息,请参阅
《Multidomain MDM 配置指南》

运行 executeBatchExtractBVTVersions SIF API

请求
executeBatchExtractBVTVersions 请求含有以下参数:
orsId
操作引用存储名称
tableName
基础对象名称
limitDate
提取 BVT 版本批处理作业会对上次更新日期在限制日期前的交叉引用记录执行操作。
响应
executeBatchExtractBVTVersions 响应会返回以下参数:
消息
含有有关请求状态的消息。
RetCode
含有返回代码。
EJB 请求示例
以下 EJB 请求会运行提取 BVT 版本批处理作业:
SiperianClient sipClient = SiperianClient.newSiperianClient(new File( context.getTestPTTStartDir() + "siperian-client.properties" ) ); ExecuteBatchExtractBVTVersionsRequest req = new ExecuteBatchExtractBVTVersionsRequest(); req.setTableName(jobContext.getTableName()); // Pass BO name as a string req.setLimitDate(jobContext.getLimitDate()); // Pass limit date using java Date type ExecuteBatchExtractBVTVersionsResponse executed = (ExecuteBatchExtractBVTVersionsResponse) sipClient.process( req ); String errMessage = executed.getMessage(); int rc = executed.getRetCode();
SOAP 请求示例
以下 SOAP 请求会为 CMX_ORS10A 操作引用存储中的 C_TIMELINE 基础对象运行提取 BVT 版本批处理作业。
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:siperian.api"> <soapenv:Header/> <soapenv:Body> <urn:executeBatchExtractBVTVersions> <urn:username>admin</urn:username> <urn:password> <urn:password>admin</urn:password> <urn:encrypted>false</urn:encrypted> </urn:password> <urn:orsId>localhost-orcl-CMX_ORS10A</urn:orsId> <urn:tableName>C_TIMELINE</urn:tableName> <urn:limitDate>2015-10-29T12:59:14+02:00</urn:limitDate> </urn:executeBatchExtractBVTVersions> </soapenv:Body> </soapenv:Envelope>

返回顶部