SQL:
begin
for c in 1 .. 10 loop
Dbms_Output.put_line(c || ' -> ab' || chr(13) || chr(10) || 'cd' || chr(13) || chr(10) || 'ef');
end loop;
end;
This code shows only first line from every put_line:
When I select something some fragments shows up:
When I select all and copy to notepad whole text is visible.