cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
tallapoosa
Engaged Sweeper
how do you build a report to report the dell service tags found?

3 REPLIES 3
Hemoco
Lansweeper Alumni
Create a new report with the report builder, then copy/paste this in the sql field.
tallapoosa
Engaged Sweeper
how do I turn that into a report.. sorry not very good at sql.. i ran it as a script and it completed successfully..
Hemoco
Lansweeper Alumni
Your report could be based on this one :

SELECT     dbo.tblComputers.Computername, dbo.tblComputerSystemProduct.IdentifyingNumber
FROM dbo.tblComputers INNER JOIN
dbo.tblComputerSystemProduct ON dbo.tblComputers.Computername = dbo.tblComputerSystemProduct.Computername