Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is there an expression that you can insert into a script to filter the incoming data (say from a database) by date range before it is loaded into the app e.g. all data ater a certain date or should it always be filtered first in the database ideally ?
You can add a where clause to a load script block:
Example1:
LOAD * FROM MyTable.qvd (qvd) WHERE MyDate <= Today();
Example2:
SQL SELECT * FROM MyTable WHERE MyYear <= 2015;
You can add a where clause to a load script block:
Example1:
LOAD * FROM MyTable.qvd (qvd) WHERE MyDate <= Today();
Example2:
SQL SELECT * FROM MyTable WHERE MyYear <= 2015;
Thanks for your help this works .