Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Row Count for Teradata/tTeradataOutput

Can someone help me how to find the no of rows(row count) inserted in to Teradata Table?

Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Using below variables we can get row count

 

((Integer)globalMap.get("tTeradataOutput_1_NB_LINE"))
((Integer)globalMap.get("tTeradataOutput_1_NB_LINE_INSERTED"))
((Integer)globalMap.get("tTeradataOutput_1_NB_LINE_UPDATED"))

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Using below variables we can get row count

 

((Integer)globalMap.get("tTeradataOutput_1_NB_LINE"))
((Integer)globalMap.get("tTeradataOutput_1_NB_LINE_INSERTED"))
((Integer)globalMap.get("tTeradataOutput_1_NB_LINE_UPDATED"))

Anonymous
Not applicable
Author

Hi ThirupathiReddy

 

Thanks for the reply. Is it possible to explain/example how to implement this ((Integer)globalMap.get("tTeradataOutput_1_NB_LINE_INSERTED")).