Creating Temp Table with records by running Stored Procedure

  • Is there a way to create Temp Table Dynamically by running Stored Procedure .

    I can create a do this with select statement

    Select * into #co_new_table11 from co

    But would like to do something like

    select * into #co_new_table11 from ( Exec GetRecordSp 'Parm1' , Parm2' )

  • You'll need to create the temp table first, then run

    INSERT INTO ...

    EXEC <stored proc>

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply