I have a column that was previously protected with an Always Encrypted certificate. It was determined that this column didn't need the encryption and we wanted to do some analysis on it so I went back and decrypted the column. However, when I try to select the column in a stored procedure I get the following message:
"Implicit conversion of varchar value to varchar cannot be performed because the collation of the value is unresolved due to a collation conflict between "Latin1_General_BIN2" and "SQL_Latin1_General_CP1_CI_AS" in CASE operator."
I've only gotten this message in the past when selecting from a column that is encrypted so I'm unsure why I'm still getting it for this now decrypted column. When I right click and script out the table schema it no longer shows any encryption or collate settings for that column. I've also run the database Always Encrypted wizard again and it shows that it's not protecting that column anymore either. So I'm confused why the database thinks the column is still encrypted.
Any suggestions would be greatly appreciated. Thank you.