Hi,
I'm trying to make a dimension with a Parent/Child Hierarchy. My data source is SQL Server and my table's structure is following:
| Code: |
CREATE TABLE [dbo].[tbl_Organ](
[Organ_ID] [uniqueidentifier] NOT NULL,
[Organ_Name] [nvarchar](255) NOT NULL,
[Organ_Parent_ID] [uniqueidentifier] NULL,
CONSTRAINT [PK_tbl_Organ] PRIMARY KEY CLUSTERED ([Organ_ID] ASC)
|
While I create a Parent/Child dimension I got the following error:
| Code: |
The data of the parent/child hierarchy (Hierarchy) must be sorted (child-id:13588CC9-973C-4752-AE7A-0000D3EE9FFC,parent-id:879811E6-73BF-42D5-9A66-84D5067B7730)
|
Any idea how I can fix this?