BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
JasonAng
Obsidian | Level 7

Hi,

 

After running proc product_status; run;  i got this in the log,

-----------

For Base SAS Software ...
Custom version information: 9.4_M7
Image version information: 9.04.01M7P080520
For SAS/STAT ...
Custom version information: 15.2
For SAS/GRAPH ...
Custom version information: 9.4_M7

------------

 

I want to ask what does it mean by "Custom version information: 9.4_M7" ? Does it mean i got customized (only selected) of the product purchased?

I have seen a thread on this before here: https://communities.sas.com/t5/New-SAS-User/SAS-9-4-licensed-installed-products-Questions/td-p/82142...

but it didn't answer if i am getting ala carte version or full version of the license ?

1 ACCEPTED SOLUTION

Accepted Solutions
JosvanderVelden
SAS Super FREQ
In SAS 9.4_M7 M7 identifies the maintenance release. SAS 9.4 is the product. For more information about this read: https://support.sas.com/software/maintenance/index.html

What do you mean by a-la-carte or full version? The license is for all the products included in the license. To see the licensed products you can run proc setinit. See also https://communities.sas.com/t5/SAS-Communities-Library/SETINIT-procedure/ta-p/475227

View solution in original post

4 REPLIES 4
JosvanderVelden
SAS Super FREQ
In SAS 9.4_M7 M7 identifies the maintenance release. SAS 9.4 is the product. For more information about this read: https://support.sas.com/software/maintenance/index.html

What do you mean by a-la-carte or full version? The license is for all the products included in the license. To see the licensed products you can run proc setinit. See also https://communities.sas.com/t5/SAS-Communities-Library/SETINIT-procedure/ta-p/475227
JasonAng
Obsidian | Level 7

Thanks Josvander,

 

I have this when i run proc setinit 

---SAS/ACCESS Interface to PC Files

 

and i get this when i run proc product_status

For SAS/ACCESS Interface to PC Files ...
Custom version information: 9.4_M7

 

My problem is that when i try to proc import a dbf file it says ---->non-supported file is specified

So i am wondering whether my license was customised? But if as you highlighted, i should have full license then i should be able to proc import dbf file.  I have also tried proc dbf but not able to do so because my dbf was not db=2, db=3, db=4, db=5 .

 

MarcoGhiglieri
Obsidian | Level 7
I don't think it's related to licensing.

Are you running on Linux or Windows?
Did you install the PC Files Server?
What's your code?
JasonAng
Obsidian | Level 7

Thank you guys.

 

The reason i started this thread was because i saw this thread here:

https://communities.sas.com/t5/SAS-Programming/How-to-import-dbf-file-into-sas/td-p/561827

 

i was having same issue as the poster of that thread where the error kept saying "non-supported file is specified". Of course i can do a workaround and convert my foxpro dbf file into csv and import it. But i believe in the power of SAS and there should be a solution.

 

Some of the comments there mentioned about the license part. Which led me want to check if the license when bought, if they were given partially or full based on some sales agreement. Since as mentioned that license would be given as full, i went on digging further and found a solution.

 

The solution was to put dbms=dbfmemo in the proc import statement.

PROC IMPORT OUT=WORK.TEST
    DATAFILE='orders.dbf'
    DBMS=DBFMEMO REPLACE;
RUN;

Thank you!

 

suga badge.PNGThe SAS Users Group for Administrators (SUGA) is open to all SAS administrators and architects who install, update, manage or maintain a SAS deployment. 

Join SUGA 

Get Started with SAS Information Catalog in SAS Viya

SAS technical trainer Erin Winters shows you how to explore assets, create new data discovery agents, schedule data discovery agents, and much more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 4 replies
  • 932 views
  • 1 like
  • 3 in conversation