![]() Chapter Contents |
![]() Previous |
![]() Next |
| VALIDVARNAME |
| Default: | V7 |
| Valid in: | configuration file, SAS invocation, OPTIONS statement, OPTIONS window, STARTSAS statement, STARTSAS window |
| Syntax | |
| SAS/ACCESS Specific Details | |
| Example |
Syntax |
| VALIDVARNAME=V7 | V6 | UPCASE | ANY |
| SAS/ACCESS Specific Details |
For more information on SAS naming conventions, see SAS Names and Support for DBMS Names and system options in the SAS Language Reference: Dictionary.
| Example |
The following example shows how the PROC SQL Pass-Through Facility works with VALIDVARNAME=V6.
options validvarname=v6;
proc sql;
connect to oracle (user=testuser pass=testpass);
create view myview as
select amount_b amount_s
from connection to oracle
(select "Amount Budgeted$", "Amount Spent$"
from mytable);
quit;
options validvarname=v6;
proc contents data=myview;
run;
![]() Chapter Contents |
![]() Previous |
![]() Next |
![]() Top of Page |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.