存储过程如下:语法检查无误,
粗体显示的部份用横线下的语句代替正常,而用该存储过程者出现:对象名#KCCX无效,
CREATE  procedure sp_kc(@bmbm varchar(10), @date varchar(8), @gysbm varchar(6), @month varchar(10) )
as
begin
declare @strsql  Nvarchar(2000) 
declare @strsql1  Nvarchar(2000) 
declare @tableyhj varchar(20) 
declare @tablerhj varchar(20) 
set @tableyhj= "tb"+@month+ "_yhj"
set @tablerhj= "tb"+@month+ "_rhj"
set @strsql1="select tbsptm.f_sptm sptm,tbspda.f_spmc spmc,c.qmsl,(tbspda.f_zhjj*(1+tbspda.f_sl/100)) zhjj,tbspda.f_xsdj xsdj,c.qmsl*(tbspda.f_zhjj*(1+tbspda.f_sl/100)) qmjjje ,c.qmsl*tbspda.f_xsdj qmje  into #kccx  "
set @strsql1=@strsql1+"  from (select a.f_spbm spbm,(a.qcsl+b.fssl) qmsl from (select f_spbm,sum(f_qcsl) qcsl   from  "+@tableyhj +"  where f_bmbm like "+ @bmbm +" and f_spbm in (select f_spbm  "
set @strsql1=@strsql1+"  from tbsptm where f_xh='1' and f_sptm like '%' and f_spbm in (select f_spbm from tbgysdz where f_gysbm="+@gysbm+" )) group by f_spbm) a, "
set @strsql1=@strsql1+"  (select f_spbm,(sum(f_jhsl)+sum(f_Nbjhsl)+sum(f_Brsl)+sum(f_Jgbrsl)+sum(f_Sysl)+sum(f_Pssl)-sum(f_Xssl)-sum(f_Nbxssl)-sum(f_Bcsl)-sum(f_Jgbcsl)-sum(f_Shsl)-sum(f_Phsl)) fssl "
set @strsql1=@strsql1+"  from " +@tablerhj +"  where f_rq<="  +@date +"  and f_bmbm like " + @bmbm + "  and f_spbm in  (select f_spbm from tbsptm where f_xh='1' and f_sptm like '%' and f_spbm in  "
set @strsql1=@strsql1+"  (select f_spbm from tbgysdz where f_gysbm="+@gysbm+" )) group by f_spbm) b  where a.f_spbm=b.f_spbm) c,tbspda,tbsptm where c.spbm=tbspda.f_spbm  and c.spbm=tbsptm.f_spbm and tbsptm.f_xh='1' and f_sptm like '%' "
set @strsql="insert into #kccx  select tbsptm.f_sptm sptm,tbspda.f_spmc spmc,a.qcsl,(tbspda.f_zhjj*(1+tbspda.f_sl/100)) zhjj,tbspda.f_xsdj xsdj,a.qcsl*(tbspda.f_zhjj*(1+tbspda.f_sl/100)) qmjjje,a.qcsl*tbspda.f_xsdj "
set @strsql=@strsql+" from (select f_spbm,f_qcsl qcsl from  " +@tableyhj + "  where f_bmbm like "+ @bmbm 
set @strsql=@strsql+" and f_spbm in (select f_spbm  from tbsptm where f_xh='1' and f_sptm like '%' and f_spbm in (select f_spbm from tbgysdz where f_gysbm= "+@gysbm +"))"
set @strsql=@strsql+" and f_spbm not in (select f_spbm from " +@tablerhj +"  where f_rq<= " +@date 
set @strsql=@strsql+" and f_bmbm like "+ @bmbm  +" and f_spbm in (select f_spbm from tbgysdz where f_gysbm=" +@gysbm
set @strsql=@strsql+"))) a,tbspda,tbsptm where a.f_spbm=tbspda.f_spbm  and a.f_spbm=tbsptm.f_spbm and tbsptm.f_xh='1' and tbsptm.f_sptm like '%'"Execute(@strsql1) 
Execute(@strsql) select *  from #kccx  order by sptm drop table  #kccx 
end
GO_____________________________________________
select tbsptm.f_sptm sptm,tbspda.f_spmc spmc,c.qmsl,(tbspda.f_zhjj*(1+tbspda.f_sl/100)) zhjj,tbspda.f_xsdj xsdj,c.qmsl*(tbspda.f_zhjj*(1+tbspda.f_sl/100)) qmjjje ,c.qmsl*tbspda.f_xsdj qmje
into #kccx
from (select a.f_spbm spbm,(a.qcsl+b.fssl) qmsl
from (select f_spbm,sum(f_qcsl) qcsl
from tb200710_yhj where f_bmbm like '2020%' and f_spbm in (select f_spbm 
from tbsptm where f_xh='1' and f_sptm like '%' and f_spbm in (select f_spbm from tbgysdz where f_gysbm='001013')) group by f_spbm) a,
(select f_spbm,(sum(f_jhsl)+sum(f_Nbjhsl)+sum(f_Brsl)+sum(f_Jgbrsl)+sum(f_Sysl)+sum(f_Pssl)-sum(f_Xssl)-sum(f_Nbxssl)-sum(f_Bcsl)-sum(f_Jgbcsl)-sum(f_Shsl)-sum(f_Phsl)) fssl
 from tb200710_rhj where f_rq<='20071018' and f_bmbm like '2020%' and f_spbm in 
(select f_spbm from tbsptm where f_xh='1' and f_sptm like '%' and f_spbm in 
(select f_spbm from tbgysdz where f_gysbm='001013')) group by f_spbm) b 
where a.f_spbm=b.f_spbm) c,tbspda,tbsptm where c.spbm=tbspda.f_spbm 
and c.spbm=tbsptm.f_spbm and tbsptm.f_xh='1' and f_sptm like '%'

