I want to display one table format report using ssrs. In my data set one column data type is var-binary. How to convert this var-binary datatype to string using expressions?
Asked
Active
Viewed 1,237 times
0
-
Did you try any of the conversion functions in SSRS? Example, Cstr()? – SS_DBA Feb 24 '17 at 14:40
1 Answers
1
SELECT CONVERT(VARCHAR(1000), varbinary_value, 2);
-
Thank you for your Response snowlock.But how can i use this conversion in expressions(fx) to display this field in ssrs report. – Sridhar Feb 24 '17 at 13:56
-
1
-
Thank you Snowlockk but i have restriction to convert this in sqlserver side.I have to do this conversion in reporting side. – Sridhar Mar 13 '17 at 14:20