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);