I got the following error trying to convert from a varchar to varbinary..
Implicit conversion from data type varchar to varbinary(max) is not allowed. Use the CONVERT function to run this query.
and this is the alter command that I tried.
alter table foo Alter column bar varBINARY(max)
So how do I use the convert function for something like this? I did a bit of searching via google and had no luck.
Thanks.