Database Administration (MOSC)

MOSC Banner

select * from view: ORA-3113, view's select works AND ...

edited Nov 28, 2014 4:49AM in Database Administration (MOSC) 8 commentsAnswered ✓

select * from view where rownum>0; works:


select * from vwpcontractschargessummed
*
ERROR at line 1:
ORA-03113: end-of-file on communication channel


select count(*) from pf.vwpcontractschargessummed
*
ERROR at line 1:
ORA-03113: end-of-file on communication channel


select count(order_id) from pf.vwpcontractschargessummed
*
ERROR at line 1:
ORA-03113: end-of-file on communication channel

select order_id from pf.vwpcontractschargessummed where rownum=1;

  ORDER_ID
----------
     65303

select order_id from pf.vwpcontractschargessummed where rownum<11;

     10 rows selected.

101

     100 rows selected.

select order_id from pf.vwpcontractschargessummed
*
ERROR at line 1:
ORA-03113: end-of-file on communication channel


1001

     1000 rows selected.

10001    

     10000 rows selected.

100001

     13241 rows selected.


select * from pf.vwpcontractschargessummed where rownum<=13241;


     13241 rows selected.


select * from pf.vwpcontractschargessummed where 1=1

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center