You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
433 B
24 lines
433 B
SET QUOTED_IDENTIFIER OFF
|
|
GO
|
|
SET ANSI_NULLS ON
|
|
GO
|
|
|
|
CREATE PROCEDURE sp_PrivateCleanupCrash
|
|
@CrashId bigint
|
|
AS
|
|
BEGIN
|
|
DELETE FROM BucketMap where Crashid = @CrashId
|
|
IF EXISTS (SELECT * FROM OVERCLOCKED WHERE CrashId = @CrashId)
|
|
BEGIN
|
|
DELETE FROM OverClocked WHERE CrashId = @CrashId
|
|
END
|
|
delete from Crashinstances where Crashid = @CrashId
|
|
END
|
|
|
|
|
|
GO
|
|
SET QUOTED_IDENTIFIER OFF
|
|
GO
|
|
SET ANSI_NULLS ON
|
|
GO
|
|
|