I am trying to migrate a database from SQL Server 2008 to SQL Azure. I have successfully migrated my tables and views by generating scripts from my SQL Server 2008 instance.
However, I am now trying to migrate my stored procedures. There is one specific procedure that is giving me an error. The error says:
Msg 7601, Level 16, State 2, Procedure MyStoredProcedure, Line 10
Cannot use a CONTAINS or FREETEXT predicate on table or indexed view 'MyTable' because it is not full-text indexed.
For the life of me, I can't figure out how to fix this in SQL Azure. Can somebody please tell me how to get this resolved?
Thank you!