Hi Jon,
Let me try to help you here. Sequence numbers of a hierarchy/taxonomy are stored in b_code_set_detail table, field name is 'SEQUENCE_NUM'. You may use the query below but modify the name of hierarchy based on your configuration. hope it helps!
select csd.code, csd.description,csd.SEQUENCE_NUM,csd.PARENT_CODE
from dbo.B_CODE_SET_DETAIL csd
inner join dbo.B_CODE_SET cs on csd.code_set_id=cs.code_set_id
where cs.name ='<hierarchyName>' --it's name of hierarchy or taxonomy or code set
order by 3;
let me know if you have further questions.
Best Regards,
Sreehari
------------------------------
Sreehari Seerla |
| 3054961536
------------------------------