data one;input id $;/* create formatting to preserve leading zeros in excel */cid  =  ‘ = ” ’  ||  id  ||  ‘ ” ’;cards;00123123980123400034;run;data one (drop=id);      set one;run;ods listing clo…
Tag: SAS to Oracle/EXCEL
Create Oracle Tables
libname oradb Oracle User=orauser Password=xxxxxxx Path=”@orapth”; proc sql;      create table oradb.dsn as      select * from temp;quit;run;proc append base=oradb.dsn data=temp1 force;run;
Variables names to avoid when create Oracle tables from SAS
Oracle Reserved Words