BookmarkSubscribeRSS Feed
Rakesh93
Calcite | Level 5
While validating my dataset, it's showing Variable length is too long for actual data.
5 REPLIES 5
PGStats
Opal | Level 21

You can either create a new dataset with a LENGTH statement for your variable, or use the ALTER TABLE statement in PROC SQL with the MODIFY clause to change the variable length in your original table.

 

Example:

 

/* create example table */
data class; set sashelp.class; run;

/* Modify length of variable NAME */
proc sql;
alter table class 
modify name character(6);
quit;
PG
Rakesh93
Calcite | Level 5
Pls tell me any macro available for trucation??
PaigeMiller
Diamond | Level 26

@Rakesh93 wrote:
Pls tell me any macro available for trucation??

 

Are you asking about macros because you have a lot of variables to truncate? If so, please explain further.

--
Paige Miller
PGStats
Opal | Level 21

No macro needed, please refer to edited message above.

PG

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 5 replies
  • 2865 views
  • 1 like
  • 4 in conversation