Is it possable to reset the Trend Containers, the views, ratings, comments within the KB dashboard?
Best Answer
-
Joe_Burrows Cireson Devops Super IT Monkey ✭✭✭✭✭Hi SteveIts not possible with the KB dashboard, but it is possible in SQLReset all viewcounts to '0'
<div> UPDATE KnowledgeArticle </div><div> SET ViewCount = '0'</div><div> FROM [ServiceManagement].[dbo].[KnowledgeArticle]</div><div></div>
Delete all KB CommentsTruncate Table [ServiceManagement].[dbo].[KnowledgeArticle$Comment]<br>
Delete all KB RatingsTruncate Table [ServiceManagement].[dbo].[KnowledgeArticle$Rating]
Hope that helps
Regards
Joe6
Answers
Hope that helps
Regards
Joe