Hi All,
I have a query something like this..
select col1, col2, col3 from (
select col1,col2,col3, col4 from table1
union all
select col1,col2,col3, col4 from table2
)
Here col3 is of long raw datatype. If i run this query, after
returning some rows, the oracle is saying "end-of-file on
communication channel".
Can anyone pls help me!!
Thanks in Advance,
Praveen
I have a query something like this..
select col1, col2, col3 from (
select col1,col2,col3, col4 from table1
union all
select col1,col2,col3, col4 from table2
)
Here col3 is of long raw datatype. If i run this query, after
returning some rows, the oracle is saying "end-of-file on
communication channel".
Can anyone pls help me!!
Thanks in Advance,
Praveen
Comment