Quantcast
Channel: Symantec Connect
Viewing all articles
Browse latest Browse all 26913

List All Computer Resources / Asset and owner

$
0
0
ソリューションが必要です

How can I run a report that list all Computer Resources Asset and the Owner. 

 

I have this, but all I ma getting is a Guid.  I need an actual usable name...

 

DECLARE @v1_TrusteeScope nvarchar(155)
   SET @v1_TrusteeScope = N'{2E1F478A-4986-4223-9D1E-B5920A63AB41},{582029E2-FC5B-4717-8808-B80D6EF0FD67},{B760E9A9-E4DB-404C-A93F-AEA51754AA4F},{ED6E7E4B-4DF3-45A9-AB8E-D28371144C24}'
SELECT
   [vri2_Computer].[Guid] AS [_ItemGuid],
   [vri2_Computer].[Name],
   [dca4_AeX AC Identification].[Hardware Serial Number],
   [dca4_AeX AC Identification].[Name] AS [Name1],
   [dca3_Ownership Details].[Owner]
FROM
   [vRM_Computer_Item] AS [vri2_Computer]
      LEFT OUTER JOIN [Inv_Ownership_Details] AS [dca3_Ownership Details]
         ON ([vri2_Computer].[Guid] = [dca3_Ownership Details].[_ResourceGuid])
      LEFT OUTER JOIN [Inv_AeX_AC_Identification] AS [dca4_AeX AC Identification]
         ON ([vri2_Computer].[Guid] = [dca4_AeX AC Identification].[_ResourceGuid])
WHERE
   (
      ([vri2_Computer].[Guid] IN (SELECT [ResourceGuid] FROM [ScopeMembership] WHERE [ScopeCollectionGuid] IN (SELECT [ScopeCollectionGuid] FROM dbo.fnGetTrusteeScopeCollections(@v1_TrusteeScope))))
   )
 


Viewing all articles
Browse latest Browse all 26913

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>