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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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