Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikview979
Specialist
Specialist

REPLACE TABLE

Hi experts,

I have two tables T1, T2   First load the T1 table then replace T1 table with T2 table Now my requirement is i want get two tables data in front end ?

2 Replies
robert_mika
Master III
Master III

Do not Replace T1.

If data are coming from the same resource you can maybe use

T1:

Load A

B

;

T2

Load A as a

B as B

How does your Load statement looks like?

Not applicable

If you have to perform the replace,

Locate the load statement that replaces T1 and do something like

T1Copy:

Load * resident T1;

By doing the above you can use the copy to be in your front end table

but again Robert is correct, can we have a look at your load statement to give you an accurate answer.