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 9146245
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T10:42:16+00:00 2026-06-17T10:42:16+00:00

Based on this post how to create temp table based on column number? I

  • 0

Based on this post how to create temp table based on column number? I am able create temp table with name #VarTemp. But How can I pump the data from exec stored procedure? it is throwing error

Invalid object name ‘#VarTemp’

This is my code:

DECLARE @ColCount int = 20
DECLARE @Ct int = 1
DECLARE @SQL nvarchar(max) = ''

SET @SQL = 'CREATE TABLE #VarTemp('

WHILE @Ct < @ColCount+1
BEGIN
    SET @SQL += 'Col' + CAST(@Ct as nvarchar(8)) + ' nvarchar(256),'
    SET @Ct = @Ct + 1
END
SET @SQL = LEFT(@SQL, (LEN(@SQL) - 1))
SET @SQL += ')'

Exec (@SQL)
INSERT into #VarTemp EXEC sp_FindStringInTable 'Nareshbhai%', 'dbo', 'aspnet_Membership'
 --- Get error Invalid object name '#VarTemp'.
  • 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-06-17T10:42:17+00:00Added an answer on June 17, 2026 at 10:42 am

    Your temp table is scoped to the EXEC command… it will be automatically dropped as soon as that statement completes.

    If you dynamically build the temp table, you’ll have to insert into the temp table in the same dynamic sql statement… and you’ll also have to read from it in the same dynamic sql statement as well:

    SET @SQL = 'CREATE TABLE #VarTemp('
    
    WHILE @Ct < @ColCount+1
    BEGIN
        SET @SQL += 'Col' + CAST(@Ct as nvarchar(8)) + ' nvarchar(256),'
        SET @Ct = @Ct + 1
    END
    SET @SQL = LEFT(@SQL, (LEN(@SQL) - 1))
    SET @SQL += ')
    
    INSERT into #VarTemp EXEC sp_FindStringInTable ''Nareshbhai%'', ''dbo'', ''aspnet_Membership''
    
    SELECT * FROM #VarTemp
    '
    
    Exec (@SQL)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I create a popup based on this post but i want to create it
I looked at previous post based on this but they do not relate. I
I'm trying to create a generic LINQ-TO-SQL repository based on this post which basically
Based on this post: How do you create a dropdownlist from an enum in
Again, I was creating buttons dynamically based on this post and now I need
Based on this SO post , and this example , I expect that, when
I've been reading this post Creating a login form in CodeIgniter based on Ion
This blog post of December 2008 says that rubygems is broken on Debian-based systems.
Based on this article I was able to get the FullName to work rather
I've used the example from this post and it works great to create a

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.