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.

35 lines
348 B

  1. SET QUOTED_IDENTIFIER ON
  2. GO
  3. SET ANSI_NULLS ON
  4. GO
  5. CREATE PROCEDURE sp_SolvedIssuesThisWeek
  6. AS
  7. BEGIN
  8. -- Display crash buckets
  9. SELECT BucketId AS Bucket,
  10. SolveDate
  11. FROM SolvedIssues
  12. WHERE SolveDate >= DATEADD(day,-7,GETDATE())
  13. END
  14. GO
  15. SET QUOTED_IDENTIFIER OFF
  16. GO
  17. SET ANSI_NULLS ON
  18. GO