Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How do I limit the amount of entries to be imported as I am working in "development mode" and do not want to wait for minutes every time a refresh is done?
If you have a date set that date to an interval, for example:
select
...
from
...
where date >= 01/01/2014 and date <= 31/01/2014;
The same if you have a id field, the logic is set interval on significative fields.
Let me know
When in the script editor
Hi Soren,
Lookup the FIRST statement:
First 10 LOAD * FROM abc.csv;
Best regards
Stefan
In the script debugger you can select the number of rows to be imported.
regards
Marco