Share Pastebin
Guest
Private paste!

Untitled

By: a guest | Apr 16th, 2010 | Syntax: T-SQL | Size: 0.38 KB | Hits: 170 | Expires: Never
Copy text to clipboard
  1. SET ANSI_NULLS ON
  2. GO
  3. SET QUOTED_IDENTIFIER ON
  4. GO
  5. -- =============================================
  6. -- Author:              Matthew Raymer, Developer
  7. -- Create date: April 16, 2010
  8. -- Description: Select all records
  9. -- =============================================
  10. CREATE PROCEDURE sps_rssfeeds_getall
  11. AS
  12. BEGIN
  13.  
  14. SET NOCOUNT ON;  
  15.  
  16. SELECT
  17. RSSID,
  18. URL,
  19. Name
  20. FROM
  21. RSSFEEDS
  22.      
  23. END
  24. GO