Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everybody,
Is there any way I can load only a few sample from a database?
I'm developing a project from a hudge database and don't want to wait a long time just to check if everything was ok.
Thanks,
Ronan
Ronan
From the script editor, click the Debug button, and check the Limited Load check box and select the number of records in the box below.
Jonathan
I often use
FIRST 1000 // or whatever number you want
LOAD
...
It makes sense to have a variable vFirst, and use it
$(vFirst)
before each big table load. Easy to change to nothing or to string like 'FIRST 1000'
Thank you!