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

  • SEARCH
  • Home
  • 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 6584529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T16:32:53+00:00 2026-05-25T16:32:53+00:00

I need to switch from using a #temp table to a @table variable so

  • 0

I need to switch from using a #temp table to a @table variable so that I can use it in a function.

My query uses insert into #temp (from multiple tables) like so:

SELECT 
  a.col1, 
  a.col2, 
  b.col1... 
INTO #temp
FROM ...

Is there an easy way to find out the data types of the columns in the #temp table so that I can create the @table variable with the same columns and data types as #temp?

  • 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. Editorial Team
    Editorial Team
    2026-05-25T16:32:54+00:00Added an answer on May 25, 2026 at 4:32 pm

    You need to make sure sp_help runs in the same database where the table is located (tempdb). You can do this by prefixing the call directly:

    EXEC tempdb.dbo.sp_help @objname = N'#temp';
    

    Or by prefixing a join against tempdb.sys.columns:

    SELECT [column] = c.name, 
           [type] = t.name, c.max_length, c.precision, c.scale, c.is_nullable 
        FROM tempdb.sys.columns AS c
        INNER JOIN tempdb.sys.types AS t
        ON c.system_type_id = t.system_type_id
        AND t.system_type_id = t.user_type_id
        WHERE [object_id] = OBJECT_ID(N'tempdb.dbo.#temp');
    

    This doesn’t handle nice things for you, like adjusting max_length for varchar differently from nvarchar, but it’s a good start.

    In SQL Server 2012 or better, you can use a new DMF to describe a resultset, which takes that issue away (and also assembles max_length/precision/scale for you). But it doesn’t support #temp tables, so just inject the query without the INTO:

    SELECT name, system_type_name, is_nullable
      FROM sys.dm_exec_describe_first_result_set(N'SELECT 
            a.col1, 
            a.col2, 
            b.col1... 
          --INTO #temp
          FROM ...;',NULL,1);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to declare the query variable outside the switch statement that way I
I am making my switch from coding in C++ to C#. I need to
for e.g from command prompt I need to launch the exe with some switch
I need a conditional compilation switch that knows if I am compiling for the
Need a function that takes a character as a parameter and returns true if
I've been trying to switch from using PerlSetEnv to using custom configuration directives .
I need to switch off the light from a command from the pc. Is
I am using PHP, for some reason and I want to switch sessions from
I need to switch among 3 different environments when developing my web app -
I need to switch every control of a particular type on a form to

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.