Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Limit data when loading in Data Manager

Hi All,

I want to load my data through Data Manager.. is there any way I can limit the data before I load/prepare it? I'm loading huge data coming from my database and I do not want to load all! Is there any way I can filter my data?

Thanks in advance,

Lyn

1 Solution

Accepted Solutions
Gysbert_Wassenaar

Not in the Data Manager afaik. But I haven't used it a lot yet. Perhaps it's possible to add a WHERE clause when selecting the data source.

In the Date load Editor you can add a line directly above the load statement to limit the number of records that will be loaded:

MyTable:

FIRST 1000

LOAD A, B, C FROM ...;

If you use Debug Mode you can also use the Limited Load setting to restrict the number of records loaded. See the online help for more information: Debug the data load script ‒ Qlik Sense


talk is cheap, supply exceeds demand

View solution in original post

3 Replies
Gysbert_Wassenaar

Not in the Data Manager afaik. But I haven't used it a lot yet. Perhaps it's possible to add a WHERE clause when selecting the data source.

In the Date load Editor you can add a line directly above the load statement to limit the number of records that will be loaded:

MyTable:

FIRST 1000

LOAD A, B, C FROM ...;

If you use Debug Mode you can also use the Limited Load setting to restrict the number of records loaded. See the online help for more information: Debug the data load script ‒ Qlik Sense


talk is cheap, supply exceeds demand
arulsettu
Master III
Master III

as gwassenaar‌ said  not possible in Data manager. you can do it in data load editor.

Untitled.png

Not applicable
Author

Thanks for the input! arulsettu‌ and gwassenaar