Vous êtes sur la page 1sur 1

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[test_GetSu ppliersAll]') and OBJECTPROPERTY(id, N'IsProcedure') = 1) drop procedure [dbo].[test_GetSuppliersAll] GO ------------------------------------------------------------ [dbo].

[test_GetSuppliersAll] --- Generated by CodeGenerator360.com --- Select All --- Date Created : 08 November 2012 ---------------------------------------------------------CREATE PROCEDURE [dbo].[test_GetSuppliersAll] AS BEGIN SELECT [SupplierID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax], [HomePage] FROM [dbo].[Suppliers] WITH (nolock) END GO if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[test_Suppl iersUpdate]') and OBJECTPROPERTY(id, N'IsProcedure') = 1) drop procedure [dbo].[test_SuppliersUpdate] GO

Vous aimerez peut-être aussi