cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Ismail
Engaged Sweeper II
Hello,

I have a few reports that are not working due to the upgrade.


This was a report that displayed computers that had Custom department field empty

Select Top 100 Percent dbo.tblComputers.Computername, dbo.tblComputers.LastknownIP, dbo.tblComputers.Lastseen As [Last Seen], dbo.tblComputers.Firstseen As [First Seen], dbo.tblCompCustom.Department From dbo.tblComputers Inner Join dbo.web30repallcompstates On (dbo.tblComputers.Computername = dbo.web30repallcompstates.Computername) Left Outer Join dbo.tblCompCustom On (dbo.web30repallcompstates.Computername = dbo.tblCompCustom.Computername) Where dbo.tblCompCustom.Department Is Null Or dbo.tblCompCustom.Department = '' Order By dbo.tblComputers.Computername




Please Advise
5 REPLIES 5
Hemoco
Lansweeper Alumni
Select Top 1000000 dbo.tblComputers.Computername, dbo.tblComputers.LastknownIP,
dbo.tblComputers.Lastseen As [Last Seen], dbo.tblComputers.Firstseen
As [First Seen], dbo.tblCompCustom.Department, dbo.tblComputers.ComputerUnique
From dbo.tblComputers Left Join
dbo.tblCompCustom On dbo.tblCompCustom.Computername =
dbo.tblComputers.Computername
Where (dbo.tblCompCustom.Department Is Null) Or
(dbo.tblCompCustom.Department = '')
Order By dbo.tblComputers.Computername
Ismail
Engaged Sweeper II
Okay then how can I get a report that shows "Department" field in "Custom fields"
as empty ?
Ismail
Engaged Sweeper II
Report has an invalid syntax:
Invalid object name 'dbo.web30repallcompstates'.
Hemoco
Lansweeper Alumni
Ismail wrote:
Report has an invalid syntax:
Invalid object name 'dbo.web30repallcompstates'.

dbo.web30repallcompstates doesn't exist anymore
Hemoco
Lansweeper Alumni
What is the exact error?