
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-03-2011 05:28 PM
6 REPLIES 6

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-04-2011 01:00 PM
Here where i can mention my IP location..it is showing overall
Regards,
Srikanth08

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-04-2011 01:51 PM
Srikanth08 wrote:
Here where i can mention my IP location..it is showing overall
Could you clarify this question, perhaps with screenshots?
If you do not see any entries under IP location, that means no IP locations have been configured in the configuration console under Configuration\IP Range Locations.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-04-2011 06:56 AM
Thanks..but is it possible to group the software details by computer unique..because it is showing as individual record..
Regards,
Srikanth08

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-04-2011 11:06 AM
Srikanth08 wrote:
Thanks..but is it possible to group the software details by computer unique..because it is showing as individual record..
Could you clarify what you mean by "individual record"?
The first report posted sorted by IP location and then ComputerUnique. To sort by ComputerUnique, use the following report:
Select Top 1000000 tblComputers.Computername, tblComputers.ComputerUnique,
web40AllIPLocations.IPLocation, tblSoftware.softwareName As Software,
tblSoftware.softwareVersion As Version, tblSoftware.SoftwarePublisher As
Publisher, Count(tblSoftware.ComputerName) As Total
From tblSoftware Inner Join
tblComputers On tblSoftware.ComputerName = tblComputers.Computername
Inner Join
web40ActiveComputers On tblComputers.Computername =
web40ActiveComputers.Computername Left Join
web40AllIPLocations On web40AllIPLocations.Computername =
tblComputers.Computername
Group By tblComputers.Computername, tblComputers.ComputerUnique,
web40AllIPLocations.IPLocation, tblSoftware.softwareName,
tblSoftware.softwareVersion, tblSoftware.SoftwarePublisher
Order By tblComputers.ComputerUnique

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-03-2011 06:20 PM
Perfect thank you.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-03-2011 05:39 PM
Use the following report for a software overview that includes computer name and IP location:
Replace "Your Location" in the report below to filter out a specific IP location:
Select Top 1000000 tblComputers.Computername, tblComputers.ComputerUnique,
web40AllIPLocations.IPLocation, tblSoftware.softwareName As Software,
tblSoftware.softwareVersion As Version, tblSoftware.SoftwarePublisher As
Publisher, Count(tblSoftware.ComputerName) As Total
From tblSoftware Inner Join
tblComputers On tblSoftware.ComputerName = tblComputers.Computername
Inner Join
web40ActiveComputers On tblComputers.Computername =
web40ActiveComputers.Computername Left Join
web40AllIPLocations On web40AllIPLocations.Computername =
tblComputers.Computername
Group By tblComputers.Computername, tblComputers.ComputerUnique,
web40AllIPLocations.IPLocation, tblSoftware.softwareName,
tblSoftware.softwareVersion, tblSoftware.SoftwarePublisher
Order By web40AllIPLocations.IPLocation, tblComputers.ComputerUnique,
Count(tblSoftware.ComputerName) Desc
Replace "Your Location" in the report below to filter out a specific IP location:
Select Top 1000000 tblComputers.Computername, tblComputers.ComputerUnique,
web40AllIPLocations.IPLocation, tblSoftware.softwareName As Software,
tblSoftware.softwareVersion As Version, tblSoftware.SoftwarePublisher As
Publisher, Count(tblSoftware.ComputerName) As Total
From tblSoftware Inner Join
tblComputers On tblSoftware.ComputerName = tblComputers.Computername
Inner Join
web40ActiveComputers On tblComputers.Computername =
web40ActiveComputers.Computername Left Join
web40AllIPLocations On web40AllIPLocations.Computername =
tblComputers.Computername
Group By tblComputers.Computername, tblComputers.ComputerUnique,
web40AllIPLocations.IPLocation, tblSoftware.softwareName,
tblSoftware.softwareVersion, tblSoftware.SoftwarePublisher
Having web40AllIPLocations.IPLocation = 'Your Location'
Order By web40AllIPLocations.IPLocation, tblComputers.ComputerUnique,
Count(tblSoftware.ComputerName) Desc
