One of the advantages of our bridges is that they use ASI iBOs. Because of this, we do not have to make direct SQL calls to record and pull data from an iMIS database.
For the iBOs used in the Higher Logic Thrive Marketing Enterprise (Thrive Marketing Enterprise) bridge, the iBO creates these changelog entries -- and there isn't a way around that while still using the iBOs. This will create a log for each of your iMIS records.
If these entries are too cumbersome to manage, run scripts to remove them. To do so, set up a SQL Job with the SQL query. Below are two examples.
Delete every Thrive Marketing Enterprise log entry that is older than one day. You can change -1 to the number of days you want.
- Delete from Name_Log where LOG_TEXT like 'RealMagnet%' and DATE_TIME < DATEADD(d,-1,getdate())
Delete all Thrive Marketing Enterprise log entries.
- Delete from Name_Log where LOG_TEXT like 'RealMagnet%'