我尝试在sql Server 2012中创建一个具有10个连接(内部和左侧)的查询的索引视图,这个访问被访问了很多.
但是,当尝试创建视图时,我会收到错误:
Cannot schema bind view ‘vw_transaction’ because name ‘entity_event’
is invalid for schema binding.
我(尝试)使用以下方式创建视图:
CREATE VIEW vw_transaction WITH SCHEMABINDING AS Select ee.id as entity_event_id,....
有错误的原因吗?看起来它是一个保留字,因为错误提到了一个“名字”,而不是列. Entity_event是我的主表的名称.