Mike Thomas, SAS Software Manager, BI Dashboards & Mobile Technologies talks about the new development for the Blackberry and iPhone. Web Links: SAS.com: http://www.sas.com/apps/webnet/SGF2009VideoBlog/index.html?videoID=isgf09ep19
Tag: Business Intelligence
Inside SAS Global Forum 2009: Ep.19 - Mobile Technologies
LSF Users Guide
I’ve never found a great user guide, not to say that one doesn’t exist. You should be able to schedule any type of executable/job like a batch file from using the Platform LSF client tools (packaged with the server tools). You can also use command line executables like bsub and
Grabbing the Data Creation Date
The data table creation date is sometimes necessary, say in the footnote of your stored process. Included below is a sample to retrieve this date from the file system. /*Open the dataset*/ %let dsid=%sysfunc(open(sashelp.shoes)); data _null_; /*grab the CRDTE function*/ ddate=%sysfunc(attrn(&dsid;,CRDTE )); /*Format in DDMONYY*/ call symput('ddate', put(ddate, dtdate9.)); run;