Viewing post 16 (of 17 total)
this should do it:
IF OBJECT_ID('tempdb..#test') IS NOT NULL
DROP TABLE #test
GO
CREATE TABLE #test (ID INT IDENTITY, colC INT ) ;
INSERT INTO #test...
September 30, 2011 at 7:25 am
#1388839