z**********i 发帖数: 12276 | 1 因为,有些数据库太大,没法放到PC端.
在UNIX上存储了ORACLE的DATABASE.有个简单的问题是,这些DATABASE我以前没用过,
PART A,PART B, PART D的数据.很多的TABLE.
是否有一段CODE,我可以把这些TABLE以及里面的COLUMN(VARIABLE)都抓出来,放到EXCEL
或其他什么文件里,便于我了解这些数据的结构.
多谢!! |
p********a 发帖数: 5352 | 2 define sas library with oracle engine and get the sashep.vcolumn
or use dictionary tables or use proc contents _all_ option. |
z**********i 发帖数: 12276 | 3 多谢!
能给个sample code吗?
【在 p********a 的大作中提到】 : define sas library with oracle engine and get the sashep.vcolumn : or use dictionary tables or use proc contents _all_ option.
|
k*****u 发帖数: 1688 | 4 LIBNAME oralib ORACLE PATH=alien USER=scott PASSWORD=”{sas001}dGlnXYZ=”
schema=SCOTT;
然后oracle的那些table就类似于sas的data sets用了
http://support.sas.com/techsup/technote/ts771.pdf |
z**********i 发帖数: 12276 | 5 多谢!下周试试。
前面那段,跟我的一样。可以看到oralib里的文件(table),接下来,我找
了一段code,但不行。是不是因为我的文件太大呢?
【在 k*****u 的大作中提到】 : LIBNAME oralib ORACLE PATH=alien USER=scott PASSWORD=”{sas001}dGlnXYZ=” : schema=SCOTT; : 然后oracle的那些table就类似于sas的data sets用了 : http://support.sas.com/techsup/technote/ts771.pdf
|
z**********i 发帖数: 12276 | 6 这篇文章好像用bi,我们没有。
【在 k*****u 的大作中提到】 : LIBNAME oralib ORACLE PATH=alien USER=scott PASSWORD=”{sas001}dGlnXYZ=” : schema=SCOTT; : 然后oracle的那些table就类似于sas的data sets用了 : http://support.sas.com/techsup/technote/ts771.pdf
|
z**********i 发帖数: 12276 | 7 新手入门,真是不容易.
今天,终于,安装了WORKBENCH,可以运行SAS了.
SQL DICTIONARY TABLES可以LIST所有TABLE的NAME.
PROC CONTENTS 可以在OUTPUT 中LIST所有的TABLE NAME.
多谢!
【在 p********a 的大作中提到】 : define sas library with oracle engine and get the sashep.vcolumn : or use dictionary tables or use proc contents _all_ option.
|