Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a simple load statement that is loading records from a ".qvd" file that has millions of records.
How do I limit my record load to say 1000 records.
Gerry
Use the First command:
First 1000
Load
*
from <QVD file>;
Hi,
Then try to load like
Load * From a.qvd where
RowNo() <= 1000; //This loads only 1000 records
Regards
Anand