I am building an SSRS report in which I need to read parts of a MS Word Document body that contains some error logs. The document body is stored in the AnnotationBase in SQL Server. Per Scott Durow (MVP),
"The DocumentBody is a base64 encoded string, so you'll need to convert back to binary and save to a file."
https://community.dynamics.com/crm/f/117/t/185391
I am aware there is a converter and have also tried the following using SQL:
However the solution in the above link did not work.
I am aware this can easily done using C#. However, this is the only snag I have ran into building the report and would like to keep it all SQL.
Is this possible without me having to right a .NET component? If not, can this be done using FetchXML?