I'm writing a sql script to handle updating a database from v1.0 of an app to v1.1.
I'm modifying a table that a view was created against with schemabinding.
Is there a way (using SQL) to momentarily turn off schemabinding for the view, modify the table, then turn schemabinding back on?
Or am I going to have to drop the view, modify the table, then recreate the view?