Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I want to load limited rows from the data base how can i do that like want to load only 20 rows from above.
Jude,
Hi Jude,
You want to load a 20 rows to do this you need to conditionally load data and add a syntax in load script like
LOAD Column1,
Column2,
Column3
FROM
[DataFile.xls]
(ooxml, embedded labels, table is [DATA])
Where Recno()<=20;
Hi Jude,
You want to load a 20 rows to do this you need to conditionally load data and add a syntax in load script like
LOAD Column1,
Column2,
Column3
FROM
[DataFile.xls]
(ooxml, embedded labels, table is [DATA])
Where Recno()<=20;
Hi,
You have to do something like that :
Table:
FIRST (20) // If you want to load the 20th first rows
LOAD * FROM MyTable;
Hope that helps you
Martin