...nly want to see data from 2 years, I thought to do a residentload to eliminate the data from 2011. Here you see the piece of code. // ================================ Data beperken op basis v...
...eed to rename the [Id] field. This example solves the code problem:
Person:
LOAD
Id AS %Person_Id,
*
RESIDENT EXT_Person;
DROP FIELD Id;
DROP TABLE EXT_Person;
H...
...xists() and residentload to get a new table containing this data: F3,F4 E,EE I know how to solve this by using mapping load, but I want to understand the Exists() function. Regards, Robert
Hi everyone, I have been using Residentloads and Preceding loads to populate a model/app with data or to transform some tables in the ETL process. But, from a performance perspective, I do not h...
...able Comps; else end if minMax_Test: load max(Comp_BuyDate) as maxDateComps, Comp_Competitor as Comp_Test resident Comps where Comp_Competitor = 'clientName';
I have the below code in my script. Why does the residentload not working...?????I dont get any error but the table CustomersTotals is not getting created. CustomersTotalsTmp: LOAD &n...
Hello, I'm having some difficulty implementing the ApplyMap function to a Resident table. My script is noted below. The Temp table becomes the mapping load table. I then try to u...