We're looking at using Oracle Hierarchical queries to model potentially very large tree structures (potentially infinitely wide, and depth of 30+). My understanding is that hierarchal queries provide a method to write recursively joining SQL but they it does not provide any real performance enhancements over if you were to manually write an equivalent query... is this the case? What sort of experiences have people had, performance wise, with using oracle hierarchical queries?
|
|
|||
|
|
|
Well the short answer is that without the hierarchical extension (connect by) you couldn't write a recursive query. You could programmitically issue many queries which were recurisively linked. The rule of thumb with everything database is, especially oracle, is that if you can issue your result in a single query it will almost always be faster than doing it programatically. |
||
|
|
|
My experiences have been with much smaller sets, so I can't speak for how well heirarchical queries will perform for large sets. When doing these tree retrievals, you typically have these options
Doing it all in the database will reduce unnecessary round trips or wasteful queries that pull too much data. |
||
|
|
|
|
Try partitioning the data within you hierarchical table and then limiting the partition included in the query.
The interesting problem now becomes your partitioning strategy. Oracle provides several options. |
||
|
|
|
|
I've seen that using connect by can be slow but compared to what? There isn't really another option except building a result set using recursive PL/SQL calls (slower) or doing it on your client side. You could try separating your data into a mapping (hierarchy definition) and lookup tables (the display data) and then joining them back together. I guess I wouldn't expect much of a gain assuming you are getting the hierarchy data from indexed fields but its worth a try. Have you tried it using the connect by yet? I'm a big fan of trying different variations. |
||
|
|
