Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

One or more loops have been detected in your database structure.

Hi Anybody has a good solution for this error.

The reasion that I am having this is because I am loading data from two QVDs both of them have 'OriginalParty' field name ..and that field is the one I am using to join the data on the two QVDs..

Any Idea on how I can fix that?

Thxs

3 Replies
Jason_Michaelides
Luminary Alumni
Luminary Alumni

You need tO concatenate the 2 qvd tables together into 1.

Fact:

Load

   1 AS FactType,

   Field1,

   Field2,

   Etc

From qvd1;

CONCATENATE (Fact)

Load

   2 AS FactType,

   Field1,

   Field2,

   Etc

From qvd2;

Hope this helps,

Jason

Not applicable
Author

This didn't work!

Jason_Michaelides
Luminary Alumni
Luminary Alumni

Please post the data schema (Ctrl+T)