Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to load with specific number from a db
To load the first 100 records:
First 100
Load * from somewhere;
Hi,
You can load First n records of the dataset by using First n keyword like this
TableName:
First n
LOAD
*
FROM DataSource;
where n is replaced with number of records.
Hope this helps you.
Regards,
Jagan.