Reputation: 49
In AX 2009, I need to query and report from the SYSDATABASELOG table's DATA field (type IMAGE) in an SSRS report. However, it appears to be stored as raw data, and I need to be be able to read/interpret this field.
Thanks in advance.
Upvotes: 1
Views: 1049
Reputation: 2419
I had this issue before, also using SSRS reports.
What you should do is to convert the SSRS image source from Embedded to DB.
your initial data should look like this:
open the SSRS and create an Image.
In the Image properties you need to change the selected Image source to Database
:
Under use this field put the relevant field from your query.
and under MIME type select the image format:
That It!
Note:
During my small research I ran in to this MSDN requesting to avoid using IMAGE types because it will be removed in a future version of Microsoft SQL Server.
Be advise!
Upvotes: 1