Talend tFileInputDelimited 行计数
Talend tFileInputDelimited row count
我想在我的表达式中使用图像中提到的行数。我怎样才能访问它?
图片在这里:
如documentation中所述,有几个可用的变量。如果已经填充,则取决于您要使用变量的位置。这是来自上述页面:
NB_LINE: the number of rows processed. This is an After variable and it returns an integer.
所以在你的情况下,这将是
((Integer) globalMap.get("tFileInputDelimited_2_NB_LINE"))
如果您按 Ctrl + Space.
,Talend 还会在组件输入字段中提供这些变量
我想在我的表达式中使用图像中提到的行数。我怎样才能访问它?
图片在这里:
如documentation中所述,有几个可用的变量。如果已经填充,则取决于您要使用变量的位置。这是来自上述页面:
NB_LINE: the number of rows processed. This is an After variable and it returns an integer.
所以在你的情况下,这将是
((Integer) globalMap.get("tFileInputDelimited_2_NB_LINE"))
如果您按 Ctrl + Space.
,Talend 还会在组件输入字段中提供这些变量