摘要:1. dns 2.固化视图建立索引会对原表的增删改操作造成影响,需设置 ARITHABORT 为 ON方法1ALTER DATABASE kelingtestnew set arithabort ON方法2exec sp_dboption 'kelingtestnew','ARITHABORT','true'查看 ARITHABORT 状态select is_arithabort_on ,* from sys.databases 固化视图sql参考create view [dbo].[SOIsPurchase] with schemabindin
阅读全文