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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Data testing

My source data is coming from oracle,xls,sql server for one single table.

How to test the output data of report or dashboard if it is pulling right data.

Labels (1)
1 Reply
christian77
Partner - Specialist
Partner - Specialist

Hi.

You can place a field like Source. Filtering by Source you'll know the origin of data.

LOAD

'xls'                    as "Source",

*

from xls;

concatenate

LOAD

'sql'                    as "Source",

*

from sql;

concatenate

LOAD

'oracle'                 as "Source",

*

from oracle;