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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by fraaha

  1. fraaha

    sas connect

    Hello from Paris, You can use some SAS/options like that : node=optgetc('remote'); /* to get the name of last remote host linked*/ msg=sysmsg(); put msg node; rc=rlink(node); if (rc=0) then msg='No link'; else msg='Link OK'; put msg; Alain Hartmann Lincoln
  2. fraaha

    PMML

    Just have a look : http://www.web-datamining.net/ It's a french WEBSITE !
  3. fraaha

    Verify data is all numbers.....

    data test; length x1 $ 7; x1='12b345'; if x1*1> . then put "*** OK"; else put "Nok"; run; This program don't post ERROR messages but Notes messages into the log.

Part and Inventory Search

Back
Top