cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
ERoss
Engaged Sweeper II
Hi all,

If I am in the report builder - is the "IP Location Overview" field data available for reporting?

Thanks!
1 ACCEPTED SOLUTION
mdouglas
Engaged Sweeper III
Try something like this...

Select Top 1000000
tblComputers.Computername,
tblComputers.ComputerUnique,
web40AllIPLocations.IPLocation
From tblComputers
Inner Join web40AllIPLocations
On tblComputers.Computername = web40AllIPLocations.Computername

View solution in original post

4 REPLIES 4
ERoss
Engaged Sweeper II
🙂

Thumbs up - many - many thanks 🙂
mdouglas
Engaged Sweeper III
Try something like this...

Select Top 1000000
tblComputers.Computername,
tblComputers.ComputerUnique,
web40AllIPLocations.IPLocation
From tblComputers
Inner Join web40AllIPLocations
On tblComputers.Computername = web40AllIPLocations.Computername
ERoss
Engaged Sweeper II
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!)
mdouglas
Engaged Sweeper III
Yes. It's in a view called "web40AllIPLocations"
SELECT Computername, IPLocation FROM web40AllIPLocations