BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
StaticFX
Obsidian | Level 7

Hi! I have a question about SQL joins using (+)

 

If I run a query using a connection to Oracle...

 

PROC SQL;

   CONNECT TO ORACLE (USER='xxxxx' PASSWORD=xxxx PATH etc);

   CREATE TABLE QUERY2 AS

   SELECT * FROM CONNECTION TO ORACLE

   (SELECT F1,F2,F3 FROM XXX WHERE A=B  AND C=D(+))

 

it works fine

but when I use a LIBNAME to set up the connection and just use a PROC SQL;

it errors on the (+)

 

DO I have to do the LEFT OUTER JOIN? (Hope not.. the actual query is enormous lol)

 

Thanks!!

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

(+) is not valid SAS syntax, so yes, you need to rewrite the query in SAS SQL not Oracle SQL.

View solution in original post

7 REPLIES 7
Reeza
Super User

(+) is not valid SAS syntax, so yes, you need to rewrite the query in SAS SQL not Oracle SQL.

StaticFX
Obsidian | Level 7

well **bleep** lol. Not sure I can convert this query to left joins easily 🙂 Thanks!!!

Tom
Super User Tom
Super User

I am not sure I understand the question.  Are you asking if you can ORACLE specific SQL enhancements in SAS PROC SQL code?

If so then the answer is no.

PROC SQL uses ANSI SQL 92 standard syntax, plus some SAS specific enhancements.

kiranv_
Rhodochrosite | Level 12

yes it changes to left join

Tom
Super User Tom
Super User

Why not just leave the query in ORACLE code?

libname mydata oracle ..... ;
proc sql ;
connect using mydata;
create table want as select * from connection to mydata
( ... oracle query ...)
;
quit;
StaticFX
Obsidian | Level 7

Hi Tom i cant get this to work?

 

LIBNAME CAT ORACLE SCHEMA=CAT USER='xxxxxxx' PASSWORD='xxxxxx' PATH='@xxxx';

 

PROC SQL;

CONNECT USING CAT;  <<< Error  (connect in red)

 

wait... SAS EG flags that as RED/error but it works... cool 🙂

Tom
Super User Tom
Super User

The EDITOR is not SAS.

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 7 replies
  • 2338 views
  • 3 likes
  • 4 in conversation