I have a Sql table, shown below:-
> select * from table1;
|--------------------------------------------------|
| ID | A1 | A2 | B1 | B2 | C1 | C2 | REF_B | REF_C |
|--------------------------------------------------|
| 1 | a1 | a1 | b1 | b1| c1 | c1 | 1 | 1 |
| 2 | a2 | a2 | b2 | b2| c1 | c1 | 2 | 1 |
| 3 | a3 | a3 | b1 | b1| c1 | c1 | 1 | 1 |
|--------------------------------------------------|
IDis Primary key.A1andA2are unique to each tuple.B1andB2are the values of tuple pointed to byREF_Battribute of the current row.C1andC2are the values of tuple pointed to byREF_Cattribute of the current row.REF_Brefers to theIDof another tuple in this same table from where we should get the values ofBx.REF_Crefers to theIDof another tuple in this same table from where we should get the values ofCx.
In this the above approach the obvious problem we face is propagating the changes made in tuple 1 to tuples 2 and 3. Right now we have used programmatic approach (Java code) to achieve this.
This is both difficult and not beautiful.
Proposed change
Divide table1 into three tables.
> select * from table1_a;
|------------------------------|
| ID | A1 | A2 | REF_B | REF_C |
|------------------------------|
| 1 | a1 | a1 | 1 | 1 |
| 2 | a2 | a2 | 2 | 1 |
| 3 | a3 | a3 | 1 | 1 |
|------------------------------|
> select * from table1_b;
|--------------|
| ID | B1 | B2 |
|--------------|
| 1 | b1 | b1 |
| 2 | b2 | b2 |
|--------------|
> select * from table1_c;
|--------------|
| ID | C1 | C2 |
|--------------|
| 1 | c1 | c1 |
|--------------|
table1 will be a updatable view over the join of these three tables.
- Do you see any possible flaw in this approach?
- Is there an easier solution?
- What are the possible restrictions we may have on the new
table1.table1directly maps to an ADF Entity Object.