INSERT INTO a Table from a SQL Server Stored Procedure Result Set all except one column

Bobby P 221 Reputation points
2021-11-08T15:18:42.503+00:00

So I need to INSERT INTO a Table from a SQL Server Stored Procedure Result Set.

I totally get how to do that. However, for one of my data columns, [NDC], I want to use the variable I've defined rather than what is returned via the SQL Server Stored Procedure.

Do I have to store this to a Table Variable first before actually INSERTing the row to the raw table then?

FETCH NEXT FROM [C]
INTO @New Direction Church ,
@NDC9
;

WHILE @@Fetch _Status = 0
BEGIN
;
BEGIN TRANSACTION
;

	SELECT	@NDC  
	;  
	SELECT	@NDC9  
	;  

	--DELETE	FROM [dbo].[Monographs]  
	--WHERE	[NDC] = @NDC  
	--;  

	INSERT	INTO @MonographsTable  
		(  
		[NDC],  
		[GPI],  
		[DrugName],  
		[SectionCode],  
		[Txt]  
		)  
	EXEC [Eagle].[Patient_Education_Monographs_Load_By_NDC] @NDC_In = @NDC,  
															@NDC9_In = @NDC9  
	;  

	SELECT	*  
	FROM	@MonographsTable  

;

	UPDATE	@MonographsTable  
	SET		[NDC]	=	@NDC  

;

	SELECT	*  
	FROM	@MonographsTable  
	;  

	IF	@@RowCount = 0  
		ROLLBACK  
		;  
	ELSE  
		COMMIT  
		;  

	FETCH NEXT FROM [C]  
	INTO @NDC,  
		@NDC9  
		;  

END  
;  

CLOSE [C]
;
DEALLOCATE [C]
;
GO

Any help would be GREATLY appreciated. I tried a Sub-Select of that Variable to try and directly INSERT into the target table but that doesn't seem to work either.

Thanks in advance for your help.

Transact-SQL
Transact-SQL
A Microsoft extension to the ANSI SQL language that includes procedural programming, local variables, and various support functions.
4,556 questions
{count} votes

3 answers

Sort by: Most helpful
  1. Bobby P 221 Reputation points
    2021-11-08T19:12:48.103+00:00

    I did...but was wondering if I could just INSERT directly to the table using the Variable rather than moving it first to a Table Variable...Updating it...and then INSERTing from the variable table


  2. Erland Sommarskog 101.6K Reputation points MVP
    2021-11-08T23:15:43.817+00:00

    I will have to admit that I cannot think of a better solution. Well, you can look at my article How to Share Data between Stored Procedures for alternatives to INSERT-EXEC, but I suspect that you will find changing the procedure to be too heavy artillery.

    0 comments No comments

  3. EchoLiu-MSFT 14,571 Reputation points
    2021-11-09T06:55:16.257+00:00

    Hi @Bobby P ,

    147613-image.png

    In my experience, it seems that this is the most common and convenient method.

    Regards
    Echo

    0 comments No comments