Community FAQ
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Cobra7
Champion Sweeper
Ok, have a report almost done. It finds all of the information I want but just need to filter a result.

SELECT TOP 100 PERCENT 
tblComputers.Computername,
tblComputers.Username,
tblRegistry.Value,
tblSoftware.softwareName,
tblRegistry.Regkey
FROM
tblComputers
INNER JOIN tblRegistry ON (tblComputers.Computername = tblRegistry.Computername)
INNER JOIN tblSoftware ON (tblRegistry.Computername = tblSoftware.ComputerName)
WHERE
tblSoftware.softwareName = 'Catalyst WMS Client' AND
tblRegistry.Regkey = 'HKEY_LOCAL_MACHINE\SOFTWARE\WMS\WMS 011310' AND
tblRegistry.Value IS NOT NULL


Pretty much I displau tblRegistry.RegKey, but I would like to cut off the earlier sections and display only WMS 011310. Is there a way to do that or will I need to add another registry key?
1 ACCEPTED SOLUTION
Hemoco
Lansweeper Alumni
Don't know the exact result you want, but you can try this:
Select Top 1000000 tblComputers.Computername, tblComputers.Username,
tblRegistry.Value, tblSoftware.softwareName, tblRegistry.Regkey
From tblComputers Inner Join
tblRegistry On (tblComputers.Computername = tblRegistry.Computername)
Inner Join
tblSoftware On tblSoftware.ComputerName = tblComputers.Computername
Where tblRegistry.Value Is Not Null And tblSoftware.softwareName =
'Catalyst WMS Client' And
tblRegistry.Regkey = 'HKEY_LOCAL_MACHINE\SOFTWARE\WMS\WMS 011310'

View solution in original post

1 REPLY 1
Hemoco
Lansweeper Alumni
Don't know the exact result you want, but you can try this:
Select Top 1000000 tblComputers.Computername, tblComputers.Username,
tblRegistry.Value, tblSoftware.softwareName, tblRegistry.Regkey
From tblComputers Inner Join
tblRegistry On (tblComputers.Computername = tblRegistry.Computername)
Inner Join
tblSoftware On tblSoftware.ComputerName = tblComputers.Computername
Where tblRegistry.Value Is Not Null And tblSoftware.softwareName =
'Catalyst WMS Client' And
tblRegistry.Regkey = 'HKEY_LOCAL_MACHINE\SOFTWARE\WMS\WMS 011310'

Reports & Analytics

Ask about reports you're interested in and share reports you've created. Subscribe to receive daily updates of reports shared in the Community.

New to Lansweeper?

Try Lansweeper For Free

Experience Lansweeper with your own data.
Sign up now for a 14-day free trial.

Try Now