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: 
najamulhassan1
Contributor
Contributor

Columns in Qvds getting replaced with TableName.*

Sometimes my Qvd generates .* instead column names like if

DATA_PROCESSING:
Load

Category,

Revenue ;

SQL Select

Category,

Revenue 

from

DATA_PROCESSING;

store DATA_PROCESSING into $(qvdpath)DATA_PROCESSING.qvd](qvd);
drop table DATA_PROCESSING;

sometimes it generates DATA_PROCESSING.* in qvd instead of 

DATA_PROCESSING.category, DATA_PROCESSING.Revenue

 

Labels (3)
2 Replies
Chanty4u
MVP
MVP

Only for this qvd having issue or all the qvd's  having the issue?

 

instead of Qvdpath .....  try with direct path  and do again ?

najamulhassan1
Contributor
Contributor
Author

It works fine sometimes but in very next run of script it generates Qvd like that