INSERT EXEC 语句不能嵌套

INSERT EXEC Statement cannot be nested(INSERT EXEC 语句不能嵌套)
本文介绍了INSERT EXEC 语句不能嵌套的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有三个程序 MainProcedure,Procedure1,Procedure2

I have three Procedures MainProcedure,Procedure1,Procedure2

1) 在程序 1 中,我只有一个选择语句,

1) In Procedure1 I just have a select statement ,

2) 在程序 2 中调用程序 1 并将输出插入 #table

2) In Procedure2 am calling the Procedure1 and inserting the Output to a #table

3) 在主程序中,我正在调用程序 2 并尝试将输出插入到引发错误的 #table 中

3) In the main Procedure I am calling the Procedure2 and iam trying to insert the Output to a #table which throws an error

消息 8164,级别 16,状态 1,过程程序 2,第 10 行INSERT EXEC 语句不能嵌套.

我可以使用 Openrowset 解决这个问题,我需要使用指定服务器名称,有没有其他方法可以通过不指定服务器名称详细信息来解决这个问题

I can resolve this using Openrowset where I need to use specify Server Name ,is there any other way to solve this by not specifying the servername details

请查找示例程序以供参考

please find the sample procedure for reference

    Create Proc Procedure1
    As
    Begin
    Select 'Arun' Name, 'Pollachi' Place
    Union
    Select 'Vedaraj' Name, 'Devakottai' Place
    End
    Go



    Create Proc Procedure2
    As
    Begin
    Create Table #Table1
    (
    Name Varchar(50), Place Varchar(50)
    )
    INSERT #Table1
    Exec Procedure1
    SELECT 'Procedure2' [Source], * FROM #Table1

    DROP TABLE #Table1
    End
    Go


    Create Proc MainProcedure
    As
    Begin
    Create Table #Table1
    (
    [Source] Varchar(50), Name Varchar(50), Place Varchar(50)
    )

    INSERT #Table1
    Exec Procedure2

    select * from #Table1

    DROP TABLE #Table1
    End
    Go

任何人都可以更改我的主要程序并使其执行谢谢!!

can any one change my main procedure and make it to get executed Thanks!!

推荐答案

就像你说的,openrowset 可以工作,但除此之外我能想到的唯一方法是:

Like you said, openrowset will work, but other than that the only ways I can think of would be:

  1. 将 proc 1 和 proc 2 都更改为基于表的函数
  2. 将 proc 2 更改为 CLR 并将所有逻辑放在那里
  3. 将表作为表值参数传递

这里有更多关于这个原因的信息:

There's more info about the reasoning for this here:

https://connect.microsoft.com/SQLServer/feedback/details/294571/improve-insert-exechttp://dataeducation.com/revisiting-isnull-coalesce-and-the-perils-of-micro-optimization/

这篇关于INSERT EXEC 语句不能嵌套的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Error casting varchar containing a number expressed in scientific notation to decimal(将包含以科学记数法表示的数字的 varchar 转换为十进制时出错)
Calculate cumulative product value(计算累积产品价值)
SQL Server loop for changing multiple values of different users(用于更改不同用户的多个值的 SQL Server 循环)
SQL Server 2008: Can a multi-statement UDF return a UDT?(SQL Server 2008:多语句 UDF 能否返回 UDT?)
Merge columns in sql(合并sql中的列)
SQL Column is invalid in ORDER BY, not contained in aggregate or GROUP BY(SQL 列在 ORDER BY 中无效,未包含在聚合或 GROUP BY 中)