Chapter Contents |
Previous |
Next |
SAS/ACCESS Interface to SYSTEM 2000 Data Management Software: Reference |
The options and statements you use with the ACCESS procedure depends on your task.
For example, to create an access descriptor:
proc access dbms=s2k; create mylib.employe.access; DATABASE statement; optional editing statement(s); run;
To create an access descriptor and a view descriptor:
proc access dbms=s2k; create mylib.employe.access; DATABASE statement; optional editing statement(s); create vlib.emppos.view; optional editing statement(s); run;
To create a view descriptor from an existing access descriptor:
proc access dbms=s2k accdesc=mylib.employe; create vlib.emppos.view; optional editing statement(s); run;
The procedure statements are described in the following sections.
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.