Hello,
I'm trying to decifer the data in the table that stores the data in the
binary format. All numbers are placed in varbinary fields. All I know is the
MS SQL 2000 database useing collation SQL_Latin1_Gene ral_CP1_CI_AS
(default).
For example the content of the field is:
(0xB4F500000000 0000) in unicode and defined as varbinary(8).
Are there any procedures that convert the unicode binary (or hexa) numbers
back to ascii or readable form?
I tried as following but it didn't work.
select cast(0xB4F50000 00000000 as decimal(8,2))
Any help is appreciated,
Adam
I'm trying to decifer the data in the table that stores the data in the
binary format. All numbers are placed in varbinary fields. All I know is the
MS SQL 2000 database useing collation SQL_Latin1_Gene ral_CP1_CI_AS
(default).
For example the content of the field is:
(0xB4F500000000 0000) in unicode and defined as varbinary(8).
Are there any procedures that convert the unicode binary (or hexa) numbers
back to ascii or readable form?
I tried as following but it didn't work.
select cast(0xB4F50000 00000000 as decimal(8,2))
Any help is appreciated,
Adam
Comment