免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2894 | 回复: 0
打印 上一主题 下一主题

急问一个问题:已建好的函数不能重复执行的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-05-20 12:43 |只看该作者 |倒序浏览
我要写一个函数 对 某一个表进行分析,其中在函数中 要创建临时性的辅助表,但是函数在PSQL中只能执行一次,第二次执行就会出错!一直找不到问题所在,请帮忙分析一下!

代码:

CREATE OR REPLACE FUNCTION ps_temp_table("varchar")
RETURNS bool AS
$BODY$
DECLARE

BEGIN

perform n.nspname ,c.relname
FROM pg_catalog.pg_class c LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE n.nspname like 'pg_temp_%'
AND pg_catalog.pg_table_is_visible(c.oid)
AND Upper(relname) = Upper($1);

IF FOUND THEN
RETURN TRUE;
ELSE
RETURN FALSE;
END IF;

END;
$BODY$
LANGUAGE 'plpgsql' VOLATILE;

create or replace function proc_rkmx_temp() returns bool as $$

declare myrow record;

begin

if ps_temp_table('temp1')=TRUE then
drop table temp1;
end if;

if ps_temp_table('temp1')=FALSE then
create temporary table temp1 as
select distinct nsrsbh,nsrmc from nsrdt;
end if;

if ps_temp_table('temp2')=TRUE then
drop table temp2;
end if;

if ps_temp_table('temp2')=FALSE then
create temporary table temp2 as
select distinct date_part('year',rkrq) as years, date_part('month',rkrq) as months from rkinf;
end if;

select * into myrow from temp1 cross join temp2 limit 1;

if found then
return TRUE;
else
return FALSE;
end if;

end;

$$ language plpgsql

执行情况:

workdb=> \i temp.sql
CREATE FUNCTION
workdb=> select proc_rkmx_temp();
proc_rkmx_temp
----------------
t
(1 row)

workdb=> select proc_rkmx_temp();
错误: OID 为 17535 的关系不存在
CONTEXT: SQL 语句 "SELECT * from temp1 cross join temp2 limit 1"
PL/pgSQL function "proc_rkmx_temp" line 24 at select into variables
workdb=>

如果退出 PSQL 又可以执行一次 select proc_rkmx_temp();
问题何在????????
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP