show/hide this revision's text 2 added 221 characters in body

can you try and use Cast and the fn_varbintohexstr?

SELECT master.dbo.fn_varbintohexstr(CAST(SomeStringColumn ) AS varbinary)) FROM SomeTable

I'm not sure if you have that function in your database system, it is in MS-SQL.

I just tried in in my SQL server MMC on one of my tables:

SELECT     master.dbo.fn_varbintohexstr(CAST(Addr1 AS VARBINARY)) AS Expr1
FROM         Customer

This worked as expected. possibly what I know as master.dbo.fn_varbintohexstr on MS-SQL, might be similar to informix hex() function, so possibly try:

SELECT     hex(CAST(Addr1 AS VARBINARY)) AS Expr1
FROM         Customer
show/hide this revision's text 1

can you try and use Cast and the fn_varbintohexstr?

SELECT master.dbo.fn_varbintohexstr(CAST(SomeStringColumn) AS varbinary)) FROM SomeTable

I'm not sure if you have that function in your database system, it is in MS-SQL.