vote up 1 vote down star

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 something database-neutral

Here is the select I am using now:

SELECT SomeStringColumn from SomeTable

Here is the select I would like to use: SELECT hex( SomeStringColumn ) from SomeTable

Unfortunately nothing is that simple... Informix gives me that message: Character to numeric conversion error

Any idea?

flag

20% accept rate
The HEX function is to convert an INTEGER (or INT8 or BIGINT) to a hex string. What are you seeking as the output from HEX_STRING("xyz")? – Jonathan Leffler Oct 21 '08 at 15:35
Also, it is courteous to select an answer - or if nothing is answering your question, it is sensible to edit your question so it can be understood. You should be aiming to select a best answer - please. – Jonathan Leffler Oct 24 '08 at 23:33
You should reword your question. Obviously you don't want to interpret the string as a number ("12" -> 12). It seems you want to convert the underlying bytes to hex. ("abc" -> hex). Do you want ASCII codes, Unicode, something else? Be specific. – colithium Jun 28 at 3:09

3 Answers

vote up 0 vote down

The following works in Sql 2005.

select convert(varbinary, SomeStringColumn) from SomeTable
link|flag
vote up 1 vote down

If it is possible for you to do this in the database client in code it might be easier.

Otherwise the error probably means that the built in hex function can't work with your values as you expect. I would double check the input value is trimmed and in the format first, it might be that simple. Then I would consult the database documentation that describes the hex function and see what its expected input would be and compare that to some of your values and find out what the difference is and how to change your values to match that of the expected input.

A simple google search for "informix hex function" brought up the first result page with the sentence: "Must be a literal integer or some other expression that returns an integer". If your data type is a string, first convert the string to an integer. It looks like at first glance you do something with the cast function (I am not sure about this).

select hex(cast SomeStringColumn as int)) from SomeTable
link|flag
Unfortunately, you're solution would only work if the string is indeed a number which is not my case... – Shadow_x99 Oct 20 '08 at 18:14
vote up 3 vote down

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
link|flag
I think you answered the question he meant to ask. +1 – colithium Jun 28 at 3:09
Even in MSSQL this function is not supported/documented. Use of the function is not recommended if you require compatibility with future versions of MS SQL server – Faiz Sep 1 at 12:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.