Category: SAS

Web Report Studio: Where are the row numbers?

There are times when you need row numbers on your report. Maybe you are ranking items and you want to be clear that the list is ranked or maybe you have a report viewer who only feels the report is…

[[ This is a content summary only. Visit my websit…

Using SQL for data management

Every weekday I pull out data from IBM DB2 database and do analysis in SAS. I use SQLite to record my personal chores, such as credit card transactions. And I am taking courses of database development by Microsoft SQL Server. Then I have pretty enough…

NOTE: The Hits of 2011

To join all of the others on the internet, here’s an “end of year” list… Blogger tells me that the most popular posts on the NOTE: blog this year were:

1. NOTE: SAS Global Forum 2011 – Update #3, 1,069 page views
2. NOTE: SAS Global Forum …

SAS and IWA (Integrated Windows Authentication) Notes

Over the past year I have worked on a number of SAS® 9.2 platform installations helping to get Integrated Windows Authentication (IWA) working nicely for single sign-on (SSO) for the SAS platform. Whilst it’s relatively easy to turn IWA on, …

Popular Posts, Stats, and Other Musings from 2011

 Since September, Angela and I have been actively posting on this blog about the SAS Business Intelligence toolset. It has been a lot of fun and thanks to all of your  encouragement and kind comments. I’ll share some stats with you data geeks t…

SAS Macro to Make Tiny URLs

Someone on SAS-L wanted a piece of SAS code to convert a long url to a short one. Well, here you go:filename in “x:\temp\in”;filename out “x:\temp\out.txt”;%macro MakeTiny(longUrl=); data _null_; file in lrecl=1028; put “url=&longUrl” ; ru…

NOTE: Decoding the _TYPE_ Variable (Golden Oldies)

Our mini-series of hints and tips from past decades continues with 1999…

Appearing in the same issue of The Missing Semicolon (TMS) was i) an advertisement for Year 2000 Support (do you remember “Y2K”?), and ii) an article entitled “Decoding the _TY…