Hello,
I have a text column with hexadecimal strings like "4E1B0A65FE3299FE", ie. of length 16.
I'm doing an ALTER COLUMN query to convert the column to varbinary, but Access is doing conversion by ASCII, which results in a varbinary field of size 32, I think this is because the text column is in Unicode.
SQL Server has something called "styles" which are used with CONVERT
where you can choose to convert by two characters at a time 2:1...
How do I do the same in an Access query? CONVERT/CAST are no supported.
It is an VBA script in Excel...
Thanks,
MK
I have a text column with hexadecimal strings like "4E1B0A65FE3299FE", ie. of length 16.
I'm doing an ALTER COLUMN query to convert the column to varbinary, but Access is doing conversion by ASCII, which results in a varbinary field of size 32, I think this is because the text column is in Unicode.
SQL Server has something called "styles" which are used with CONVERT
where you can choose to convert by two characters at a time 2:1...
How do I do the same in an Access query? CONVERT/CAST are no supported.
It is an VBA script in Excel...
Thanks,
MK