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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Purushothaman
Partner - Creator III
Partner - Creator III

Increment Load

Hi Qlik Experts,

I would like to perform a Increment load. Attached is my dataset. I would like to attach the below new data into my current data (EmpOff)  and perform a increment load.

New Data 

Purushothaman_0-1620014166021.png

 

2 Replies
Taoufiq_Zarra

@Purushothaman  If I understood correctly, you want just to add this data : Input Only

you can just add line like :

Data:

LOAD EmpID, 
     [Last Name], 
     [First Name], 
     Title, 
     [Hire Date], 
     Office, 
     Extension, 
     [Reports To], 
     [Year Salary], 
     [Date Updated]
FROM
.\EmpOff.xls
(biff, embedded labels, table is Employee$);

NewData:
LOAD EmpID, 
     [Last Name], 
     [First Name], 
     Title, 
     [Hire Date], 
     Office, 
     Extension, 
     [Reports To], 
     [Year Salary], 
     [Date Updated]
FROM
C:\Users\admin\Downloads\New_data.xls
(biff, embedded labels, table is Employee$);

 

output:

Taoufiq_Zarra_0-1620040397946.png

 

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉
Taoufiq_Zarra

@Purushothaman  If I understood correctly, you want just to add this data : Input Only

you can just add line like :

Data:

LOAD EmpID, 
     [Last Name], 
     [First Name], 
     Title, 
     [Hire Date], 
     Office, 
     Extension, 
     [Reports To], 
     [Year Salary], 
     [Date Updated]
FROM
.\EmpOff.xls
(biff, embedded labels, table is Employee$);

NewData:
LOAD EmpID, 
     [Last Name], 
     [First Name], 
     Title, 
     [Hire Date], 
     Office, 
     Extension, 
     [Reports To], 
     [Year Salary], 
     [Date Updated]
FROM
C:\Users\admin\Downloads\New_data.xls
(biff, embedded labels, table is Employee$);

 

output:

Taoufiq_Zarra_0-1620040397946.png

 

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