Tagged Questions
The hierarchical-query tag has no wiki summary.
11
votes
4answers
2k views
Cycle detection with recursive subquery factoring
Oracle SQL can do hierarchical queries since v2, using their proprietary CONNECT BY syntax. In their latest 11g release 2, they added recursive subquery factoring, also known as the recursive with ...
3
votes
2answers
216 views
How can I get a distinct list of elements in a hierarchical query?
I have a database table, with people identified by a name, a job and a city. I have a second table that contains a hierarchical representation of every job in the company in every city.
Suppose I ...
2
votes
4answers
741 views
Oracle 10g Connect By Prior - Performance Issues
I have the following SQL statement:
SELECT
CONNECT_BY_ROOT ANIMAL_ID "ORIGINAL_ANIMAL" ,
ANIMAL_ID, LINE_ID, SIRE_ANIMAL_ID, DAM_ANIMAL_ID,
LEVEL -1 "LEVEL" FROM ANIMALS
START WITH ...
1
vote
2answers
207 views
Splitting a Path Enumeration Model PathString in MySQL
I'm trying to implement a Path Enumeration model as per Joe Celko's book (page 38). The relevant attributes of my table (and the support table that just contains sequential integers) look like this:
...
1
vote
3answers
214 views
How do I query for all the nodes between two nodes in a tree?
I have a hierarchical database strucutre, e.g. columns ID and PARENT_ID defined for each row, with the top level rows having a NULL PARENT_ID.
I have all the relationships from this table flattened ...
0
votes
0answers
8 views
Query to get both parents and children using start with and connect by
I understand that we can get both parents and children using union but the driver that we use in our product does not allow us to write multiple hierarchical queries. Is there any other way this can ...
0
votes
2answers
119 views
Need an Oracle hierarchical query that returns only full trees for records where children match a search string
Here's the full example data set for this query without any pruning of trees where no node matches the search string:
Level parent id text
---------------------------------------------
0 ...
0
votes
2answers
295 views
May I retrieve a hierarchical data structure from a SQL Server stored procedure?
I have a Web Service one of whose methods returns a list of items, each of which possesses another list of items:
<TopLevelItems>
<TopLevelItem field1="a" field2="b" ...>
...
0
votes
3answers
204 views
searching DBMS with hierarchical structure
Is there any open-source hierarchical database or emulation atop of existing RDBMS?
I am searching a DMBS (or plugin to existing RDBMS) which can store hierarchical data and permits to perform ...
0
votes
1answer
347 views
Oracle hierarchical query execution steps
Here's the documentation: http://download-east.oracle.com/docs/cd/B12037_01/server.101/b10759/queries003.htm
Here's the execution order it describes:
A join, if present, is evaluated
first, whether ...