the table is very simple...
Columns: APP NAME -- VERSION # -- MANUF -- INSTALL COUNT
A view might be best, just not sure how to create it so that we SUM
all the 'simular' items and use fuzzy logic to determine "like" APP
NAMEs
thx for the help!
Yeah can see what you mean but if you cut out the version number you
may be okay although I can see how this would be a bad thing too.
How about combining the name & version number and then doing a count
on that? If it doesn't work below you could create temp table with
that field and then select it from that; bit long winded but it would
work.... eventually lol
CREATE VIEW Vw_ListSoftware
AS
Select [App Name], [Version#], COUNT ( DISTINCT ( [AppName] + ' ' +
[Version#] ) ) AS Total
FROM TBL_DataDataTable
WHERE [Install Count] >= 1
Good luck!
Scho
Livin - 25 Aug 2008 19:53 GMT
> Yeah can see what you mean but if you cut out the version number you
> may be okay although I can see how this would be a bad thing too.
[quoted text clipped - 13 lines]
> Good luck!
> Scho
4 tables... EMEA, US, CANLA, APAC
each with columns... SUITE NAME -- VERSION -- PUBLISHER -- COUNT
Is a cross join good here?
Combining the Name & Version imigh work. I'd like to try both that and
first several characters (or 2 words) & Version so that the "suites"
that might be called something different get captured together. I'd
like to try both to see what turns out best.
any code thoughts?
thx