SAS Viya is an exciting addition to the SAS Platform, allowing you to conduct analysis faster than ever before and providing you the flexibility to utilize open source technologies and generate insights from data in any computing environment. The blog …
Tag: sas administration
A custom task to list and stop your SAS sessions
Last week I described how to use PROC IOMOPERATE to list the active SAS sessions that have been spawned in your SAS environment. I promised that I would share a custom task that simplifies the technique. Today I’m sharing that task with you. How to get the SAS Spawned Processes […]
The post A custom task to list and stop your SAS sessions appeared first on The SAS Dummy.
Using PROC IOMOPERATE to list and stop your SAS sessions
If you’re a SAS administrator, you probably know that you can use SAS Management Console to view active SAS processes. These are the SAS sessions that have been spawned by clients such as SAS Enterprise Guide or SAS Add-In for Microsoft Office, or those running SAS stored processes. But did […]
The post Using PROC IOMOPERATE to list and stop your SAS sessions appeared first on The SAS Dummy.
Fencing in your SAS users with LOCKDOWN
SAS administrators now have another tool to keep SAS users from straying off their permitted path: the LOCKDOWN system option. The option was introduced in “stealth mode” for SAS 9.4. In SAS 9.4M1, it became a true, documented option. For the official guide to creating “locked-down servers”, see the SAS […]
Using Windows PowerShell to find registered tables and columns in SAS metadata
In a previous post, I described how to write a Windows PowerShell script to connect to a SAS Metadata Server. In this post, I’ll show an example of something useful that you can do after you’ve established that connection. Specifically, I’ll show how to “ask” the SAS Metadata Server about […]
Controlling access to custom tasks in SAS Enterprise Guide
I’ve bragged about how easy it is to install custom tasks for SAS Enterprise Guide. It’s simple: you copy the .NET assembly (usually a single DLL file) into one of the designated folders in your SAS Enterprise Guide installation, and your task just shows up in the menu. Since I […]
Calling Windows PowerShell from SAS: a simple example
As I mentioned in my introductory post about Windows PowerShell, you can use PowerShell commands as a simple and concise method to collect data from your Windows systems; information that is ripe for analysis within SAS. In this example, I’ll show a technique for using a SAS program to call […]
Running Windows PowerShell Scripts
Windows PowerShell is one of my favorite tools to use for gathering information from my PC and network, and also for automating processes. If you are familiar with UNIX shells (such as Korn shell or its variants), you will probably be very comfortable with Windows PowerShell. Just like its UNIX […]