
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-21-2012 11:14 PM
Hi all,
If I am in the report builder - is the "IP Location Overview" field data available for reporting?
Thanks!
If I am in the report builder - is the "IP Location Overview" field data available for reporting?
Thanks!
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
‎08-22-2012 12:45 AM
Try something like this...
Select Top 1000000
tblComputers.Computername,
tblComputers.ComputerUnique,
web40AllIPLocations.IPLocation
From tblComputers
Inner Join web40AllIPLocations
On tblComputers.Computername = web40AllIPLocations.Computername
4 REPLIES 4

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-22-2012 12:59 AM
🙂
Thumbs up - many - many thanks 🙂
Thumbs up - many - many thanks 🙂

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-22-2012 12:45 AM
Try something like this...
Select Top 1000000
tblComputers.Computername,
tblComputers.ComputerUnique,
web40AllIPLocations.IPLocation
From tblComputers
Inner Join web40AllIPLocations
On tblComputers.Computername = web40AllIPLocations.Computername

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-22-2012 12:04 AM
Many thanks for quick response,
Perhaps my error - but the output "default.aspx?item=cust&det=web40repComputerByCity&title=Computer%3a+By+City"
Is only showing the IP Location - not computer name?
(I can try my rusty SQL skills at sorting later!)
Perhaps my error - but the output "default.aspx?item=cust&det=web40repComputerByCity&title=Computer%3a+By+City"
Is only showing the IP Location - not computer name?
(I can try my rusty SQL skills at sorting later!)

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-21-2012 11:54 PM
Yes. It's in a view called "web40AllIPLocations"
SELECT Computername, IPLocation FROM web40AllIPLocations
