Tagged Questions

4
votes
2answers
656 views

oracle 9i get highest member of tree with given child

I have a parent-child relationship in an Oracle 9i database-table like: parent | child 1 | 2 2 | 3 2 | 4 null | 1 1 | 8 I need to get the absolute parent from a given ...
2
votes
1answer
77 views

Fast way to generate concatenated strings in Oracle

Don't we hate when evil coding comes back to haunt? Some time ago I needed to generate a string concatenating some fields for some more processing later. I thought it would be a good idea to do if ...
2
votes
2answers
275 views

CONNECT BY or hierarchical queries in RDBMS other than Oracle

Oracle ships with a very handy feature. You can create hierarchical queries (recursive behaviour) using the following clause: CONNECT BY [NOCYCLE] {condition [AND condition...]} [START WITH ...
2
votes
3answers
3k views

Joining other tables in oracle tree queries

Given a simple (id, description) table t1, such as id description -- ----------- 1 Alice 2 Bob 3 Carol 4 David 5 Erica 6 Fred And a parent-child relationship table t2, such as parent ...
1
vote
1answer
39 views

How to make CONNECT BY parameter optional

I have a procedure that uses Connect By SELECT <lots of fields> FROM Group g <joins> WHERE <where> CONNECT BY PRIOR g.ID = g.ParentID START WITH g.ID = 1337 ORDER SIBLINGS BY ...
1
vote
1answer
78 views

Correlated row-generating query in Oracle

Given this starting CTE: WITH Sections AS ( SELECT 1 Section, 1 StartUnit, 5 EndUnit FROM DUAL UNION ALL SELECT 2, 0, 2 FROM DUAL UNION ALL SELECT 3, 1, 1 FROM DUAL ), How do I generate a ...
1
vote
1answer
150 views

Oracle 'CONNECT BY' Syntax

This is an offshoot of the following question: http://stackoverflow.com/questions/3524604/single-out-duplicates-between-two-result-sets As by a comment in that questions, I'm trying to implement my ...
0
votes
1answer
79 views

How to convert connect by level in teradata

I was trying to convert the connect by level function of oracle to teradata. I have seen many examples over the net but this particular one is different, (SELECT CASE LEVEL WHEN 1 ...
0
votes
1answer
109 views

SQL Optimization: CONNECT BY … START WITH

I have a query using CONNECT BY and START WITH statement like below. The query in the IN clause took less than 5 seconds to run and returns 3000 rows. fact_table contains 20M of records. How can I ...