I have a SQL Server 2008 R2 table with nvarchar(4000)
field.
Data that stores this table look like
'696D616765206D61726B65643A5472'
or
'303131' ("011")
.
I see that each char is encoding to hex.
How can I read those data from table? I don't want write decoding function, I mean that simpler way exists.
P.S. Sorry for my English.