I've a database on SQL Server 2008 R2. In a table there's a column that should be with type ntext but it was designed as a text column. So the data was sent, saved as text then it was saved as question marks (unrecognized).
I've changed the type to ntext. Is there's a way to restore back this saved data? I thought about tracking the captured data that was sent to the stored procedure and maintain it manually, but I searched and found no result.
Any ideas?