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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
didierodayo
Partner - Creator III
Partner - Creator III

ETL reporting

Hello,

I am trying to build a table that shows  all fields names and source table (after they were transformed /renamed etc..), all field names(from the extract stage) , and I would like to the show transformation expression (date; rename; etc..).

the objective is to make document review process easier.

an example is below:

Extract:

LOAD

NAME,

ADDRESS,

BOOKINGDT;

SQL SELECT *
FROM 
ECHO.BOOKING;

STORE Extract INTO (vPath)Extract.qvd;
DROP TABLE Extract;

Transform:

LOAD

NAME  AS  CUSTMERNAME,

ADDRESS AS "CUSTOMER ADDRESS",

BOOKINGDT  as  "BOOKING DATE"

FROM (vPath)Extract.qvd (qvd) ;

EXPECTED RESULT

Labels (1)
0 Replies