How can I drop sql server agent jobs, if (and only if) it exists?
This is a well functioning script for stored procedures. How can I do the same to sql server agent jobs?
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[storedproc]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[storedproc]
GO
CREATE PROCEDURE [dbo].[storedproc] ...