BookmarkSubscribeRSS Feed
mahruf
Calcite | Level 5

TABLE A & C DATA LOCATED IN ORACLE

TABLE B DATA LOCATED IN SAS WORK SPACE

 

EXAMPLE 1

 

proc sql;

select * from Table a

inner join Table b

on a.ID = b.ID;

quit;

 

The above query is translated as the following in Oracle Session;

 

/*SELECT  "COL1", "COL2" FROM Table a 

WHERE  ( ("ID" IN  ( 1191 , 1192 , 1193 , 1194 , 1195 , 1196 , 1197 , 1198 , 1199 , 1200 ) ) )*/

 

EXAMPLE 2

 

proc sql;

select * from Table c

inner join Table b

on c.ID = b.ID;

quit;

 

The above query is translated as the following in Oracle Session;

 

/*SELECT  "COL1", "COL2" FROM Table c

WHERE ((("ID"=:"ID") OR (("ID" IS NULL ) AND ( :"ID" IS NULL ))))*/

 

 

Example 2 has omitted the ID's and shows up differently to Example 1 'WHERE' clause despite the same query.   It only happens when I used "Table C" but all the other table outputs as Example 1 'where' clause.

 

Does anyone know why that is happening? What could be the issues?

 

Thanks

M

2 REPLIES 2
TomKari
Onyx | Level 15

I believe it's related to how SAS tries to optimize a join between tables in different data sources. This reference, and the linked description of the "DBMASTER" option, may give you some insights.

 

Tom

 

http://support.sas.com/documentation/cdl/en/acreldb/63647/HTML/default/viewer.htm#a002205740.htm

mahruf
Calcite | Level 5

 

I submitted the following query but still same issue. 

 


libname dblib Oracle USER=abc PASSWORD="123" path=zzz multi_datasrc_opt=in_clause;

 

proc sql ;
create table work.x as

 

select * from

 

saswork.id tab1,

 

oracledb.bigdata (dbmaster=yes) tab2


where tab1.ID = tab2.ID;
quit;

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 697 views
  • 0 likes
  • 2 in conversation