BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
naveenraj
Quartz | Level 8

Hi ,

 

I have a sas dataset with some columns. I need to change the variable name of the dataset as that variable name is producing an error when i am trying to register the table in metadata. How can i rename the variable if i know only part of the variable name.

 


Regards,

Naveen

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

Do the following in a program window first:

data dataset;
set dataset;
rename 'test?_name'n = test_name;
run;

You should then be able to register the dataset.

It may be necessary to copy the variable name from the proc contents output and paste it into the string delimited by the single quotes, to avoid problems by different character representations.

View solution in original post

6 REPLIES 6
LinusH
Tourmaline | Level 20

What do you mean that you only know a part of the name?

What kind of error do you get during registration?

Please show the real life example/elaborate more about the situation.

Data never sleeps
naveenraj
Quartz | Level 8

ERROR: Character is unclassifiable.

 

I think this is because of column name. so only i was asking how to rename a column. On seaching column name using proc content i got name as 

 

test?_name of type num and length 8.

 

Kurt_Bremser
Super User

Do the following in a program window first:

data dataset;
set dataset;
rename 'test?_name'n = test_name;
run;

You should then be able to register the dataset.

It may be necessary to copy the variable name from the proc contents output and paste it into the string delimited by the single quotes, to avoid problems by different character representations.

LinusH
Tourmaline | Level 20

If this is a SAS dataset, you generally use PROC DATSETS to do this.

But you should be able to see the actual columns name if you issue a non-mete libname to the loaction of your SAS data files.

What is the setting of validvarname in the environment? And where did this data got created?

Data never sleeps
naveenraj
Quartz | Level 8

how to check the setting of validvarname. Sorry i have not changed any system settings in my environment. So i am not sure which autoexec file should i check

LinusH
Tourmaline | Level 20
It's paramount to understand how and where system options are set.
Proc options;
Run;
Will give you the current setting in the workspace server (given execution in EG or DI Studio).
The setting "could" be different in the Metadata server, but that's unlikely if you haven't changed anything since initial setup.
Data never sleeps

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 6 replies
  • 9658 views
  • 1 like
  • 3 in conversation