Thanks, R.Vasanth MCTS(SQL Server & BI) http://bigdatatech.blogspot.com
Thanks Pavan Kumar Mark Answer if this fits the need
declare @b varbinary(max) set @b = 0x5468697320697320612074657374 select cast(@b as varchar(max))
DECLARE @bin VARBINARY(MAX) SET @bin = 0x5BAA61E4C9B93F3F0682250B6CF8331B7EE68FD8 SELECT CONVERT(VARCHAR(MAX), @bin, 2)
Login to post response