Hi All, I have 3,000 customers in SAS table and I want to fetch data from Oracle for those customers. there are billions of records in Oracle table. I am using Oracle Lib and joining sas data with it, but the solution is not efficient, takes ages to run. Please note that I don't have rights to create temp table in Oracle so cannot ingest 3,000 customers in oracle table. The sample code is libname SASTABLE libname ORATABLE proc sql; select A.* from oratable as a inner join sastable as b on a.cust_ID=b.cust_ID; quit;
... View more