PowerCenter
- PowerCenter 10.4.0
- Todos os produtos
setNull(String strColName);
Parâmetro | Tipo de Parâmetro | Tipo de dados | Descrição |
---|---|---|---|
strColName | Entrada | String | Nome de uma coluna de saída. |
// check value of Q3RESULTS input column if(isNull("Q3RESULTS")) { // set the value of output column to null setNull("RESULTS"); }
// check value of Q3RESULTS input column String strColName = "Q3RESULTS"; if(isNull(strColName)) { // set the value of output column to null setNull(strColName); }