Hi,
I have a new sql server table data source that I need to query but several of the variables have hyphens in the variable names.
I am using a SAS pass through query to access the SQL Server database/view.
How do I get SAS to accept the non standard names? I plan on renaming to change the hyphen to an underscore but right now I cannot even read them in.
Any assistance will be greatly appreciated.
Thanks,
Elliott
If you use this option SAS will automatically change the column names from hyphens to underscores when reading these tables:
options validvarname = V7;
If you need to refer to the original names in code then do this 'LETTER-REF-NUM'n
If you use this option SAS will automatically change the column names from hyphens to underscores when reading these tables:
options validvarname = V7;
If you need to refer to the original names in code then do this 'LETTER-REF-NUM'n
I have tried options validvarname = V7; and options validvarname = any; neither work, still erroring with not valid SAS name.
@Elliott wrote:
I have tried options validvarname = V7; and options validvarname = any; neither work, still erroring with not valid SAS name.
This should work. Please provide the code and log where you still encounter errors.
I was able to read in the data using "LETTER-REF-NUM"n
Thanks All for your help.
Elliott
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.