joebickley
Programmer
Hi
I have a simple proc that deletes a row from a table.
CREATE PROCEDURE [dbo].[SPdeleteRework]
@reworkID int
AS
delete from tblreworkscompleted where reworkID = @reworkID
GO
But i get the following error:
DELETE failed because the following SET options have incorrect settings: 'ANSI_NULLS., QUOTED_IDENTIFIER'.[/red]
I have tried adding and removing them using SP_dboption but to no avail and im not really sure wha they should be set too. Any ideas anyone?
Thanks
Joe
I have a simple proc that deletes a row from a table.
CREATE PROCEDURE [dbo].[SPdeleteRework]
@reworkID int
AS
delete from tblreworkscompleted where reworkID = @reworkID
GO
But i get the following error:
DELETE failed because the following SET options have incorrect settings: 'ANSI_NULLS., QUOTED_IDENTIFIER'.[/red]
I have tried adding and removing them using SP_dboption but to no avail and im not really sure wha they should be set too. Any ideas anyone?
Thanks
Joe