I have a problem in a hierarchical query. I have a self-referencing table like this:
id parent_id name size
-----------------------------------------
1 null Ship1 50
2 1 cabin1 10
3 1 cabin2 30
4 3 shelf1 5
5 3 shelf2 20
6 null Ship2 50
7 6 cabin1 10
8 6 cabin2 30
9 7 shelf1 15
I need to add a trigger in the database which prevents the user from adding a cabin which exceeds the remaining size of that ship.
For example, in the table, for ship 1, we have a total size of 50. There are 2 cabins present which consume the size of 40. So now we are left with 10 as the available space. We should not be able to add another cabin(s) with size>10. Anything <= 10 is fine. Similar is the case for cabins and shelves. The total size of all the shelves in a cabin should not exceed the total size allotted for that cabin.
There can be any number of ship-entries in the table (which is the root).
I know about hierarchical queries and i can traverse a tree and all but I'm finding it difficult to gather my thoughts on the problem. Could anyone please point me in the right direction so that I can add that trigger successfully?
I agree with @N_west that you should probably have separate tables for
Ships
,Cabins
andShelves
, for your minimalist purpose and for the ease of maintenance (archiving/purging etc.). If you want to have a Trigger to handle this then you will have to capture the data fromSHIPS
to a log table using a trigger onSHIPS
then use the data on log table to verify against insert onSHIPS
. Its not best of solution but can achieve what you want. You can have a user defined exception to handleALERTS
in your application based on the error code (20101).Another approach would be to use
COMPOUND TRIGGERS
only if you are using Oracle 11g.