Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I need to get first 10 rows from a QVD into QVW irrespective of data.
Is there any way we can do that ?
Thanks,
Chiru
FIRST 10
LOAD
*
FROM QVD.qvd(qvd)
Something like this should work:
FIRST 10
LOAD
*
FROM yourdata.qvd (qvd);
or
LOAD
*
FROM
yourdata.qvd (qvd)
WHERE
RowNo() <= 10;