Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
ARITHABORT error.
Message
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Titre:
ARITHABORT error.
Versions des environnements
SQL Server:
SQL Server 2000
Divers
Thread ID:
01271983
Message ID:
01271983
Vues:
65
In an effort to speed up a query I ran the “Index Tuning Wizard” and it recommended creating this view and index to improve the procedure by 98%.
CREATE VIEW [dbo].[Ims_view_Waiting_For_CkPoint3_to_Complete]

WITH SCHEMABINDING AS 

select  
orderfl.masterflid,  
ordprogfl.userid2o,  
ordprogfl.userid3o,  
orderfl.qtyord,
orderfl.orderflid,  
ordprogfl.ordprogflid
from [dbo].[orderfl],  [dbo].[ordprogfl]  
where ordprogfl.invflid = orderfl.invflid

go

CREATE UNIQUE CLUSTERED INDEX Sort1
on
Ims_view_Waiting_For_CkPoint3_to_Complete
(
masterflid	ASC,  
userid2o		ASC,  
userid3o		ASC,  
qtyord		ASC,
orderflid	ASC,  
ordprogflid	ASC
)

go
But by creating the above view & index I get this error every thing you try to add or update the tables involved. Can you help?
ODBC-ErrMsg: [Microsoft][ODBC SQL Server Driver][SQL Server]INSERT failed because the following SET options have incorrect settings: 'ARITHABORT'.tings: 'ARITHABORT'. '', l_type,;
Répondre
Fil
Voir

Click here to load this message in the networking platform