Dear Krishna and Chandra,
what I get from your replay is that it is a normal feature, and it is acceptable.
My question is then how to get the 1 - 4 result with the same setup.
Since Chandra gave only an example I give you guys one (a reather silly) as well:
A table: Many attributes and measures + HYP_COST - cost of hyper jump.
B table: Many attributes and measures + PLACE - place to visit.
MY_SHIP | HYP_COST | other columns |
---|---|---|
1 | 30 | ... |
2 | 15 | ... |
MY_SHIP | PLACE | other columns |
---|---|---|
1 | Mars | ... |
1 | Venus | ... |
2 | Pluto |
I would like to see the following result:
MY_SHIP | HYP_COST |
---|---|
1 | 60 |
2 | 15 |
or:
MY_SHIP | HYP_COST | PLACE |
---|---|---|
1 | 30 | Mars |
1 | 30 | Venus |
2 | 15 | Pluto |
Note, that you need to connect temporal attributes to both tables A and B, so you must use the tables in analytic views before you join them.
Thanks for the replies!
David.