Maider wrote:
> Hi,
>
> I'm trying to make an ETL rule extend two others. My code looks similar
> to the following:
>
> rule CopyChild
> transform s : Source!Child
> to t: Target!Child
> extends CopyMom, CopyDad { t.name := t.name;
> }
>
> rule CopyMom
> transform s : Source!Mom
> to t : Target!Mom { t.surname2 := t.surname2;
>
> }
>
> rule CopyDad
> transform s : Source!Dad
> to t : Target!Dad { t.surname := t.surname;
> }
>
> However, I get an error at the first rule that says "Rule ',' not
> found". Any suggestion to what I'm doing wrong would be very
> appreciated :) .
> Cheers,
> Maider