Community FAQ
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
ESIT
Engaged Sweeper
I need a report that lists only Dell Servers (no workstations) - asset tags would be a bonus. Can any of your report guru's help out with this task?

Thanks!
2 REPLIES 2
ESIT
Engaged Sweeper
Awesome, exactly what I was looking for!

Thanks much!
Hemoco
Lansweeper Alumni
Here you go:

SELECT     TOP 100 PERCENT dbo.tblComputers.Computername, dbo.tblComputers.Domain, dbo.tblComputersystem.Manufacturer, dbo.tblComputersystem.Model,
dbo.tblComputerSystemProduct.IdentifyingNumber
FROM dbo.tblComputers INNER JOIN
dbo.tblComputersystem ON dbo.tblComputers.Computername = dbo.tblComputersystem.Computername INNER JOIN
dbo.tblComputerSystemProduct ON dbo.tblComputers.Computername = dbo.tblComputerSystemProduct.Computername
WHERE (dbo.tblComputersystem.Manufacturer LIKE 'Dell%') AND (dbo.tblComputersystem.Domainrole <> '1')
ORDER BY dbo.tblComputers.Computername

Reports & Analytics

Ask about reports you're interested in and share reports you've created. Subscribe to receive daily updates of reports shared in the Community.

New to Lansweeper?

Try Lansweeper For Free

Experience Lansweeper with your own data.
Sign up now for a 14-day free trial.

Try Now