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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
andre_avenant
Contributor II
Contributor II

Joining Multiple Data Sources

Hi All

How do you concatenate two different data sources from two different SQl DB's.

The data is the same...if you just do a normal load you get a lot of Synthetic keys.

Thanks in advance

2 Solutions

Accepted Solutions
max_potass
Creator
Creator

First: Are the Fieldnames definitly the same?

Second: did you use concetanate between the loads?

If yes try:

Load both tables seperatly and store them. Drop them. Load them from qvd file.

Table1:

Load

     your first load srcipt

from ..;

Table2:

Load

     your second load script

from...;

Store Table1 into Table1.qvd;

Store Table2 into Table2.qvd;

drop tables Table1, Table2;

FullTable:

Load * From Table1.qvd;

concetanate

Load * From Table2.qvd;

View solution in original post

sasiparupudi1
Master III
Master III

Connect statement first db

T1:

SQL Select

F1,

F2,

F3,

F4

From your table;

Connect statement second db;

Concatenate(T1)

SQL Select

F1,

F2,

F3,

F4

From your table;

View solution in original post

4 Replies
max_potass
Creator
Creator

First: Are the Fieldnames definitly the same?

Second: did you use concetanate between the loads?

If yes try:

Load both tables seperatly and store them. Drop them. Load them from qvd file.

Table1:

Load

     your first load srcipt

from ..;

Table2:

Load

     your second load script

from...;

Store Table1 into Table1.qvd;

Store Table2 into Table2.qvd;

drop tables Table1, Table2;

FullTable:

Load * From Table1.qvd;

concetanate

Load * From Table2.qvd;

sasiparupudi1
Master III
Master III

Connect statement first db

T1:

SQL Select

F1,

F2,

F3,

F4

From your table;

Connect statement second db;

Concatenate(T1)

SQL Select

F1,

F2,

F3,

F4

From your table;

andre_avenant
Contributor II
Contributor II
Author

Hello

Thanks. It now gives me the errors:

I can individually see the QVD , but cannot see the data even if I just load it

max_potass
Creator
Creator

What does your data look like if you just load one of the two? I guess you have the problem already there, so in the sql import.