This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
有没有办法做到这一点?我希望这样做:
create or replace
package SOME_PACKAGE as
filetype type is clob%type; --assign clob's filetype to a variable
end SOME_PACKAGE;
/
declare
clb SOME_PACKAGE.filetype;
begin
dbms_lob.writeappend(clb, 1, 's');
end;