Server Error in '/' Application.
Could not find stored procedure 'FullText_IsSupported'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.Exception Details: System.Data.SqlClient.SqlException: Could not find stored procedure 'FullText_IsSupported'.
La soluzione è abbastanza semplice, è sufficente infatti verificare che le stored procedures siano presenti e in questo caso eseguire questi comandi direttamente nel database:
ALTER SCHEMA dbo TRANSFER USER.FullText_Enable
Prestare attenzione alla parte USER che sarà diversa caso per caso. Questo comando permette di riassegnare una specifica stored procedure all'identità DBO.
La stessa logica può essere utilizzata per tutte le stored procedures che non funzionano correttamente.
La stessa logica può essere utilizzata per tutte le stored procedures che non funzionano correttamente.