我编写了一个简单的聚合函数,它应该通过聚合生成的csv字符串中的不同值来处理包含csv文本的列。当它应该返回结果时,当ORA-06502出现错误时,函数似乎一直工作到最后。
这是代码:
输入def:
create or replace type array_union_typ as object (
union_agg nvarchar2(1000),
static function ODCIAggregateInitialize(sctx in out array_union_typ)
return number,
member function ODCIAggregateIterate (self in out array_union_typ,
value in nvarchar2)
return number,
member function ODCIAggregateTerminate (self in array_union_typ,
return_value out nvarchar2,
flags in number)
return number,
member function ODCIAggregateMerge(self in out array_union_typ,
ctx2 in array_union_typ)
return number,
static function agg_union(arg1 in nvarchar2,
arg2 in nvarchar2)
return nvarchar2
);
身体:
create or replace type body array_union_typ is
static function ODCIAggregateInitialize(sctx in out array_union_typ
) return number is
begin
sctx := array_union_typ(null);
return ODCIConst.Success;
end;
member function ODCIAggregateIterate(self in out array_union_typ,
value in nvarchar2
) return number is
begin
union_agg := array_union_typ.agg_union(union_agg, value);
return ODCIConst.Success;
end;
member function ODCIAggregateTerminate(self in array_union_typ,
return_value out nvarchar2,
flags in number
) return number is
begin
dbms_output.put_line('result: '''|| union_agg || ''', length:' || length(union_agg)); --this still prints
return_value := self.union_agg; -- <-- this is where the error is indicated
--return_value := 'x'; -- returning this still gives the error.
return ODCIConst.Success;
end;
member function ODCIAggregateMerge(self in out array_union_typ,
ctx2 in array_union_typ
) return number is
begin
union_agg := array_union_typ.agg_union(union_agg, ctx2.union_agg);
return ODCIConst.Success;
end;
static function agg_union(arg1 in nvarchar2,
arg2 in nvarchar2)
return nvarchar2 is
result nvarchar2(1000);
orig nvarchar2(1000);
begin
dbms_output.enable;
orig := replace(arg1||','||arg2, chr(0));
FOR rec IN (SELECT DISTINCT(regexp_substr(orig, '[^,]+', 1, level)) AS a
FROM dual CONNECT BY regexp_substr(orig, '[^,]+', 1, level) IS NOT NULL ORDER BY a) LOOP
IF result IS NOT NULL THEN
result := result || ',' || rec.a;
ELSE
result := rec.a;
END IF;
END LOOP;
--dbms_output.put_line('endwith: ''' || result || '''');
RETURN substr(result,1,1000);
end;
end;
这是一个测试表和数据:
SQL> desc uniontest
Name Null? Type
----------------------------------------- -------- ----------------------------
I NVARCHAR2(50)
SQL> select * from uniontest;
I
--------------------------------------------------
a
a
b,c
b,d,e
最后,如果我尝试使用聚合函数,会发生这种情况:
SQL> select array_union(i) from uniontest;
select array_union(i) from uniontest
*
ERROR at line 1:
ORA-06502: PL/SQL: numeric or value error: character string buffer too small
ORA-06512: at "M35456.ARRAY_UNION_TYP", line 25
result: 'a,b,c,d,e', length:9
如果我只是在违规行中传递像'x'这样的单个字符串,我仍会得到同样的错误。只有在null结果时才会消失。我很难过,也没有想法。
感谢您的帮助。
顺便说一句,如果有人知道为什么我会添加\ 0个字符我的agg_union函数参数,我也很想知道这一点。答案 0 :(得分:0)
如果我没弄错,
SELECT DISTINCT(regexp_substr(orig, '[^,]+', 1, level)) AS a
FROM dual CONNECT BY regexp_substr(orig, '[^,]+', 1, level) IS NOT NULL ORDER BY a)
会产生无限数量的行,因为CONNECT BY
条件不依赖于该行。
由于您将字符串变为较大的字符串变得很大,所以将结果附加字符循环到字符串。
答案 1 :(得分:0)
ODCIaggregate
方法似乎与nvarchar2
的效果不佳;你似乎没有做错任何事情,因为如果这些都改为varchar2
,它可以正常工作。
如果您使用的是11gR2,因此可以使用listagg
功能 - 但目前没有使用它,因为您需要找出不同的值 - 您可以将它与现有的regexp_substr
功能结合使用,所以你不需要自己的类型/功能:
SELECT REPLACE(LISTAGG(a, ',') WITHIN GROUP (ORDER BY a), chr(0), '')
FROM (
SELECT DISTINCT(regexp_substr(i, '[^,]+', 1, level)) AS a
FROM uniontest CONNECT BY regexp_substr(i, '[^,]+', 1, level) IS NOT NULL
ORDER BY a
);
...与您的数据一起提供:
REPLACE(LISTAGG(A,',')WITHINGROUP(ORDERBYA),CHR(0),'')
------------------------------------------------------
a,b,c,d,e
在早期版本中,您可以使用SELECT REPLACE(WM_CONCAT(a), chr(0), '')
代替。
(此处的chr(0)
和您问题中的\0
似乎与nvarchar2
有关,但其他人需要了解细节...)