
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-06-2013 12:53 PM
Hi,
I would like to create a report that shows me which assets are only in the "Default Group" of the "Asset groups", so I can move them to the right one.
I would like to create a report that shows me which assets are only in the "Default Group" of the "Asset groups", so I can move them to the right one.
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2013 09:18 AM
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
Count(tblAssetGroupLink.AssetID) As NrOfGroups
From tblAssets
Inner Join tblAssetGroupLink On tblAssets.AssetID = tblAssetGroupLink.AssetID
Group By tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain
Having Count(tblAssetGroupLink.AssetID) = 1
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2013 09:18 AM
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
Count(tblAssetGroupLink.AssetID) As NrOfGroups
From tblAssets
Inner Join tblAssetGroupLink On tblAssets.AssetID = tblAssetGroupLink.AssetID
Group By tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain
Having Count(tblAssetGroupLink.AssetID) = 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-06-2013 09:40 PM
I too would like a report as described above.
