Oracle 中 listagg 的替代品?
listagg是Oracle 11.2中引入的函数!现在这个函数正在困扰我们分配,我们正在从 MySQL 迁移到 Oracle,并且我们有这个查询:
SELECT
p_id,
MAX(registered) AS registered,
listagg(MESSAGE, ' ') within GROUP (ORDER BY registered) AS MESSAGE
FROM
umm_parent_id_remarks_v m
GROUP BY
m.p_id;
据我们所知,在 MySQL 中工作正常 困扰我们的是在 Oracle 下它返回 VARCAR 而不是我们需要的 CLOB! 文本很大,我们确实需要它是 CLOB!
这就是我尝试做的!
创建一个 CLOB 类型的 CLOB_T 表!
然后现在创建该函数
create or replace
function listaggclob (t in clob_t)
return clob
as
ret clob := '';
i number;
begin
i := t.first;
while i is not null loop
if ret is not null then
ret := ret || ' ';
end if;
ret := ret || t(i);
i := t.next(i);
end loop;
return ret;
end;
,如果我运行它:
SELECT
p_id,
MAX(registered) AS registered,
listaggclob(cast(collect (MESSAGE) as clob_t)) MESSAGE
FROM
umm_parent_id_remarks_v m
GROUP BY
m.p_id;
我得到
ORA-22814:属性或元素值大于类型中指定的
有什么解决方案吗?
感谢您
listagg is a function introduced in Oracle 11.2! now this function is bugging us allot, we are migrating from MySQL to Oracle and we have this query:
SELECT
p_id,
MAX(registered) AS registered,
listagg(MESSAGE, ' ') within GROUP (ORDER BY registered) AS MESSAGE
FROM
umm_parent_id_remarks_v m
GROUP BY
m.p_id;
is works fine in MySQL as far as we know
what bugging us is under Oracle it returns VARCAR and not CLOB as we need!
the text is huge and we do need it to be CLOB!
here is what I tried to do!
create a CLOB_T table of CLOB Type!
then create the function
create or replace
function listaggclob (t in clob_t)
return clob
as
ret clob := '';
i number;
begin
i := t.first;
while i is not null loop
if ret is not null then
ret := ret || ' ';
end if;
ret := ret || t(i);
i := t.next(i);
end loop;
return ret;
end;
now if I run it:
SELECT
p_id,
MAX(registered) AS registered,
listaggclob(cast(collect (MESSAGE) as clob_t)) MESSAGE
FROM
umm_parent_id_remarks_v m
GROUP BY
m.p_id;
I get
ORA-22814: attribute or element value is larger than specified in type
is there any solution for it?
thanks you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
使用收集或编写您自己的聚合函数。
Use collect or write your own aggregation function.
使用 xmlAgg,示例如下所示:
这将返回 clob 值,因此无需创建自定义函数。
Use xmlAgg, example is shown below:
This will return clob value and so no need to create custom function.
您可以使用
MULTISET
而不是COLLECT
来解决ORA-22814
错误:You can solve the
ORA-22814
error by usingMULTISET
instead ofCOLLECT
:您可能想查看用户定义的聚合函数 。
此处显示了不同的字符串聚合技术。它们包括用户定义的聚合函数的示例。
You might want to look at user-defined aggregate functions.
Differnt string aggregation techniques are shown here. They include an example for user-defined aggregate functions.
WM_CONCAT 为我工作。
我用“replace”包裹它,以指定与 WM_CONCAT 使用的项目分隔符(';')不同的项目分隔符(',')。
WM_CONCAT worked for me.
I wrapped it with a "replace" to specify a different item separator (';') from the one used by WM_CONCAT (',').