Leaked source code of windows server 2003
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

  1. SET QUOTED_IDENTIFIER OFF
  2. GO
  3. SET ANSI_NULLS ON
  4. GO
  5. CREATE PROCEDURE sp_PrivateCleanupCrash
  6. @CrashId bigint
  7. AS
  8. BEGIN
  9. DELETE FROM BucketMap where Crashid = @CrashId
  10. IF EXISTS (SELECT * FROM OVERCLOCKED WHERE CrashId = @CrashId)
  11. BEGIN
  12. DELETE FROM OverClocked WHERE CrashId = @CrashId
  13. END
  14. delete from Crashinstances where Crashid = @CrashId
  15. END
  16. GO
  17. SET QUOTED_IDENTIFIER OFF
  18. GO
  19. SET ANSI_NULLS ON
  20. GO