vote up 0 vote down star
1

Why does SQL Server insist that the temp table already exists! one or the other will happen!! , so it will never be the case.

declare @checkvar  varchar(10)
declare @tbl TABLE( colx varchar(10) )
set @checkvar ='a'

INSERT  INTO @tbl (colx) VALUES('a')
INSERT  INTO @tbl (colx) VALUES('b')
INSERT  INTO @tbl (colx) VALUES('c')
INSERT  INTO @tbl (colx) VALUES('d')

IF @checkvar  is null  select colx INTO #temp1 FROM @tbl
ELSE select colx INTO #temp1 FROM @tbl WHERE colx =@checkvar

error is :There is already an object named '#temp1' in the database.

Is there an elegant way around this? if @checkvar is null, i want the whole table otherwise, give me just the values where @checkvar = something

EDIT: the column is a varchar, not an int.

flag

3 Answers

vote up 2 vote down check

Can't you just rewrite the statement?

SELECT colx INTO #temp1 FROM @tbl WHERE (@checkvar IS NULL) OR (colx = @checkVar)
link|flag
err.. sorry, @checkvar is a varchar, not an int. i wish it was! – Nick Kavadias Apr 3 at 6:50
Ok. I changed my suggestion – Rune Grimstad Apr 3 at 7:10
vote up 1 vote down
drop table #temp1

select colx into #temp1 
from @tbl
where (ISNULL(@checkvar,'0')='0' or [colx] = @checkvar )

If @checkvar exists, it will use this where statement, else it will return all the data. You can change the '0' into anything u want, as long as it will never be the initial value of @checkvar.

link|flag
sneaky, you trick the statement into a 0=0 – Nick Kavadias Apr 3 at 8:51
as long as it does the trick :) – Peter Apr 3 at 12:53
vote up 1 vote down

If this is a stored procedure, SELECT .. INTO will cause a recompile of the procedure.

From what I understand, its better to create the table in the top of the procedure, and later do normal INSERTs.

So, Id suggest:

CREATE TABLE #temp1 (colx ...)

DECLARE @checkvar  VARCHAR(10)
DECLARE @tbl TABLE( colx varchar(10) )
SET @checkvar ='a'

INSERT  INTO @tbl (colx) VALUES('a')
INSERT  INTO @tbl (colx) VALUES('b')
INSERT  INTO @tbl (colx) VALUES('c')
INSERT  INTO @tbl (colx) VALUES('d')

IF @checkvar IS NULL  
BEGIN
  INSERT INTO #temp1(colx)
  SELECT colx 
  FROM @tbl
END
ELSE 
BEGIN
  INSERT INTO #temp1(colx)
  SELECT colx 
   FROM @tbl WHERE colx =@checkvar
END

Also, this way you get rid of the OR mentioned by other solutions (OR's are evil ;)

/B

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.