Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Binary Tree Implementation
I'm new to Oracle (10G), and I'm trying to create a binary tree
structure with a self-referencing table, but I am having some trouble.
Table NODE
NODEID (PK)
PARENTNODEID (FK)
LEFTCHILDNODEID (FK)
RIGHTCHILDNODEID (FK)
DATA
The FK constrained fields have two purposes:
When I try to apply an FK constraint on any of the parent or child id columns, I receive a deadlock time out.
Can any point me in the direction of my error, or perhaps suggest a better or different way of doing this?
Thanks in advance. Received on Thu Dec 08 2005 - 16:30:31 CST
![]() |
![]() |