How is KnowledgeBase data stored in the DB
One of the things I'm getting from the DB is the view count of the Knowledge Articles and that easy.
The next one is the Analyst or EndUser Data, it is like hashed content. Is there a way to get this converted to text?
Or is the actual content somewhere else?
Thanks in advance
Best Answer
-
Leigh_Kilday Member Ninja IT Monkey ✭✭✭✭
Use this in your select statement:
CAST(EndUserContent as varchar(max)) as EndUserContent
Note that images will still be in base64 and the SSRS report builder engine does not support image tags.5
Answers
Use this in your select statement:
CAST(EndUserContent as varchar(max)) as EndUserContent