The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
48 views

T-SQL - Check if view is SCHEMABINDING

I tried to google it, but didn't found an answer... Is it possible to check if view is created with SCHEMABINDING?
0
votes
1answer
151 views

Schema bound and computed columns dependency loop

Well this isn't good. I have a schema-bound function called "GetFriendlyProductItem" which returns a human-readable name for a product from the ProductItems table. The ProductItems table in turn, ...
1
vote
1answer
1k views

Cannot create index on view because the view is not schema bound error 1939

The third part of this assignment I'm working on says, "Create and index the existing Northwind view called “dbo.Orders Qry” based on the columns OrderID and EmployeeID." It is expected that I will ...
1
vote
2answers
238 views

Schema binding for a UDF using tables from other db

I have a UDF in SQL 2005 that I would need to schemabind as it is used in a view that I need an index on. This UDF gets information from a table that is located in a different db (same server) then ...
21
votes
4answers
6k views

Downsides to “WITH SCHEMABINDING” in SQL Server?

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 ...