Hi,
I am trying to figure out the syntax for a linefeed in the UNIX environment for PL/SQL.
I tried the following as a test but the result is not what I want. What I am actually doing is building a variable with a message. In this message I need to move to another line sometimes. I appreciate any help that I can get.
select plant || '\n'
from other_cost_detail
PLANT
-----
075\n
075\n
Instead I want a new line, like so...
PLANT
-----
075
075
Thank you for all your help
Tom
I am trying to figure out the syntax for a linefeed in the UNIX environment for PL/SQL.
I tried the following as a test but the result is not what I want. What I am actually doing is building a variable with a message. In this message I need to move to another line sometimes. I appreciate any help that I can get.
select plant || '\n'
from other_cost_detail
PLANT
-----
075\n
075\n
Instead I want a new line, like so...
PLANT
-----
075
075
Thank you for all your help
Tom