BookmarkSubscribeRSS Feed
SSG
Fluorite | Level 6 SSG
Fluorite | Level 6

I am running SAS 9.3 trying to import an SPSS file using the following SAS syntax:

PROC IMPORT OUT= WORK.StuEmp_raw

            DATAFILE= "L:\Student Employment\Data\IUPUI_Student_Employee_Survey_raw.sav"

            DBMS=SPSS REPLACE;RUN;

This SPSS file contains several String (Character) variables with a length of about 2,000.  This should be well within what a character variable in SAS can handle.  However, SAS is still breaking the text fields into multiple character variables with a length of $255 (i.e. the default).  I could dump the SPSS file into a .csv, but I'd like to maintain the labels on some other variables in the file. How can I specify the length of character variables when importing from SPSS?  Will I need to do a data step_ 

1 REPLY 1
ballardw
Super User

One approach might be:

Import as you have, modify settings like length and drop the multiple text bits for single variables. Save as a 0 observations data set.

Then import a CSV and append to the previous.

Or try accessing the SAV file using the libname statement instead of Proc Import.

If I had access to SPSS I would see about exporting to SAS from there. The last time I was working with SPSS one option would export the value labels as a SAS format for use as well.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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.

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
  • 1 reply
  • 1091 views
  • 1 like
  • 2 in conversation