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: 
Anonymous
Not applicable

Why i am getting $orphan table while doing crosstable load

Hi Friends,

I am doing a crosstable load and it is working fine.. but I am getting may $Orphan tables...

how to fix those..

Thanks in advance.

AA

1 Solution

Accepted Solutions
sushil353
Master II
Master II

hi,

try a quick fix using where 1=1:

crosstable(asdf,tet)

load

...

...

from table

where 1=1;

HTH

Sushil

View solution in original post

2 Replies
sushil353
Master II
Master II

hi,

try a quick fix using where 1=1:

crosstable(asdf,tet)

load

...

...

from table

where 1=1;

HTH

Sushil

stevedark
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi there,

This is an odd issue, and I presume it is happening due to the load from QVD being optimised and this loading the table model in first.  The 1=1 would break the optimised load causing it to be parsed differently.

Typically you would not need to do a CROSSTABLE on a QVD, as this should be done when loading from the source data rather than from the QVD.

Steve