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

i want to create a report witch includes the chassis type of the computer. So far i have only found that the chassis types are defines in dbo.TsysChassisTypes. but where can i find the the link between that table and the computers?

Regards
Kevin
2 REPLIES 2
sbekeme
Engaged Sweeper
tblsystemenclosure nice.

thx for the help
Hemoco
Lansweeper Alumni
Example:

Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, TsysChassisTypes.ChassisName
From tblComputers Inner Join
tblSystemEnclosure On tblComputers.Computername =
tblSystemEnclosure.Computername Inner Join
TsysChassisTypes On TsysChassisTypes.Chassistype =
tblSystemEnclosure.ChassisTypes