PowerCenter
- PowerCenter 10.5
- 所有产品
setOutRowType(String rowType);
参数
| 数据类型
| 输入/
输出
| 说明
|
---|---|---|---|
rowType
| 字符串
| 输入
| 更新策略类型。值可以是 INSERT、UPDATE 或 DELETE。
|
// Set the value of the output port. output1 = input1; // Get and set the row type. String rowType = getInRowType(); setOutRowType(rowType); // Set row type to DELETE if the output port value is > 100. if(input1 > 100) setOutRowType(DELETE);