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: 
deepakqlikview_123
Specialist
Specialist

Getting first n records in QVD

Hi All,

My database table size is too big,moreover it does not have index number.

Can you please suggest how to get first n records while creating QVD please suggest.

Thanks,

Deepak

1 Solution

Accepted Solutions
avinashelite

Hi Deepak,

At the script try like below:

First 100000 load * from tablename;

This will fetch you the first n records from the DB, then u can make the analysis.

Regards,

@vi

View solution in original post

2 Replies
SunilChauhan
Champion II
Champion II

Load *

from table name where Rowno()<100;

Sunil Chauhan
avinashelite

Hi Deepak,

At the script try like below:

First 100000 load * from tablename;

This will fetch you the first n records from the DB, then u can make the analysis.

Regards,

@vi