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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Hi, can anyone share with me how you can load data into qlikview and avoiding Qlikview's Distinct Load?

I am a newbie to Qlikview; I want to load data into qlikviewapp but I don't want qlikview to do a distinct load what and how can I do this.  

loading data into qlikview and avoiding Qlikview's Distinct Load?

I appreciate any help.

thanks.

1 Solution

Accepted Solutions
jyothish8807
Master II
Master II

Hi Murry,

Add a field rowno() in the script.

load

rowno() as Sino,

Direct_Hours,

Indirect_Hours

from <>

Regards

KC

Best Regards,
KC

View solution in original post

3 Replies
jyothish8807
Master II
Master II

Hi Murry,

Add a field rowno() in the script.

load

rowno() as Sino,

Direct_Hours,

Indirect_Hours

from <>

Regards

KC

Best Regards,
KC
Not applicable
Author

Thanks

marcus_sommer

Unless you used the DISTINCT key-word qlikview won't load any data distinct. But if showed data within the gui in a tablebox then only unique table-rows will be displayed. To use rowno() as record-identify like suggest from jyothish8807 will avoid it in a tablebox but you need such things only for checking data while the development - within a production-application are such ID's not helpful then they need only a lot of RAM without further use.

- Marcus