I've a two tables A and B, where a record in A is mapped to several records in B. There is query which shows the records of table A, along with all the mapped records in table B in a single line, like :
TABLE A
--------
ID Name Tag ......
1 X 213
2 Y 222
TABLE B
--------
ID ACCESS_AREA
1 101
1 104
1 105
2 101
2 103
The query is like:
SELECT ID,
Name,
Tag ,.....,
(SELECT WM_CONCAT(ACCESS_AREA)
FROM B
WHERE ID = A.ID ) Access_areas
FROM A
Though the above works, the performance of the query is very low, as the number of records in both the tables are very large. Any filtering or sorting on the access_areas results in further low performance.
We thought of using a materialized view to compute the values before hand, so that it'll be a simple join, but mv does not allow fast refresh on commit for such queries using aggregate functions.
Another option was to add a column to table A, which contained the computed values from B and use a trigger on table B to update the new column if any changes were done. But this also is not feasible as you cannot query the same table where the trigger is.
As a last resort we've decided to implement the second option and update the column through the application code, which is very tedious.
Any ideas?