Usage Note 23917: How to determine the SCHEMA for table(s) using SAS/ACCESS to OLE DB
To determine the
SCHEMA that is associated with a particular table or tables using SAS/ACCESS to OLE DB,
you can submit the following code. When submitted, the SAS data set called WORK.TABS
will contain a list of all tables the user has access to via OLE DB and the corresponding
SCHEMA associated with each table:
proc sql;
connect to oledb;
create table TABS as select table_schema, table_name
from connection to oledb (OLEDB::Tables);
quit;
Operating System and Release Information
| SAS System | SAS/ACCESS Interface to OLE DB | Windows | n/a | |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
| Type: | Usage Note |
| Priority: | low |
| Date Modified: | 2008-02-19 14:16:35 |
| Date Created: | 2004-03-29 11:01:53 |