hi, I'm converting a report that contains multiple queries, into one big sql query. The condition requires matching date from table a, to date in table B+1 day. No issue in original report: Proc sql; create table add2 as Select b.bill_addr_line1,B.bill_addr_line2, B.bill_addr_line3, B.BILL_CITY,B.BILL_STATE_PROV_CD,B.BILL_ZIP_POST_CD,B.BILL_CNTRY_CD,a.* From raw_data as a left join address_table as b on a.id=b.id and a.event_dt=b.eff_to_dt+1;quit; But, when when combining the queries into 6 joins, I receive the message: "CLI OPEN CURSOR ERROR:... Date overflow while adding an integer. If anyone has a tip to offer, pls share, thank you
... View more