解决方案 »

  1.   

    --这么长的语句,执行前最好先打印出来看看
    Print @strsql1
    Print @strsql
    Execute(@strsql1)  
    Execute(@strsql)  
      

  2.   

    动态SQL中一般不使用临时表,可考虑用表或全局临时表.因为临时表不是每次都相同的.具体情况如下:
    临时表
    可以创建本地和全局临时表。本地临时表仅在当前会话中可见;全局临时表在所有会话中都可见。本地临时表的名称前面有一个编号符 (#table_name),而全局临时表的名称前面有两个编号符 (##table_name)。SQL 语句使用 CREATE TABLE 语句中为 table_name 指定的名称引用临时表:CREATE TABLE #MyTempTable (cola INT PRIMARY KEY)
    INSERT INTO #MyTempTable VALUES (1)如果本地临时表由存储过程创建或由多个用户同时执行的应用程序创建,则 SQL Server 必须能够区分由不同用户创建的表。为此,SQL Server 在内部为每个本地临时表的表名追加一个数字后缀。存储在 tempdb 数据库的 sysobjects 表中的临时表,其全名由 CREATE TABLE 语句中指定的表名和系统生成的数字后缀组成。为了允许追加后缀,为本地临时表指定的表名 table_name 不能超过 116 个字符。除非使用 DROP TABLE 语句显式除去临时表,否则临时表将在退出其作用域时由系统自动除去: 当存储过程完成时,将自动除去在存储过程中创建的本地临时表。由创建表的存储过程执行的所有嵌套存储过程都可以引用此表。但调用创建此表的存储过程的进程无法引用此表。
    所有其它本地临时表在当前会话结束时自动除去。
    全局临时表在创建此表的会话结束且其它任务停止对其引用时自动除去。任务与表之间的关联只在单个 Transact-SQL 语句的生存周期内保持。换言之,当创建全局临时表的会话结束时,最后一条引用此表的 Transact-SQL 语句完成后,将自动除去此表。 
    在存储过程或触发器中创建的本地临时表与在调用存储过程或触发器之前创建的同名临时表不同。如果查询引用临时表,而同时有两个同名的临时表,则不定义针对哪个表解析该查询。嵌套存储过程同样可以创建与调用它的存储过程所创建的临时表同名的临时表。嵌套存储过程中对表名的所有引用都被解释为是针对该嵌套过程所创建的表,例如:CREATE PROCEDURE Test2
    AS
    CREATE TABLE #t(x INT PRIMARY KEY)
    INSERT INTO #t VALUES (2)
    SELECT Test2Col = x FROM #t
    GO
    CREATE PROCEDURE Test1
    AS
    CREATE TABLE #t(x INT PRIMARY KEY)
    INSERT INTO #t VALUES (1)
    SELECT Test1Col = x FROM #t
    EXEC Test2
    GO
    CREATE TABLE #t(x INT PRIMARY KEY)
    INSERT INTO #t VALUES (99)
    GO
    EXEC Test1
    GO下面是结果集:(1 row(s) affected)Test1Col    
    ----------- 
    1           (1 row(s) affected)Test2Col    
    ----------- 
    2           当创建本地或全局临时表时,CREATE TABLE 语法支持除 FOREIGN KEY 约束以外的其它所有约束定义。如果在临时表中指定 FOREIGN KEY 约束,该语句将返回警告信息,指出此约束已被忽略,表仍会创建,但不具有 FOREIGN KEY 约束。在 FOREIGN KEY 约束中不能引用临时表。考虑使用表变量而不使用临时表。当需要在临时表上显式地创建索引时,或多个存储过程或函数需要使用表值时,临时表很有用。通常,表变量提供更有效的查询处理。
      

  3.   

    在动态SQL中创建的临时表,在动态SQL执行完后,系统就自动销毁了。
      

  4.   

    你把 select *  from #kccx  order by sptm drop table  #kccx   这句代码也放在动态SQL语句中就可以了。
      

  5.   

    这是临时表的作用域问题。如果在动态SQL中创建的临时表,无法在外部访问。可以改为:Execute(@strsql + ' select *  from #kccx  order by sptm drop table  #kccx   ')