一台机器上装了oracle客户端和sas,如何用sas从中读出某张表呢?谢谢!
请注明:姓名-公司-职位
以便审核进群资格,未注明则拒绝
/* just try to use the code below: */
libname mine oracle username = *** password = *** path = ***;
data yours;
set mine.dataname;
run;