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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Specific fields causing 1% of rows to not load in a SQL Select QVD load

In the Sql select load statement below, if I uncomment "PART_NO,
800+ fewer rows out of 180,000 are found. Does anyone else have this sort of problem where
certain fields are causing a few rows to not load?
Does anyone have any suggestions for troubleshooting or correcting incomplete SQL loads?

OrderLines:

LOAD

//"PART_NO" AS OrderLines_ItemNbr,

"MCODE" AS OrderLines_MfgCode,

"ORDER_NO" AS OrderLines_OrderNbr,

"LINE" AS OrderLines_OrderLineNbr

SQL SELECT

//"PART_NO",

"MCODE",

"ORDER_NO",

"LINE"

FROM "ORDER_LINE";

STORE OrderLines INTO [UV_OrderLines.qvd];

Labels (1)
13 Replies
Not applicable
Author

I don't know, but I will check.

Not applicable
Author

It's a table, but the table is from a multivalue database from IBM called Universe.
The ODBC connector splits some of the actual tables into virtual tables to normalize
so SQL scripts can be used.

rbecher
Partner - Master III
Partner - Master III

So, then I would double check this behavior with a different tool via ODBC.

Is this an online database with write operations? Maybe it's an issue with read/write consistency (transaction level).

Data & AI Engineer at Orionbelt.ai - a GenAI Semantic Layer Venture, Inventor of Astrato Engine
Not applicable
Author

Good point. I will do this and let you know the results.