when i execute a query on SQLdeveloper
select text from dba_views where VIEW_NAME='EG_Name' and owner='user123';
I get the result
select
col1,
col2,
col3,
col4,
col5 from Table1
but when i execute the same query on sqlplus i get a truncated output like
TEXT
--------------------------------------------------------------------------------
select
col1,
col2,
col3,
c
SQL>
for some reason it is being truncated?
Anyone have an idea.