Hi, I am trying to perform a full join using two tables, there is no output on the log; my SAS server just seems to be timing out. Not sure what is happening or how to troubleshoot this issue. Here is my code. %LET start_date = 01JAN20:12:00: 00.000000; proc sql; create table uat as select x.sku_id, x.Base_Price_Amt, xx.On_Air_Qty, y.Shipping_And_Handling_Amt, y.Source_Cd from hist x full join expos y on (x.sku_id = y.sku_id) where x.Valid_Start_Dttm between "&start_date."d and today() - 1 ; quit;
... View more