Untitled
By: a guest | Apr 16th, 2010 | Syntax:
T-SQL | Size: 0.38 KB | Hits: 170 | Expires: Never
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: Matthew Raymer, Developer
-- Create date: April 16, 2010
-- Description: Select all records
-- =============================================
CREATE PROCEDURE sps_rssfeeds_getall
AS
BEGIN
SET NOCOUNT ON;
SELECT
RSSID,
URL,
Name
FROM
RSSFEEDS
END
GO