Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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
'sql' as "Source",
from sql;
'oracle' as "Source",
from oracle;