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.

22 lines
426 B

  1. SET QUOTED_IDENTIFIER ON
  2. GO
  3. SET ANSI_NULLS ON
  4. GO
  5. CREATE PROCEDURE sp_ListBucket
  6. @BucketId varchar (100)
  7. AS
  8. BEGIN
  9. SELECT BuildNo, Path, Source FROM CrashInsTances, BucketToInt, BucketToCrash
  10. WHERE CrashInstances.CrashId = BucketToCrash.CrashId AND
  11. BucketToInt.iBucket = BucketToCrash.iBucket AND
  12. BucketToInt.BucketId=@BucketId
  13. END
  14. GO
  15. SET QUOTED_IDENTIFIER OFF
  16. GO
  17. SET ANSI_NULLS ON
  18. GO