vote up 1 vote down star

I have a database with hundreds of awkwardly named tables in it (CG001T, GH066L, etc), and I have views on every one with its "friendly" name (the view "CUSTOMERS" is "SELECT * FROM GG120T", for example). I want to add "WITH SCHEMABINDING" to my views so that I can have some of the advantages associated with it, like being able to index the view, since a handful of views have computed columns that are expensive to compute on the fly.

Are there downsides to SCHEMABINDING these views? I've found some articles that vaguely allude to the downsides, but never go into them in detail. I know that once a view is schemabound, you can't alter anything that would impact the view (for example, a column datatype or collation) without first dropping the view, so that's one, but aside from that? It seems that the ability to index the view itself would far outweigh the downside of planning your schema modifications more carefully.

flag

You don't have to drop the view, but you do have to alter the view with the schemabinding removed. – GuinnessFan Nov 3 at 3:28

3 Answers

vote up 1 vote down check

None at all. It's safer. we use it everywhere.

link|flag
If there are no downsides, and it's safer (which was my initial impression), then why wouldn't people use it? It seems like protecting your views from accidental breakage would be a priority, or like it should be the other way around - WITH is the default, and you have to declare your views WITHOUT if you want that behavior. – rwmnau Nov 2 at 14:07
laziness, too much discipline (eg qualified columns etc) – gbn Nov 2 at 14:11
Is there a way to make this the default option, or is it always something that needs to be done consciously? – rwmnau Nov 2 at 14:19
unfortunately, no... – gbn Nov 2 at 14:55
vote up 2 vote down

You wont be able to alter/drop the table, unless you drop the view first.

link|flag
vote up 1 vote down

If these tables are from a third-party app (they're notorious for trying hide their tables), you cause and upgrade to fail if it attempts to alter any of these tables.

You just have to alter the views without the schemabinding before the update/upgrade and then put them back. Like others have mentioned. Just takes some planning, discipline, etc.

link|flag
I suppose that's true, and much less invasive than dropping the view for the duration of your DDL. I recently had to change the collation on some columns, and just doing an ALTER/Change collation/ALTER would have been much easier than dropping the view and breaking the application while I was working. – rwmnau Nov 3 at 16:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.