skip to Main Content

A long shot question, I know. I’m in a new job and I’ve never worked with EpiServer before, let alone Mogul SEO Manager. The export url data feature in the EpiServer dashboard crashes as there’s too much data to export, so I’m trying to go to the source but I can’t find it.

2

Answers


  1. Chosen as BEST ANSWER

    I was trying to find the full list of redirects. They are stored in tblBigTable in the episerver db. I used this query to get them:

    SELECT 
        pkId
        , DateTime01
        , String04          AS RedirectUrl
        , Indexed_String02  AS RequestUrl
    FROM [dbo].[tblBigTable]
    WHERE StoreName = 'SeoManagerUrlDatas'
        AND String04 IS NOT NULL
    ORDER BY pkid DESC
    

  2. I think it’s still storing its data in the DDS (Dynamic Data Store).

    In other words, it’s stored in a big table in the database.

    Here is someone with a problem similar to yours

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search