I want to save a varbinary (or binary) hexdecimal representation
in STRING. Hwo can do it :

Example :


declare @s varchar(30)
select @s=(CONVERT(varbinary,0xDAEDE420D4E3D3202020202020 202020 ))
select @s +'-test'

dont works.

I would like to have in @s the result :
0xDAEDE420D4E3D3202020202020202020-test

Please help me

Regards