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

Hi all,

I have a issue with dataset. whenever i am trying to open some of the dataset in sas viewer and also in sas , i can not able to open the dataset it is pop up with a below window. but i can able to open the dataset with universal viewer.

sas.dataset_error.JPG

Could any one help, how to over come this issue..with out using updated viewers..

Thanks & Regards,

Yaswanth J.

1 ACCEPTED SOLUTION

Accepted Solutions
kuridisanjeev
Quartz | Level 8

Hi..

Have you used any format for this dataset??

If YES,make sure that format name length should not be exceed 8 character.That might cause the error..

Thanks & Regards.

Sanjeev.K

View solution in original post

5 REPLIES 5
Tom
Super User Tom
Super User

The only issue I have had when using SAS System Viewer 9.1 (the last one SAS released) is when trying to read 64 bit datasets created on Unix.  I can read 32 bit from Unix and 32 and 64 bit from Windows.

If you are creating the datasets that you cannot view with SAS Viewer then you might want to look into using the OUTREP setting.

*----------------------------------------------------------------------;
* Copying datasets adding compression and setting format to 32 bit ;
* so that they can be browsed from PC with SAS System Viewer. ;
*----------------------------------------------------------------------;
%let path=.;
options compress=yes ;
libname in "&path";
libname out "&path" outrep=solaris_32;

proc copy inlib=in outlib=out noclone datecopy memtype=data ;
run;

Doc_Duke
Rhodochrosite | Level 12

Try searching for

sv unknown error site:sas.com

with google.  There were a number of hits that might be pertinent.

yaswanthj
Fluorite | Level 6

Thanks TOM and DOC.., i will try..

Thanks & Regards,

Yaswanth J.

kuridisanjeev
Quartz | Level 8

Hi..

Have you used any format for this dataset??

If YES,make sure that format name length should not be exceed 8 character.That might cause the error..

Thanks & Regards.

Sanjeev.K

yaswanthj
Fluorite | Level 6

ohk great...its working..

Thanks Sanjeev..

Thanks,

Yaswanth J.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 5 replies
  • 2373 views
  • 3 likes
  • 4 in conversation