BookmarkSubscribeRSS Feed
MPDeCoster
Calcite | Level 5

I'm pulling in a report created by another user on a Virtual Machine in SAS 9.4/EG 7.1 where i'm using a desktop version.  He doesn't get the error message on his virtual machine while I get the following error-type message:

 

 

sales_rep for Local: SASUSER.CUSTOMER_SHIP_TO

"This query contains data from disparate data types, requiring a heterogeneous join.  This may negatively impact performance fo the query becuase of the need to transfer data to the SAS Workspace Server."

 

The data source in question comes from the same point through different data sets.  

 

Has anyone seen this issue before or know how I can rectify the error message to improve the performance? 

 

1 REPLY 1
JBerry
Quartz | Level 8

Are you absolutely sure that they are pulling from the exact same sources?  Are you sure it's an error and not just a warning?  It sounds to me that you are joining tables from 2 different systems, which would mean your syntax is something like this:

 

libname mybase base 'C:\Base'; * remote data source #1 ;
libname myoracle oracle user=scott password=tiger path=oraclev11; * remote datasource #2;

proc fedsql;
   select mybase.products.prodid, mybase.products.product, myoracle.sales.totals 
      from mybase.products, myoracle.sales
      where products.prodid=sales.prodid;
quit;

 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 1 reply
  • 4631 views
  • 0 likes
  • 2 in conversation