List Manager Attribute Count Error

Hello, 

I'm having problems identifying why a particular attribute is generating a 0 count in List Manager, when it is defiantly on some records. There have been no changes to the attribute set up and all the control groups seem to be in order. 

Any thoughts? We've also recently upgraded to v12.5.1.

Thanks

Kelly

Parents
  • Nothing has changed in 12.5.1 (at least as far as I know). So, I would think it is something else in the list criteria.  Have you tried to pull a list with other attributes? Maybe, the replace individuals, add associations, etc. is messing it up.  I would run a one off in SSMS and see if you get a result. 

    Travis

    Example (can be easily adjusted for dealing HH):

    select distinct  z.customer_no ,a.description , b.id , z.keyword_no
    from
    T_KEYWORD a
    join T_KWCODED_VALUES b on a.keyword_no= b.keyword_no and b.id =  #### -- KWCODED_VALUE ID goes here
    left join TX_CUST_KEYWORD z on a.keyword_no = z.keyword_no and z.keyword_no =#### --keyword id goes here
    where  z.key_value = b.key_value

  • Hi Travis, 

    I used a query similar to the one you've suggested and got results. We're not using any of the HH things in the list and the attribute is on the Individual records anyway. 

    Hmm, it's a puzzler. 

Reply Children