Expand my Community achievements bar.

We are excited to introduce our latest innovation to enhance the Adobe Campaign user experience — the Adobe Campaign v8 Web User Interface!
SOLVED

Count of records in delivery logs using some foreign keys

Avatar

Level 1

How do we get the count of records in Delivery Logs schema using the primary keys of Recipients schema (for more than 20k records)?

Primary keys of recipients schema will have at least one record existing in Delivery Logs schema.

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

Hi,

1. Take the Query Activity In the Workflow.

2. Select Recipients as Targeting Dimension and Recipient Delivery Logs as Filtering Dimension as shown below :

1447606_pastedImage_0.png

3. Not Add the query given below. (Primary Key Of Recipients = Required Primary Key). And this will fetch all the records of Delivery Logs from the Recipient ID of Recipient Table.

Note # Select Primary Key Column Of Recipients Table

1447628_pastedImage_1.png

OR

If you want to fetch only the counts through database, then use the below query to fetch the counts :

SELECT COUNT(*) FROM NMSBROADLOGRCP WHERE IRECIPIENTID='123'

View solution in original post

2 Replies

Avatar

Correct answer by
Employee Advisor

Hi,

1. Take the Query Activity In the Workflow.

2. Select Recipients as Targeting Dimension and Recipient Delivery Logs as Filtering Dimension as shown below :

1447606_pastedImage_0.png

3. Not Add the query given below. (Primary Key Of Recipients = Required Primary Key). And this will fetch all the records of Delivery Logs from the Recipient ID of Recipient Table.

Note # Select Primary Key Column Of Recipients Table

1447628_pastedImage_1.png

OR

If you want to fetch only the counts through database, then use the below query to fetch the counts :

SELECT COUNT(*) FROM NMSBROADLOGRCP WHERE IRECIPIENTID='123'

Avatar

Level 4

How to achieve the same in Campaign standard because I was not able to get Recipient Auto Primary key in filter window - Expression.