
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-24-2009 11:29 PM
I am seeing duplicate PC's in my reports and in my console
Solved! Go to Solution.
Labels:
- Labels:
-
General Discussion
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-26-2009 10:15 PM
Could you please upgrade to the latest version (3.5.1 to see if it solves the problem)
25 REPLIES 25

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-26-2009 08:32 PM
ratiopharm wrote:
Yes duplicates exists of that PC and others , the scan times are from the same day
CA-W-3540 NAM NAM adm-admin 24/08/2009 SAP GUI 7.10 7.10 Compilation 3
CA-W-3540 NAM NAM adm-admin 24/08/2009 SAP GUI 7.10 7.10 Compilation 3
CA-W-3540 NAM NAM adm-admin 24/08/2009 SAP GUI 7.10 7.10 Compilation 3
CA-W-3540 NAM NAM adm-admin 24/08/2009 SAP GUI 7.10 7.10 Compilation 3
When you look at the table, are the scans from the exact same time?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-25-2009 11:17 PM
Could you check if you have multiple records for this computer in table "tbloperatingsystem"
Please also check the lastscanned time.
Please also check the lastscanned time.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-25-2009 10:02 PM
SELECT
dbo.tblComputers.Computername,
dbo.tblComputers.Domain,
dbo.tblComputers.Userdomain,
dbo.tblComputers.Username,
dbo.tblOperatingsystem.Description,
dbo.tblSoftware.Lastchanged,
dbo.tblSoftware.softwareName,
dbo.tblSoftware.softwareversion
FROM
dbo.tblComputers
INNER JOIN dbo.tblOperatingsystem ON (dbo.tblComputers.Computername = dbo.tblOperatingsystem.Computername)
INNER JOIN dbo.tblSoftware ON (dbo.tblComputers.Computername = dbo.tblSoftware.ComputerName)
WHERE
dbo.tblSoftware.softwareName LIKE '%sap gui%' AND
dbo.tblSoftware.softwareversion LIKE '%7.10 compilation 3%'
I believe the code was modified from a canned report
dbo.tblComputers.Computername,
dbo.tblComputers.Domain,
dbo.tblComputers.Userdomain,
dbo.tblComputers.Username,
dbo.tblOperatingsystem.Description,
dbo.tblSoftware.Lastchanged,
dbo.tblSoftware.softwareName,
dbo.tblSoftware.softwareversion
FROM
dbo.tblComputers
INNER JOIN dbo.tblOperatingsystem ON (dbo.tblComputers.Computername = dbo.tblOperatingsystem.Computername)
INNER JOIN dbo.tblSoftware ON (dbo.tblComputers.Computername = dbo.tblSoftware.ComputerName)
WHERE
dbo.tblSoftware.softwareName LIKE '%sap gui%' AND
dbo.tblSoftware.softwareversion LIKE '%7.10 compilation 3%'
I believe the code was modified from a canned report

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-25-2009 12:25 AM
Could you give the name (and maybe sql code) of one of these reports?
Were these reports build-in or did you create them?
Were these reports build-in or did you create them?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-25-2009 12:00 AM
No I do not see it in tblComputers, most reports I run have at least one duplicate whether they are custom or default reports

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-24-2009 11:49 PM
Could you please take a look in table "tblcomputers" if the computer is there only once?
On which screen/report do you see this?
On which screen/report do you see this?
