Was a solution for this ever determined? I'm looking for a report that pulls back duplicated tasks names in a task group.
So far I have came up with
select name from dtree where LOWER(name) in (select LOWER(name) from dtree connect by parentid = prior dataid start with dataid=%1group by name having count(name) > 1 ) and subtype=205 group by name
but this isn't pulling back anything even though there are multiple tasks created with the same name but have different case.
Thanks in advance for your help!
Here is what I have...
select
lower(name), count( * ) from dtree where ownerid = XXXXXX having count(lower(name)) > 1 group by lower( name )