Hello Members,
I need help in understanding , How can we update table same table after join in proc sql
proc sql; create table &lbname..&inputTable select p.*, e.time_id as start_dt_sk from &lbname..&inputTable. p , &plan_lib..t_&inputTable._end e where p.%bquote(&time_dim.) between e.start_date and e.end_date; quit;
ignore macro variable these are getting resolved perfectly. My doubt is can we create table like these where from table name and create table is same ?
do we have replace option here in proc sql ?
Also &lbname..&inputTable. table is having larger volume of records around 17M. Please help me with best possible way to resolve this.
Thanks!
... View more