存储过程中执行create table as select from提示表或视图不存在
在plsql里面操作的createorreplaceprocedureUP_DXPT_BB_ZWSRisvertvarchar2(10000);begin--从账务提取收...
在plsql里面操作的
create or replace procedure UP_DXPT_BB_ZWSR is
vert varchar2(10000);
begin
--从账务提取收入数据到临时表
vert :='create table test_dxpt_zwsr as
(select
t.sort_line as VCHID,
t.sort_line as BILLIDS,
t.set_year as set_year,
t.cre_money as CRE_MONEY
from syzw.voucher_detail_budget t where t.as_code like "4%"
and t.set_year=2014
and substr(latest_op_date,1,10) >=to_char((sysdate -interval ''7'' day),''yyyy-mm-dd'') )
';
execute immediate vert;
commit;
end UP_DXPT_BB_ZWSR;
创建了一个存储过程,然后复制表的数据到新的临时表里面,但是我测试执行存储过程的时候提示表或者视图不存在, 2个数据库在同一实例里面。想知道为什么在线等 展开
create or replace procedure UP_DXPT_BB_ZWSR is
vert varchar2(10000);
begin
--从账务提取收入数据到临时表
vert :='create table test_dxpt_zwsr as
(select
t.sort_line as VCHID,
t.sort_line as BILLIDS,
t.set_year as set_year,
t.cre_money as CRE_MONEY
from syzw.voucher_detail_budget t where t.as_code like "4%"
and t.set_year=2014
and substr(latest_op_date,1,10) >=to_char((sysdate -interval ''7'' day),''yyyy-mm-dd'') )
';
execute immediate vert;
commit;
end UP_DXPT_BB_ZWSR;
创建了一个存储过程,然后复制表的数据到新的临时表里面,但是我测试执行存储过程的时候提示表或者视图不存在, 2个数据库在同一实例里面。想知道为什么在线等 展开
1个回答
展开全部
你是意思是UP_DXPT_BB_ZWSR 执行报表或者视图不存在 ?
那你先确认下
select
t.sort_line as VCHID,
t.sort_line as BILLIDS,
t.set_year as set_year,
t.cre_money as CRE_MONEY
from syzw.voucher_detail_budget t where t.as_code like "4%"
and t.set_year=2014
and substr(latest_op_date,1,10) >=to_char((sysdate -interval ''7'' day),''yyyy-mm-dd'')
执行有没有问题
那你先确认下
select
t.sort_line as VCHID,
t.sort_line as BILLIDS,
t.set_year as set_year,
t.cre_money as CRE_MONEY
from syzw.voucher_detail_budget t where t.as_code like "4%"
and t.set_year=2014
and substr(latest_op_date,1,10) >=to_char((sysdate -interval ''7'' day),''yyyy-mm-dd'')
执行有没有问题
追问
分数给你了, 问题解决了 原来存储过程不让点表,我用了database link 解决了 不过还是谢谢你
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询