↧
INSERT/UPDATE failed because the following SET options have incorrect...
In this article we will discuss on when we get the errors like below in Sql Server and how to resolve them. Msg 1934, Level 16, State 1, Procedure AddEmployee, Line 5 INSERT failed because the...
View ArticleSET Options with their setting values required while working with filtered index
While dealing with filtered index following Six SET option’s value should be set to ON SET ANSI_NULLS ON SET ANSI_PADDING ON SET ANSI_WARNINGS ON SET ARITHABORT ON SET CONCAT_NULL_YIELDS_NULL ON SET...
View ArticleA-Z of Filtered Indexes with examples in Sql Server
Filtered Index (i.e. Index with where clause) is one of the new feature introduced in Sql Server 2008. It is a non-clustered index, which can be used to index only subset of the records of a table. As...
View Article