Informatica Data Quality
- Informatica Data Quality 10.5
- 所有产品
incrementErrorCount(int nErrors);
参数 | 参数类型 | 数据类型 | 说明 |
---|---|---|---|
nErrors | 输入 | Integer | 用于递增错误计数的数字。 |
// Check if input employee id and name is null. if (isNull ("EMP_ID_INP") || isNull ("EMP_NAME_INP")) { incrementErrorCount(1); // if input employee id and/or name is null, don't generate a output row for this input row generateRow = false; }