-- ============================================= -- Description: -- ============================================= SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO IF OBJECT_ID('[dbo].[sp_]') IS NOT NULL BEGIN DROP PROCEDURE [dbo].[sp_] END GO CREATE PROCEDURE [dbo].[sp_] AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from interfering with SELECT statements. SET NOCOUNT ON; END GO