Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
2  
You don't have to drop the view, but you do have to alter the view with the schemabinding removed. – JeffO Nov 3 '09 at 3:28

4 Answers

up vote 6 down vote accepted

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

share|improve this answer
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. – SqlRyan Nov 2 '09 at 14:07
laziness, too much discipline (eg qualified columns etc) – gbn Nov 2 '09 at 14:11
Is there a way to make this the default option, or is it always something that needs to be done consciously? – SqlRyan Nov 2 '09 at 14:19
unfortunately, no... – gbn Nov 2 '09 at 14:55
1  
I had that happen about a month ago - I changed an underlying table and the view was returned completely whacked out results. It turned out the view used SELECT * FROM and I had to go refresh the view before it realized the underlying schema had changed :) – SqlRyan Dec 19 '12 at 21:12
show 5 more comments

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

share|improve this answer
2  
This is a big problem in my view especially if you want to modify the database structure without the original DDL statements handy. In these cases you have to attempt to generate complete DDL statements for the Views/Functions with SCHEMABINDING, drop them and then recreate them. Quite a big task to undergo just to change the size of a column. – jpierson Aug 19 '10 at 15:48
3  
You don't need to drop the view per se, just ALTER it so that it is not schema-bound, and ALTER it back after. – Paul Nov 28 '11 at 12:02

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.

share|improve this answer
1  
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. – SqlRyan Nov 3 '09 at 16:30
Unfortunately simply removing SCHEMABINDING via an ALTER statement won't work for indexed Views so in these cases I believe the only solution is still to drop and recreate the view. – jpierson Aug 19 '10 at 15:51
I just tested doing an ALTER VIEW on my indexed view to see what would happen. I was expecting to see some type of error (typical of SQL Server in a good way) but instead it just deleted my indexes. So beware of using ALTER on a view just to change whether it is schema bound or not without knowing whether it has indexes first. – jpierson Aug 19 '10 at 16:01
If you remove schemabinding (you have to use alter which completely rebuilds the view) you can't have an index anyway, so yes, if you add schemabinding back you'll have to recreate the index. – JeffO Aug 19 '10 at 16:40

One downside is that if you schemabind a view, it can only reference other schemabound views.

I know this because I tried to schemabind a view and was met with an error message telling me it could not be schemabound because one of the other views it references is not also schemabound.

The only consequence of this is that if you suddenly want to update a schemabound view to reference some new or existing view, you might have to schemabind that new or existing view as well. In that case, you won't be able to update the view, and you better hope your database developers know how to work with schemabound views.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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