
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2013 06:51 PM
Hi there,
I've make a very basic query to show :
- AssetName
- Username
- Location
- Manufactur
...
And I want to show the moodel of computer.
I don't understand why but I can't find the model in table tblcomputersystem
Here is my query :
Lansweeper version 5.0.0.41
Tks,
Kreg
I've make a very basic query to show :
- AssetName
- Username
- Location
- Manufactur
...
And I want to show the moodel of computer.
I don't understand why but I can't find the model in table tblcomputersystem
Here is my query :
Select Top 1000000 tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.AssetName,
tblAssets.AssetID,
tblAssets.Username,
tsysIPLocations.IPLocation,
tblADusers.Firstname,
tblADusers.Lastname,
tblOperatingsystem.Caption,
tblAssets.Lastseen,
tblBIOS.Manufacturer,
tblBIOS.SerialNumber
From tblAssets
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Left Outer Join tsysIPLocations On tblAssets.IPNumeric >=
tsysIPLocations.StartIP And tblAssets.IPNumeric <= tsysIPLocations.EndIP
Left Join tblADusers On tblADusers.Username = tblAssets.Username And
tblADusers.Userdomain = tblAssets.Userdomain
Inner Join tblOperatingsystem
On tblAssets.AssetID = tblOperatingsystem.AssetID
Inner Join tblBIOS On tblAssets.AssetID = tblBIOS.AssetID
Inner Join tblComputersystem On tblAssets.AssetID = tblComputersystem.AssetID
Order By tsysIPLocations.IPLocation
Lansweeper version 5.0.0.41
Tks,
Kreg
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2015 02:22 PM
FYI: there is now a detailed database dictionary that explains what each table and field stores.
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2015 02:22 PM
FYI: there is now a detailed database dictionary that explains what each table and field stores.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2013 06:08 PM
You don't need to use SQL Server Management Studio, as you can build reports using the Lansweeper report builder. If you are having trouble locating a particular field, please contact support@lansweeper.com

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2013 01:07 PM
Oh yes ! Just percfect... Thank you!
Is there a way to have a simple diagram of the database ?
Or simply the good way is to browse the DB with SQL Server Management Studio ?
Tks,
Kreg
Is there a way to have a simple diagram of the database ?
Or simply the good way is to browse the DB with SQL Server Management Studio ?
Tks,
Kreg

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2013 08:55 PM
Model information is stored in tblAssetCustom.Model, not in tblComputersystem.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2013 07:19 PM
Help please 🙂
