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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Anil_Babu_Samineni

Can QVD gets the Updated Values?

Hello,

I just created one inline

Sales:

LOAD * INLINE [

ID, Name, Sales

1, Anil, 10

2, Babu, 20

3, Samineni, 30

];

STORE Sales into Z:\qvd (qvd);

Then Table box looking like this

Capture.PNG

Now, What i want to achieve is I want to Update Value Where Name = 'Samineni' - Sales = '40'

This should achieve from after deleting inline and STORE Command

For getting we just load that into Qlikview

LOAD * from Z:\qvd (qvd);

After I've tried like below

LOAD * from Z:\qvd (qvd); Where if(ID=2,'Babu1',if(ID=3,'Samineni1',Name));

It is not working, Can anyone assist me, Please???

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Labels (1)
1 Solution

Accepted Solutions
sunny_talwar

I am not sure I understand your intent, but may be this:

Sales:

LOAD * INLINE [

ID, Name, Sales

1, Anil, 10

2, Babu, 20

3, Samineni, 30

];

STORE Sales into Sales.qvd (qvd);

DROP Table Sales;

Sales:

LOAD ID,

  Name,

  If(Name = 'Samineni', 40, Sales) as Sales

From Sales.qvd (qvd);

STORE Sales into Sales.qvd (qvd);

View solution in original post

4 Replies
Anonymous
Not applicable

Hi Anil,

For getting the updates in QVD, u need to perform an incremental load.

Check out this link on how to do this.

Incremental Load in QlikView – Part1 – Learn QlikView

Thanks.

sunny_talwar

I am not sure I understand your intent, but may be this:

Sales:

LOAD * INLINE [

ID, Name, Sales

1, Anil, 10

2, Babu, 20

3, Samineni, 30

];

STORE Sales into Sales.qvd (qvd);

DROP Table Sales;

Sales:

LOAD ID,

  Name,

  If(Name = 'Samineni', 40, Sales) as Sales

From Sales.qvd (qvd);

STORE Sales into Sales.qvd (qvd);

Anil_Babu_Samineni
Author

Sunny, I am able to try to get from after loading the qvd only

LOAD * from Z:\qvd (qvd);

I have this, From this how to get Update without Increment Load. is that, Possible. Sometimes we need to change 100 Records then we can update using Increment load. My target is Without increment load.

Is that possible?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anil_Babu_Samineni
Author

With incremental list we can use all operation like dml. But, my question if without that is that it's possible

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful