Search the Community
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
1,224 results
Sorted by:
03-24-2020
12:20 AM
11 Likes
...f two data libraries instead of just two data sets. The report indicates any new or lost data sets, variables or observations and checks for changed data values within all variables.&n...
AD-142.pdf (332 KB)
AD-142-slides.pdf (1,289 KB)
03-23-2019
11:40 PM
14 Likes
...uick and concise way to summarize incoming or outgoing data that allows the user to get a grasp of the number of datasets, number of variables, and number of observations included in the library as w...
data_specs_example.xlsx (348 KB)
2992-2019.pdf (622 KB)
2992-2019 final presentation.pdf (1,052 KB)
DV-004.pdf (288 KB)
DV-004-slides.pdf (1,248 KB)
09-11-2025
11:32 PM
SAS Enterprise Session Monitor provides a wealth of information on a SAS Viya platform. It can also provide detailed information on a SAS SpeedyStore deployment. This post is a follow-on from my p...
- Find more articles tagged with:
- GEL
- SAS SpeedyStore
10-16-2014
07:29 AM
1 Like
How to delete every observation in each dataset in a specific lib. PROC DELETE delete all the data set, what i need is to delete all the data set observations not the data sets it self.
a week ago
...rometheus to enhance observability and operational readiness.
New Pre-Configured Grafana Alerts
Beginning in version 1.2.38 (June 2025), the monitoring deployment s...
- Find more articles tagged with:
- administration
- alerting
- alerts
- GEL
- grafana
- monitoring
- observability
03-17-2021
12:02 PM
How to count observations for each dataset in a library using macros
03-02-2022
12:34 PM
...ongest string of nonblank characters.
Then I created another macro, %SQZ_LIBRARY, that invokes the %SQUEEZE macro on all of the SAS datasets contained in a SAS data library. It is available a...
Papers_Bettinger_R_74821.pdf (150 KB)
08-16-2022
11:32 AM
...vailable or not?
2. if the 'Expense' dataset available then check for is there any observations available or not.(Note: March library have the dataset but no observations in it.)
Ps: We have t...
12-26-2018
01:23 PM
I need a list of all datasets in a library but showing number of observations of each one Like: proc datasets library=libname; run; But showing the number of observations of all datasets. Do y...
01-03-2025
02:50 AM
...emtype
from dictionary.tables
where libname = 'LIB1' /* Change to your library name if different */
and nobs = 0 /* Filters datasets with zero observations */;
quit;
Here I created 100 d...