Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 47027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T16:03:29+00:00 2026-05-10T16:03:29+00:00

Why can’t you do this and is there are work around? You get this

  • 0

Why can’t you do this and is there are work around?

You get this error.

Msg 2714, Level 16, State 1, Line 13 There is already an object named ‘#temptable’ in the database.

declare @x int  set @x = 1  if (@x = 0) begin     select 1 as Value into #temptable end else begin    select 2 as Value into #temptable end  select * from #temptable  drop table #temptable 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T16:03:30+00:00Added an answer on May 10, 2026 at 4:03 pm

    This is a two-part question and while Kev Fairchild provides a good answer to the second question he totally ignores the first – why is the error produced?

    The answer lies in the way the preprocessor works. This

    SELECT field-list INTO #symbol ... 

    is resolved into a parse-tree that is directly equivalent to

    DECLARE #symbol_sessionid TABLE(field-list) INSERT INTO #symbol_sessionid SELECT field-list ... 

    and this puts #symbol into the local scope’s name table. The business with _sessionid is to provide each user session with a private namespace; if you specify two hashes (##symbol) this behaviour is suppressed. Munging and unmunging of the sessionid extension is (ovbiously) transparent.

    The upshot of all this is that multiple INTO #symbol clauses produce multiple declarations in the same scope, leading to Msg 2714.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 174k
  • Answers 174k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer require 'time' class Time #Opening the singleton class as Time.parse… May 12, 2026 at 2:53 pm
  • Editorial Team
    Editorial Team added an answer That is such a vague question as to be almost… May 12, 2026 at 2:53 pm
  • Editorial Team
    Editorial Team added an answer Well the UML spec allows for a use case to… May 12, 2026 at 2:53 pm

Related Questions

Why can't you do this and is there are work around? You get this
Why can I not see an option for copying database objects when I right
Why can't I pass the table name to a prepared PDO statement? $stmt =
Why can't I create a class in VB.NET that inherits System.IO.Directory ? According to
Why can't Delphi variants hold objects? More importantly, what's the reason behind this limitation?

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.