which is a better way to implement DB in Adobe analytics? | Community
Skip to main content
New Participant
April 19, 2024
Solved

which is a better way to implement DB in Adobe analytics?

  • April 19, 2024
  • 1 reply
  • 666 views

Has anyone integrated Adobe Analytics with Demandbase?
Which is a better way to implement the DB through page load rule API call or through DB extension.

Please do share the pros and cons, if possible.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Vinay_Chauhan

I would suggest that you should use DB extension, helps to use local storage to fetch the data from Adobe and then it can be passed over to you defined variables. 

In case of API call (without extension), I think it uses session storage and you will have to write a manual code in custom code to fetch the DB data into your variables.

As per a recent discussion with DB technical team, the Extension helps to delay the pageload in order to wait for the DB results to get back. In API call, we don't have that option. So we get much better results using the DB extension.

Please do share your feedback once you have tried any of the above method.

1 reply

Vinay_Chauhan
Vinay_ChauhanAccepted solution
New Participant
April 19, 2024

I would suggest that you should use DB extension, helps to use local storage to fetch the data from Adobe and then it can be passed over to you defined variables. 

In case of API call (without extension), I think it uses session storage and you will have to write a manual code in custom code to fetch the DB data into your variables.

As per a recent discussion with DB technical team, the Extension helps to delay the pageload in order to wait for the DB results to get back. In API call, we don't have that option. So we get much better results using the DB extension.

Please do share your feedback once you have tried any of the above method.

SMA23Author
New Participant
April 19, 2024

Thanks, this really helps.