Converting a String to HEX in SQL - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T09:37:14Z http://stackoverflow.com/feeds/question/219245 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/219245/converting-a-string-to-hex-in-sql 1 Converting a String to HEX in SQL Shadow_x99 2008-10-20T17:33:53Z 2009-10-28T14:53:28Z <p>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 </p> <p>Here is the select I am using now:</p> <pre><code>SELECT SomeStringColumn from SomeTable </code></pre> <p>Here is the select I would like to use: SELECT hex( SomeStringColumn ) from SomeTable</p> <p>Unfortunately nothing is that simple... Informix gives me that message: <em>Character to numeric conversion error</em></p> <p>Any idea?</p> http://stackoverflow.com/questions/219245/converting-a-string-to-hex-in-sql/219310#219310 3 Answer by stephenbayer for Converting a String to HEX in SQL stephenbayer 2008-10-20T17:55:37Z 2008-10-20T18:02:52Z <p>can you try and use Cast and the fn_varbintohexstr?</p> <p>SELECT master.dbo.fn_varbintohexstr(CAST(SomeStringColumn AS varbinary)) FROM SomeTable</p> <p>I'm not sure if you have that function in your database system, it is in MS-SQL.</p> <p>I just tried in in my SQL server MMC on one of my tables:</p> <pre><code>SELECT master.dbo.fn_varbintohexstr(CAST(Addr1 AS VARBINARY)) AS Expr1 FROM Customer </code></pre> <p>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:</p> <pre><code>SELECT hex(CAST(Addr1 AS VARBINARY)) AS Expr1 FROM Customer </code></pre> http://stackoverflow.com/questions/219245/converting-a-string-to-hex-in-sql/219321#219321 1 Answer by Josh for Converting a String to HEX in SQL Josh 2008-10-20T17:59:49Z 2008-10-20T17:59:49Z <p>If it is possible for you to do this in the database client in code it might be easier.</p> <p>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.</p> <p>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).</p> <pre><code>select hex(cast SomeStringColumn as int)) from SomeTable </code></pre> http://stackoverflow.com/questions/219245/converting-a-string-to-hex-in-sql/1637783#1637783 0 Answer by woodhenge for Converting a String to HEX in SQL woodhenge 2009-10-28T14:53:28Z 2009-10-28T14:53:28Z <p>The following works in Sql 2005.</p> <pre><code>select convert(varbinary, SomeStringColumn) from SomeTable </code></pre>