我无法检索附件(使用spool命令创建的SQL结果文件)的内容。尽管存储在服务器上的相应文件已正确填充,但附件为空。
我的手术:
DECLARE
l_clob CLOB := 'MayBe';
begin
send_mail_bis_bis(p_to => 'toto@gmail.com',
p_from => 'toto@gmail.com',
p_subject => 'result',
p_text_msg => 'Maintenant reste la requête à bien la mettre dedans :) ',
p_attach_name => 'table.csv',
p_attach_mime => '/home/oracle/pj',
p_attach_clob => l_clob,
p_smtp_host => 'smtp.domaine.fr');
EXCEPTION
WHEN utl_smtp.Transient_Error OR utl_smtp.Permanent_Error then
raise_application_error(-20000, 'Unable to send mail: '||sqlerrm);
END;
/
谢谢
附加文件电子邮件附件
1条答案
按热度按时间pexxcrt21#
我的手术: