s******l 发帖数: 65 | 1 How can I use Proc SQL to get the oracle database properties, say, table
name and the corresponding variables in each table? |
s*********e 发帖数: 1051 | 2 libname test oracle ....;
proc datasets library = test;
contents data = _all_;
run; |
s******l 发帖数: 65 | 3 Thanks a lot for your suggestions.
I will try.
【在 s*********e 的大作中提到】 : libname test oracle ....; : proc datasets library = test; : contents data = _all_; : run;
|
a*z 发帖数: 294 | 4 use following to check if you have oracle interface (in log file)
proc setinit;
run; |