Tagged Questions
The connect-by tag has no wiki summary.
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 ...
3
votes
1answer
292 views
Can I create a custom expression without using the where clause?
While I have already solved this issue in a previous question using a native query. I am now wondering if it is possible to create a custom expression that is usable in a Criteria without using the ...
3
votes
3answers
2k views
Mixing together Connect by, inner join and sum with Oracle
I need help with a oracle query. Excuse me in advance for my english.
Here is my setup:
I have 2 tables called respectively "tasks" and "timesheets". The "tasks" table is a recursive one, that way ...
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
246 views
i want to get just the end parent for each child using oracle connect by , start with statement
I am using start with , connect by statement to get data recursivly, i am getting all parent - child but i just want to get the end parent for each child.
for eg i have following data
child --> ...
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 ...
0
votes
1answer
34 views
Is there a method to ORDER BY managers DESCENDING in an Oracle CONNECT BY query?
In this scenerio...
CREATE TABLE emp
(
empno NUMBER(4) NOT NULL,
ename VARCHAR2(10),
job VARCHAR2(9),
mgr NUMBER(4),
sal NUMBER(7,2),
deptno NUMBER(2)
);
INSERT ...