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

I am trying to append/merge several files and i have this warning message"

Data gompers.gompers_2001_2011;

    set gompers.gompers_2000_2001

gompers.gompers_2002_2005

gompers.gompers_2006

gompers.gompers_2007_2009_my

gompers.gompers_2010_my;

    run;

WARNING: Multiple lengths were specified for the variable CONAME by input data set(s). This may

         cause truncation of data.

coname is the company name.

the length for this variable is 48 for the 3 original files and 70 for 2007_2009 and 2010 file.

how do i solve this problem. do i go back to all original file and increase the length-how do we write that codes?

1 ACCEPTED SOLUTION

Accepted Solutions
shivas
Pyrite | Level 9

Hi,

You can try like this...as 2007_2009 and 2010 file has maximum length.

Data gompers.gompers_2001_2011;

set gompers.gompers_2007_2009_my

gompers.gompers_2010_my;

   gompers.gompers_2000_2001

gompers.gompers_2002_2005

gompers.gompers_2006

   run;

or add length statement before set statement ;

Data gompers.gompers_2001_2011; length coname $ 70.;

    set gompers.gompers_2000_2001

gompers.gompers_2002_2005

gompers.gompers_2006

gompers.gompers_2007_2009_my

gompers.gompers_2010_my;

    run;

Thanks,

Shiva

View solution in original post

2 REPLIES 2
shivas
Pyrite | Level 9

Hi,

You can try like this...as 2007_2009 and 2010 file has maximum length.

Data gompers.gompers_2001_2011;

set gompers.gompers_2007_2009_my

gompers.gompers_2010_my;

   gompers.gompers_2000_2001

gompers.gompers_2002_2005

gompers.gompers_2006

   run;

or add length statement before set statement ;

Data gompers.gompers_2001_2011; length coname $ 70.;

    set gompers.gompers_2000_2001

gompers.gompers_2002_2005

gompers.gompers_2006

gompers.gompers_2007_2009_my

gompers.gompers_2010_my;

    run;

Thanks,

Shiva

Alpay
Fluorite | Level 6

SAS assigns the length of a variable when it is seen first time.

If the order of the data sets does not matter you can place the data sets with length 70 before the data sets with lenght 48 in set statement.

Data gompers.gompers_2001_2011;

    set

gompers.gompers_2007_2009_my

gompers.gompers_2010_my

gompers.gompers_2000_2001

gompers.gompers_2002_2005

gompers.gompers_2006

;

    run;

If the order of the data sets matters in set statement you can use a length statement before set statement to specify the length of the variable coname.

Data gompers.gompers_2001_2011;

  length coname $70;

    set gompers.gompers_2000_2001

gompers.gompers_2002_2005

gompers.gompers_2006

gompers.gompers_2007_2009_my

gompers.gompers_2010_my;

    run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 2 replies
  • 1396 views
  • 3 likes
  • 3 in conversation