BookmarkSubscribeRSS Feed
sorosch
Fluorite | Level 6

Hello,

i want to insert a SAS Table into Oracle. Normally i use PROC SQL. But in this case i must recode or query every row in the SAS table - and after this the row should be inserted or not in Oracle.

This i want to do (with pseudo-code):


read until sas_base_table is EOF

  "recode/do something with" the sas_base_row

  if sas_base_row is a hit then
    insert into oracle_table
  else
   DO NOTHING
  end if

end read


How can i do that? Is there somewhere perhabs an example?

Thank you very much
Best regards
George

2 REPLIES 2
Tom
Super User Tom
Super User

Why ?

 

If you want to write to Oracle using a data step then make a libref that points to your Oracel schema.

libname MYDB oracle .... ;

Generate the rows you want to insert. For example you could use a conditional OUTPUT statement in your data step to select the rows to insert.

data toadd ;
  set ....
  if ... then output;
run;

Then insert them.

proc append base=mydb.mytable data=toadd force;
run;

 

sorosch
Fluorite | Level 6
Thank you very much for your help.

Best regards
George

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 2 replies
  • 2814 views
  • 1 like
  • 2 in conversation