Skip to Main Content

Analytics Software

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!

relationship between snp_lpi_step & snp_session table.

RashmikMay 19 2015 — edited May 20 2015

Hi

I want to know , is there any relationship exists between snp_lpi_step & snp_session table.

select

d1.load_plan_name,  d2.start_date,  d2.end_date,  d2.duration, d2.status,

d2.nb_run, d3.i_lp_step, d3.lp_step_name, d3.lp_step_type

from snp_lp_inst d1,

     snp_lpi_run d2,

     snp_lpi_step d3

where   d1.i_lp_inst=d2.i_lp_inst

and d2.i_lp_inst=d3.i_lp_inst

and d1.i_lp_inst='30500'

and d2.nb_run=2

order by d1.i_lp_inst,d3.i_lp_step;

I want to join snp_session table now on the above sql, how can i do it, any idea..

Thanks

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 17 2015
Added on May 19 2015
1 comment
916 views