用sqlCOmmand运行存储过程出错. 
异类查询要求为连接设置ANSI_NULLS和ANSI_WARNINGS 选项.这将确保一致的查询语义.请启用这些选项,然后重新发出查询. 但存储过程在查询分析器却可以运行成功... 存储过程如下: declare @barCode varchar(30),@serverIP varchar(30) 
if @barCode is null 
set @barCode= ' ' set @barCode= '680000000045 ' 
set @serverIP= 'www.9999.com '  
--set ansi_nulls off 
--set ansi_warnings off 
        -- exec( 'If Select * from [ '+@serverIP+ '].[9af6].[9393_f].sendMain ') 
exec( 'insert into [ '+@serverIP+ '].[9af6].[9393_f].sendMain(DgAmt,DgPrice,DgTanBH,Shsj,Dgmemo,Ratio,ShopID,BarCode,CodeValue,machineNo,ModUser,InputUser)  
select DgAmt,DgPrice,DgTanBH,Shsj,Dgmemo,Ratio,ShopID,BarCode,CodeValue,machineNo,ModUser,InputUser From sendMain where BarCode= '+@BarCode) --传送明细 
exec( 'insert into [ '+@serverIP+ '].[9393].[9393_f].sendDetail(CPID,Cpname,AMt,Price,Total,barCode,UnitName,ModUser,InputUser)  
select CPID,Cpname,AMt,Price,Total,barCode,UnitName,ModUser,InputUser From sendDetail where amt >0 and BarCode= '+@BarCode) 上面的两句SQL直接放在查询分析器中是可以运行成功的.但一放进存储过程就不行了.

解决方案 »

  1.   

    --传送明细  
    exec(  'insert into [  '''+@serverIP+  '''].[9393].[9393_f].sendDetail(CPID,Cpname,AMt,Price,Total,barCode,UnitName,ModUser,InputUser)   
    select CPID,Cpname,AMt,Price,Total,barCode,UnitName,ModUser,InputUser From sendDetail where amt  >0 and BarCode=  '''+@BarCode + '')  
      

  2.   

    动态执行SQL时,遇到字符串的地方,一个引号要用两个引号.用动态SQL语句,都上都给出来了。动态sql语句基本语法 
    1 :普通SQL语句可以用Exec执行 eg:   Select * from tableName 
             Exec('select * from tableName') 
             Exec sp_executesql N'select * from tableName'    -- 请注意字符串前一定要加N 2:字段名,表名,数据库名之类作为变量时,必须用动态SQL eg:   
    declare @fname varchar(20) 
    set @fname = 'FiledName' 
    Select @fname from tableName              -- 错误,不会提示错误,但结果为固定值FiledName,并非所要。 
    Exec('select ' + @fname + ' from tableName')     -- 请注意 加号前后的 单引号的边上加空格 当然将字符串改成变量的形式也可 
    declare @fname varchar(20) 
    set @fname = 'FiledName' --设置字段名 declare @s varchar(1000) 
    set @s = 'select ' + @fname + ' from tableName' 
    Exec(@s)                -- 成功 
    exec sp_executesql @s   -- 此句会报错 declare @s Nvarchar(1000)  -- 注意此处改为nvarchar(1000) 
    set @s = 'select ' + @fname + ' from tableName' 
    Exec(@s)                -- 成功     
    exec sp_executesql @s   -- 此句正确 3. 输出参数 
    declare @num int, 
            @sqls nvarchar(4000) 
    set @sqls='select count(*) from tableName' 
    exec(@sqls) 
    --如何将exec执行结果放入变量中? declare @num int, 
                   @sqls nvarchar(4000) 
    set @sqls='select @a=count(*) from tableName ' 
    exec sp_executesql @sqls,N'@a int output',@num output 
    select @num 
      

  3.   

    是不是要在远程服务器上设置那两个选项?
    --set ANSI_NULLS ON
    --set ANSI_WARNINGS ON
      

  4.   

    两边的服务器在连接设置里面都将上面那两个勾上了也还是不行.
    下面将所有字段加上isnull(field,'')试一下.