Hi @Pekdon,
Here are some things you can try:
-
Try this:
-
Please check this forum link. Paul was having somewhat similar issue:
Rebuild Database Cache - The request timed out -
Also try deleting the local cache files, it’s stored under Temp/NuCache.
-
At last try truncating the cmsContentNu table.
Why TRUNCATE and not DELETE?
ADELETEstatement logs every single row removal in the transaction log, which can cause massive log file growth and take a long time on 34,000+ rows.TRUNCATEsimply deallocates the data pages, acting instantly and completely clearing any lingering locks.
Hope it helps!
