Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
manojkulkarni
Partner - Specialist II
Partner - Specialist II

ETL Script for different schema

Hi Friends,

I have a scenario where in customer modifies source file very frequently. Source will be updated with additional column or column will be deleted How should we handle in script while creating QVDs ? Can we have single script to uploaded below templates

eg:

Template1

Col1 Col2 Col3 Col4 Col5

Template2

Col1 Col2 Col3 Col5 Col6 Col7

Expected QVD Format

Col1 Col2 Col3 Col4 Col5 Col6 Col7

1 Reply
lironbaram
Partner - Master III
Partner - Master III

hi

you can do something like this :

Data:

load *

From Template1;

join

load * From Template2;

store Data into Data.qvd;