I executed the following sp several times
ALTER PROCEDURE [dbo].[sp_GetItemsByCategoryOnPage]
AS
BEGIN
CREATE TABLE #TemporaryItems
(
ID int IDENTITY PRIMARY KEY,
...
[auto] [bit] NULL CONSTRAINT [DF_CostupdateItems_auto] DEFAULT ((1)),
...
)
...
END
Suddlenly I got a message:
The constraint [DF_CostupdateItems_auto] already exists. How can I remove it from DB?
Hi there,
You can use such a statement :
alter table YourTableNameWithThisConstraint drop constraint [DF_CostupdateItems_auto]
The constraints store in each Table's structures not in global.
__
May the God blessings be.
LotraSoft Ltd.
|||You will get the error message if multiple connections call the SP simultaneously. Even though the temporary table name is uniquefied automatically by SQL Server since you have a named constraint for the default you can't only execute the SP serially. So either remove the constraint name from the column definition so that SQL Server can automatically generate a unique name or don't call the SP concurrently.
No comments:
Post a Comment