BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
steffick
Calcite | Level 5
Hi.
I have tried everything I could think of to resolve this error. Please check my code
to find the error I have made. First time poster.

Diane

%let pyr=15; %let yr=16; options obs=1000000; proc sql; CONNECT TO SQLSVR AS CDW(DATAsrc=xxxxxxxxxxxxxxxx &SQL_OPTIMAL.); create table test as select labchemresultnumericvalue, b.LabChemTestName,c.Topography from connection to cdw (select labchemresultnumericvalue, b.LabChemTestName,c.Topography from <project name>.src.chem_labchem as a left join CDWWork.dim.labchemtest as b on a.LabChemTestSID=b.labchemtestsid left join CDWWork.dim.Topography as c on a.TopographySID=c.TopographySID;); disconnect from cdw; quit;
log.png
c
1 ACCEPTED SOLUTION

Accepted Solutions
Quentin
Super User

Try changing your first statement to:

create table test as select 
labchemresultnumericvalue,
LabChemTestName,Topography from

I removed the a. and b. table aliases.

 

Note that when you run code with explicit pass-through like this (it's a great feature to use), the code in parentheses is executed by the remote database. 

 

So this code:

(select labchemresultnumericvalue,
b.LabChemTestName,c.Topography from

<project name>.src.chem_labchem as a

	left join CDWWork.dim.labchemtest as  b on  
		a.LabChemTestSID=b.labchemtestsid

	left join CDWWork.dim.Topography as c  on 
		a.TopographySID=c.TopographySID;)

runs on SQL server.  SAS doesn't know about this code, and doesn't execute it.

 

The first part of your code which is not in the parentheses will be run by SAS:

create table test as select 
labchemresultnumericvalue,
b.LabChemTestName,c.Topography from

But  since the SAS code doesn't define an alias named a or b, it throws an error.

 

BASUG is hosting free webinars ! Check out recordings of our past webinars: https://www.basug.org/videos. Save the date for our in person SAS Blowout on Oct 18 in Cambridge, MA. Registration opens in September.

View solution in original post

2 REPLIES 2
Quentin
Super User

Try changing your first statement to:

create table test as select 
labchemresultnumericvalue,
LabChemTestName,Topography from

I removed the a. and b. table aliases.

 

Note that when you run code with explicit pass-through like this (it's a great feature to use), the code in parentheses is executed by the remote database. 

 

So this code:

(select labchemresultnumericvalue,
b.LabChemTestName,c.Topography from

<project name>.src.chem_labchem as a

	left join CDWWork.dim.labchemtest as  b on  
		a.LabChemTestSID=b.labchemtestsid

	left join CDWWork.dim.Topography as c  on 
		a.TopographySID=c.TopographySID;)

runs on SQL server.  SAS doesn't know about this code, and doesn't execute it.

 

The first part of your code which is not in the parentheses will be run by SAS:

create table test as select 
labchemresultnumericvalue,
b.LabChemTestName,c.Topography from

But  since the SAS code doesn't define an alias named a or b, it throws an error.

 

BASUG is hosting free webinars ! Check out recordings of our past webinars: https://www.basug.org/videos. Save the date for our in person SAS Blowout on Oct 18 in Cambridge, MA. Registration opens in September.
steffick
Calcite | Level 5
Thank you very much.
Diane

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 1035 views
  • 0 likes
  • 2 in conversation