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

I need to move my files from Windows -> Linux.  Same version of SAS (9.4 TS1M5).

 

When I run proc cport, I am getting the message:

ERROR: The variable name wk_net7_start is illegal for the version 6 file DEST.DATES.DATA.
NOTE: Set the VALIDVARNAME=V6 option to enable automatic truncation of long variable names.

How can I prepare the files for transfer without any naming truncation? 

1 ACCEPTED SOLUTION

Accepted Solutions
RobP
Quartz | Level 8

Turns out the problem was with my code.  I had:

 

proc cport library=source out=dest;
run;

 

... instead of...

 

proc cport library=source file=dest;
run;

 

Simple mistake to make (difficult to debug) as I previously was trying xport which uses the former convention.

View solution in original post

2 REPLIES 2
ballardw
Super User

Do you have some actual SAS version 6 data sets? That is what the error implies. In those data sets variable names are limited to 8 characters. You may need to look at the definition of the libraries involved.

 

As a minimum it might not hurt to show the actual code along with the error from log.

RobP
Quartz | Level 8

Turns out the problem was with my code.  I had:

 

proc cport library=source out=dest;
run;

 

... instead of...

 

proc cport library=source file=dest;
run;

 

Simple mistake to make (difficult to debug) as I previously was trying xport which uses the former convention.

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

How to Concatenate Values

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 2 replies
  • 1272 views
  • 1 like
  • 2 in conversation