
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-15-2011 01:58 PM
Olá!
I'm testing the Lansweeper product to use on my internal network. So far so good.
I'm looking at the report part and I'm trying to build a new report to find how old the computer is based on the Bios released date.
I want to use tblComputers.ComputerUnique, tblBIOS.ReleaseDate, tblAdusers.Company and tblADusers.name
To show something like
ComputerName BiosData UserofComputer UserCompany
Can anyone help me ? Thanks.
Miguel Ângelo Saragoça Soares
I'm testing the Lansweeper product to use on my internal network. So far so good.
I'm looking at the report part and I'm trying to build a new report to find how old the computer is based on the Bios released date.
I want to use tblComputers.ComputerUnique, tblBIOS.ReleaseDate, tblAdusers.Company and tblADusers.name
To show something like
ComputerName BiosData UserofComputer UserCompany
Can anyone help me ? Thanks.
Miguel Ângelo Saragoça Soares
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
‎02-15-2011 02:36 PM
try this:
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblBIOS.Caption, tblBIOS.ReleaseDate, tblADusers.Name,
tblADusers.Company
From tblComputers Inner Join
tblBIOS On tblComputers.Computername = tblBIOS.Computername Left Join
tblADusers On tblADusers.Username = tblComputers.Username And
tblADusers.Userdomain = tblComputers.Userdomain
4 REPLIES 4

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-05-2011 02:31 PM
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblBIOS.Caption, tblBIOS.ReleaseDate, tblADusers.Name,
tblADusers.Company, DateDiff(yy, tblBIOS.ReleaseDate, GetDate()) As Age
From tblComputers Inner Join
tblBIOS On tblComputers.Computername = tblBIOS.Computername Left Join
tblADusers On tblADusers.Username = tblComputers.Username And
tblADusers.Userdomain = tblComputers.Userdomain

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-01-2011 03:37 PM
I like this query, but my SQL skills are not so good and I have had trouble figuring out, although I am sure it should be simple, how to add a calculated date to this to get a column showing the age of the computer calculated from the time between the bios release date and today.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-15-2011 04:08 PM
It worked perfecly many thanks for the uber fast answer and working query.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-15-2011 02:36 PM
try this:
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblBIOS.Caption, tblBIOS.ReleaseDate, tblADusers.Name,
tblADusers.Company
From tblComputers Inner Join
tblBIOS On tblComputers.Computername = tblBIOS.Computername Left Join
tblADusers On tblADusers.Username = tblComputers.Username And
tblADusers.Userdomain = tblComputers.Userdomain
