Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Difference between SAS version 8.2 and 91.

Status
Not open for further replies.

saspgmr

Programmer
Feb 16, 2007
4
US
Hi,

Could any list down some differences between SAS version 8.2 and SAS version 9.1?

Thanks,
Zaheer

 
There is a whole publication that SAS put out listing the many differences. Some are how the SAS engine processes data, some involve new functions and statements.
New Functions that I can think of are:
strip()
regex()
and many more...

There is the new variable type HASH. Perl programmers will be familiar with this.

Here is a link to the PDF document that SAS has put out.
 
Version 9 can't access version 6 datasets directly, you have to use Proc Migrate to convert them.
Version 9 as Klaz says has a bunch of new functions included, my personal favourites are the CATX, and CATT functions.
There's also a nifty new ODS Tagset called EXCELXP which allows you to write output directly into an Excel Spreadsheet (sort of) and control the formatting, colours etc etc.
Migrating is relatively painless, we did it in a reasonable sized org with about 40 or so SAS Programmers in one evening. We actually installed version 9 a couple of months earlier and got a number of trusted users to run tests on the usual processes to make sure that everything was smooth. We found a couple of minor differences which affected output, specifically the way SAS handled NULL characters (ASCII 0) in data fields. Version 9 reads these as valid characters, whereas in version 8 these were considered to be empty fields, which caused a few variations in record counts etc. This shouldn't be an issue for most cases, however it can if you have some dodgy data (I did).

Chris
Business Analyst, Code Monkey, Data Wrangler.
SAS Guru.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top