Tag: Stored Processes

Angela Hall 0
Stored Process Pass-Thru Authentication

There are a couple of options with getting SAS Stored Processes to access Metadata Libraries. 1. Pre-Assignment of Libraries or Connecting as a Single (and therefore Shared) SAS User Account The pre-assignment of libraries means that when the Object Spawner is initiated, the libraries are made available to the end

Angela Hall 0
Security for .sas files used by SAS Stored Processes

(SAS 9.2 Implementations) When saving SAS Stored Processes, the 'sassrv' internal user account is used to write the physical .sas files on the server. Security of these files (to reduce the users from overwritting other's .sas stored processes) can be accomplished via the Resource Management plug-in for SAS Management Console.

Angela Hall 0
Suppress Code in STP Logs

Once you move to production, you really dont need all of that STP code in the system right? Here are two quick statements you can use to reduce the amount of logging done. options obs=max nosyntaxcheck; %let SYSCC=0; April 2008 UPDATE: Received a question concerning what is impacted by this

Angela Hall 0
Stored Process Manager Moved to BI Manager Plug-In

SAS Management Console Plug-in BI Manager "The "Stored Process Manager" has been replaced by the "BI Manager" in the SAS Management Console when running SAS 9.1.3 SP4 and later. The "BI Manager" contains all of the functionality (and more) that was present in the "Stored Process Manager." So, the "Stored

Angela Hall 1
Converting SAS/IntrNet into SAS Stored Processes

Earlier in the year, I attempted to convert to a SAS Stored Process a SAS IntrNet program that used statements such as: data _null_; set datatable; put 'html code here' variable item; run; However, it doesn't work when simply removing the SAS IntrNet headers (such as options, and ods html

Angela Hall 0
VB or Stored Process - Why is SAS better?

I have been attending a quality conference this week & found a gentleman who wrote 20,000 lines of VB code to allow users to generate graphs through an Excel GUI interface. After the presentation on his Visual Basic analytic system, I approached him to obtain the detail of his 8

Angela Hall 0
Resolution of Text Fields in Stored Processes

So you modified the SAS EG character formatted constraints to resolve automatically with surrounding single-quotes. (Seen below from Stored Process Wizard and Management Console screens.)                 Of course, the pain now is trying to pass dynamic parameters through the %stpbegin & %stpend statements.