Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The following sample queries demonstrate how to join the most common content management views to other views.
Joining software distribution and package status views
The following query lists all packages by package ID and package name, the current status of each package, the Network Abstraction Layer (NAL) path for the distribution point, and the last time the package was refreshed on the distribution point. The v_Package view is joined to the v_PackageStatusDetailSumm status view and v_DistributionPoint software distribution view by using the PackageID columns.
SELECT PCK.PackageID, PCK.Name as PackageName, PSD.Targeted,
PSD.Installed, PSD.Retrying, PSD.Failed, DP.ServerNALPath,
DP.LastRefreshTime
FROM v_Package PCK INNER JOIN v_PackageStatusDetailSumm PSD
ON PCK.PackageID = PSD.PackageID INNER JOIN v_DistributionPoint DP
ON PCK.PackageID = DP.PackageID
ORDER BY PCK.PackageID