↧
Answer by Ben for Formatting carriage return, line feed in Oracle PL/SQL
The only difference between your two versions is the exclusion of SYSTIMESTAMP in the one that works.You're not explicitly converting your SYSTIMESTAMP to a character using TO_CHAR(). It will be being...
View ArticleFormatting carriage return, line feed in Oracle PL/SQL
I have problems regarding a mail body formatting I'm sending:Here is the KO version (no new lines):declare crlf VARCHAR2(2) := chr(13)||chr(10); msg_body VARCHAR2(2000);begin msg_body := msg_body ||...
View Article