Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Why left outer join with a table gives me more rows??

TinaDec 20 2014 — edited Dec 21 2014

Hi Gurus,

I have a view 'view_a' and a table 'table_a'

view_a has count of 100 rows.Now when I left outer join that view with a 'table_a',I expect all 100 rows.

However I am getting more than 100 rows.Is that ever possible?

Also even to analyse these situations, how do I move forward?

Because these are really high volumn view's and takes longer time to execute.

Select  count(*) from view_a ,view_b

          where view_a.col1 = view_b.col1(+)

          and view_a.col2 = view_b.col2(+);

Thanks

This post has been answered by unknown-7404 on Dec 20 2014
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 18 2015
Added on Dec 20 2014
3 comments
1,290 views