SAS Enterprise Guide

Desktop productivity for business analysts and programmers
BookmarkSubscribeRSS Feed
ArcheeSh
Calcite | Level 5

Hi everybody! I'm using EG 6.1

I have the following problem with csv import: In CSV file some columns contain russian text. When I choose english language in EG properties, the import process is OK but the output looks like in the picture:undefined

When I choose russian language in EG properties, the import is not processed and i get the following error:

undefined

How can I get the correct data? I've tried lots of ways that I've found in google and on this Forum but nothing was helpful(

Thanks in advance!!!

2 REPLIES 2
ChrisHemedinger
Community Manager

You're get this error when the text in the file contains characters that cannot be mapped to the SAS session encoding.  Your SAS session might be running in wlatin or latin1 -- or some other encoding that cannot handle the mix of characters.

 

The best approach is to run SAS with ENCODING of UTF8.  To do that, the SAS command would need to change to reference the ../nls/u8/sasv9.cfg file as the configuration.  In a centralized SAS environment, you'll have to coordinate that with a SAS administrator and potentially any colleagues who use the same SAS environment.  But if national characters are a common requirement, that's the proper thing to do.

 

Register for SAS Innovate 2025!! The premier event for SAS users, May 6-9 in Orlando FL. Sign up now for the best deals!
Ksharp
Super User
Another way is changing encoding of CSV file before importing it :


filename x 'c:\temp\x.csv' encoding='utf-8';
proc import ..............



sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

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