Viewing post 1 (of 1 total)
my most used TSQL might be
if object_id('tempdb..#temp',N'U') is not null drop table #temp
go
create table #temp (...)
if object_id('some_proc',N'P') is not null drop proc some_proc
create proc ...
August 21, 2015 at 9:35 am
#1821740