Multi table add rows
In this case, we have added some new sales for the seller google.We have also added a new product.
sales has a many-to-one relationship with product.
Table sales changes
Table
products changes
Change description
Multi table add rows using a relative condition
In this case, we have added new rows in sales table.All these new sales has a new seller which has been added in users table.
sales has a many-to-one relationship with users.
Table sales changes
Table
users changes
This change can be expressed with this description which could be cumbersome to build because of the
IN condition.
Change description
Instead of using an
IN condition we tell that all the rows added are relative to the row added in others table
Relative change description
This solution could have adverse consequences.
If you have defined a factless hierarchy on user, the missing link with the fact table forbid us to use the sales table scope.
Connector will full refresh on this hierarchy stream.