U bent hier:
Berekende insight voor identiteitsoplossing: gecombineerde profielen uitschieters
Controleer het aantal overeenkomende aanspreekpunten voor elk gecombineerd profiel. Een hoog aantal overeenkomsten per aanspreekpunt, zoals profielen met honderden bronrecords die overeenkomen met hetzelfde e-mailadres, kan duiden op problemen met de gegevenskwaliteit of brongegevens. Gebruik deze berekende insight nadat u gecombineerde profielen hebt gemaakt met een regelset voor identiteitsoplossing.
- Gebruik deze berekende insight voor meerdere regelsets door een berekende insight te maken voor elk gecombineerd gegevensmodelobject (DMO).
- Als u wilt zoeken naar uitschietersprofielen in Profielverkenner, gebruikt u Unified_Individual_Id van de berekende insight.
- Overweeg herhalingswaarden uit uw brongegevens te verwijderen en gegevens opnieuw in Data 360 op te nemen.
- Filter herhalingen eruit met behulp van een formuleveld in Gegevensstromen.
SELECT
UnifiedIndividual__dlm.ssot__Id__c AS Unified_Individual_Id__c,
APPROX_COUNT_DISTINCT(IndividualIdentityLink__dlm.SourceRecordId__c) AS cnt_Lineage__c,
APPROX_COUNT_DISTINCT(ssot__Individual__dlm.ssot__FirstName__c) AS unq_FirstNames__c,
APPROX_COUNT_DISTINCT(UnifiedContactPointPhone__dlm.ssot__Id__c) AS unq_PhoneCPs__c,
APPROX_COUNT_DISTINCT(UnifiedContactPointEmail__dlm.ssot__Id__c) AS unq_EmailCPs__c,
APPROX_COUNT_DISTINCT(UnifiedContactPointAddress__dlm.ssot__Id__c) AS unq_AddressCPs__c,
APPROX_COUNT_DISTINCT(ssot__PartyIdentification__dlm.ssot__Id__c) AS unq_PartyIdentifiers__c
FROM UnifiedIndividual__dlm
LEFT JOIN IndividualIdentityLink__dlm ON IndividualIdentityLink__dlm.UnifiedRecordId__c = UnifiedIndividual__dlm.ssot__Id__c
LEFT JOIN UnifiedContactPointPhone__dlm ON UnifiedContactPointPhone__dlm.ssot__PartyId__c = UnifiedIndividual__dlm.ssot__Id__c
LEFT JOIN UnifiedContactPointEmail__dlm ON UnifiedContactPointEmail__dlm.ssot__PartyId__c = UnifiedIndividual__dlm.ssot__Id__c
LEFT JOIN UnifiedContactPointAddress__dlm ON UnifiedContactPointAddress__dlm.ssot__PartyId__c = UnifiedIndividual__dlm.ssot__Id__c
LEFT JOIN ssot__PartyIdentification__dlm ON ssot__PartyIdentification__dlm.ssot__PartyId__c = UnifiedIndividual__dlm.ssot__Id__c
LEFT JOIN ssot__Individual__dlm ON ssot__Individual__dlm.ssot__Id__c = IndividualIdentityLink__dlm.SourceRecordId__c
GROUP BY
Unified_Individual_Id__c
