Sign in
SQL Server Engine Tips
Guidelines, Best Practices, TSQL and SQL Programming Tips & Tricks.
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
Announcements
Architecture
Best Practices
Catalog Views
Dynamic Management View
General
Oracle SQL Migration
Pages
Performance - Engine
Performance - SQL/TSQL
Performance - Tools
Performance Troubleshooting
Programming
SQL Server 2005
SQL Server 2008
Browse by Tags
MSDN Blogs
>
SQL Server Engine Tips
>
All Tags
>
sql server 2008
Tagged Content List
Blog Post:
Converting from hex string to varbinary and vice versa
SQL Server Engine Team
Converting hexadecimal values to varbinary and vice versa is now easier using the XQuery functionality available from SQL Server 2005. The code samples below show how to perform the conversion(s): -- Convert hexstring value in a variable to varbinary: declare @hexstring varchar(max); set @hexstring ...
on
2 Jul 2008
Blog Post:
Converting from Base64 to varbinary and vice versa
SQL Server Engine Team
Converting Base64 values to varbinary and vice versa is now easier using the XQuery functionality available from SQL Server 2005 onwards. The code samples below show how to perform the conversion: -- Convert Base64 value in a variable to varbinary: declare @str varchar(20); set @str = '3qAAAA=='; select...
on
30 Jun 2008
Page 1 of 1 (2 items)