Home Forums SQL Server 2008 T-SQL (SS2K8) Need recursive CTE to extract BOM Model/Option columns with structure for lower level items RE: Need recursive CTE to extract BOM Model/Option columns with structure for lower level items

  • WITH NewBOM AS

    (

    SELECT MODEL=COMPONENT_ITEM, [OPTION]=PARENT_ITEM

    ,[LEVEL], LEVEL_INDENTED, COMPONENT_ITEM, PARENT_ITEM, ITEM_TYPE

    ,[SORT]=CAST([LEVEL] AS VARCHAR(8000))

    FROM SAMPLE_BOM

    WHERE LEVEL = 0

    UNION ALL

    SELECT MODEL, [OPTION]=CASE b.[LEVEL] WHEN 2 THEN b.PARENT_ITEM ELSE [OPTION] END

    ,b.[LEVEL], b.LEVEL_INDENTED, b.COMPONENT_ITEM, b.PARENT_ITEM, b.ITEM_TYPE

    ,[SORT] + '/' + CAST(RTRIM(b.COMPONENT_ITEM) AS VARCHAR(8000))

    FROM NewBOM a

    JOIN SAMPLE_BOM b ON a.COMPONENT_ITEM = b.PARENT_ITEM

    )

    SELECT MODEL, [OPTION], [LEVEL], LEVEL_INDENTED, COMPONENT_ITEM, PARENT_ITEM, ITEM_TYPE, [SORT]

    FROM NewBOM

    WHERE [LEVEL] > 1

    ORDER BY MODEL, [SORT];

    You may need to play a bit with [SORT] to get the BOM displayed in exactly the order you want.


    My mantra: No loops! No CURSORs! No RBAR! Hoo-uh![/I]

    My thought question: Have you ever been told that your query runs too fast?

    My advice:
    INDEXing a poor-performing query is like putting sugar on cat food. Yeah, it probably tastes better but are you sure you want to eat it?
    The path of least resistance can be a slippery slope. Take care that fixing your fixes of fixes doesn't snowball and end up costing you more than fixing the root cause would have in the first place.

    Need to UNPIVOT? Why not CROSS APPLY VALUES instead?[/url]
    Since random numbers are too important to be left to chance, let's generate some![/url]
    Learn to understand recursive CTEs by example.[/url]
    [url url=http://www.sqlservercentral.com/articles/St