![]() Chapter Contents |
![]() Previous |
![]() Next |
| SAS/ACCESS Software for Relational Databases: Reference |
The SAS/ACCESS data set options are as follows:
| DBCOMMIT= | |
| DBCONDITION= | |
| DBCREATE_TABLE_OPTS= | |
| DBFORCE= | |
| DBGEN_NAME= | |
| DBINDEX= | |
| DBKEY= | |
| DBLABEL= | |
| DBNULL= | |
| DBPROMPT= | |
| DBTYPE= | |
| ERRLIMIT= | |
| NULLCHAR= | |
| NULLCHARVAL= | |
| READ_LOCK_TYPE= | |
| SASDATEFMT= | |
| UPDATE_LOCK_TYPE= |
| CNTLLEV= | |
| DROP= | |
| FIRSTOBS= | |
| IN= | |
| KEEP= | |
| OBS= | |
| RENAME= | |
| WHERE= |
In this example, the DROP= option causes the SAS/ACCESS engine to omit the SALARY column when it reads the MYDBLIB.EMPLOYEES table.
libname mydblib db2 ssid=db2 authid=sasdemo; proc sql; select * from mydblib.employees(drop=salary) where dept='ACC024'; quit;
![]() Chapter Contents |
![]() Previous |
![]() Next |
![]() Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.