I\'m looking for a way to transform a genuine string into it\'s hexadecimal value in SQL. I\'m looking something that is Informix-friendly but I would obviously prefer somet
The following works in Sql 2005.
select convert(varbinary, SomeStringColumn) from SomeTable