Hi All,
Is there a way to safely delete entries from the icUrlTracker table. We have 25 million records in this table and I'm not sure how to distinguish records that have just been logged versus redirects that have been set up by the marketing team.
Many of those may be 404 entries (I believe they are stored in the same table). Pretty sure there's a column named something like "Is404". Do a query for anything with that column set to true (or 1, which I believe is how SQL represents true). If those 404 entries are the majority of the records, deleting them may help.
Delete entries from icUrlTracker table?
Hi All, Is there a way to safely delete entries from the icUrlTracker table. We have 25 million records in this table and I'm not sure how to distinguish records that have just been logged versus redirects that have been set up by the marketing team.
Thanks! Rachel
Many of those may be 404 entries (I believe they are stored in the same table). Pretty sure there's a column named something like "Is404". Do a query for anything with that column set to true (or 1, which I believe is how SQL represents true). If those 404 entries are the majority of the records, deleting them may help.
By the way, you can add these to your web.config under
appSettings
to ensure new entries are not automatically added going forward:Thanks, Nicholas!
is working on a reply...