I have a view that created with 'WITH SCHEMABINDING' and it has one unique clustered index, three different non-clustered indexes. The problem is that before this view created, update or delete operation (affecting more than 1000 rows) takes less than 2 seconds however after I created the view, delete or update operation takes about 930 seconds.
I searched about that and when I altered view without using 'WITH SCHEMABINDING' parameter and it fixed problem, delete or update operation cost about 1 or 2 seconds. Hovewer I need to use 'WITH SCHEMABINDING' in order to create indexes.
I don't want to alter the view before every delete or update operations. Is there a way that I can disable this view or what is the practical solution for this issue?