An example of a non-optimized load

The previous examples show three different load statements that will be performed in an optimized way. Any other operation will render the load non-optimized as shown here:

Non-Optimized:
LOAD
City AS Cities,
Country AS Countries,
pick(match(Country, 'United States','United Kingdom','Germany'), 'US', 'GB', 'DE) AS CountryCodes
FROM 'LIB://myConnection/CitiesCountries.qvd'
Where Exists(City);

In this example, I create an extra field matching three countries to their country ISO codes. This will make the load non-optimized.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.222.168.163