[管理与运维]
如何查询某个数据源被哪些数据集所使用?
免责声明:本文不代表本站立场,且不构成任何建议,请谨慎对待。
版权声明:作者保留权利,不代表本站立场。
yhdata_lyaa
显示全部楼层
发表于 2024-10-24 15:59:49
yhdata_F7m2lyXk
显示全部楼层
发表于 2024-10-24 16:17:40
yhdata_lyaa
显示全部楼层
发表于 2024-10-24 16:22:37
是的
yhdata_hwQxuHoA
显示全部楼层
发表于 7 天前
yhdata_hwQxuHoA
显示全部楼层
发表于 7 天前
select t3.*
from LINEAGE_RESOURCE t1,
LINEAGE_QUERY_RELATION t2,
LINEAGE_RESOURCE t3
where t1.detail_type = '16903'
and t2.Depend_Id = t1.id
and t3.id = t2.id
and t1.name = '数据源名称'
select t3.*
from yonghong_report.LINEAGE_RESOURCE t1,
yonghong_report.LINEAGE_QUERY_RELATION t2,
yonghong_report.LINEAGE_RESOURCE t3
where t1.detail_type = '16903'
and t2.Depend_Id = t1.id
and t3.id = t2.id
and t1.name = '数据源名称' 复制代码
yhdata_hwQxuHoA
显示全部楼层
发表于 7 天前
where t1.detail_type = '16903'
在帮助文档中没有找到 16903 表示的哪种类型的资源,为什么做这个限制