Recent Activity
SAS Content Assessment 2025.04 Released!
Summary of 2025.04
The SAS 9 Profile for SAS Users and Groups report includes information about capabilities by role, application, and user.
SAS 9 Profile for SAS Libraries and Tables report has been updated and enhanced.
The import EG projects application can handle longer project names with multiple commas.
Enhancements have been made, performance has improved, and issues have been addressed across the applications.
... View more

0
0
True or False: These two programs generate the same result.
data work.invest;
capital=100000;
do until(Capital gt 500000);
Year+1;
capital+(capital*.10);
end;
run;
data work.invest;
capital=100000;
do while(Capital le 500000);
Year+1;
capital+(capital*.10);
end;
run;
?
a. True
b. False
... View more

0
1
SAS Viya on Microsoft Azure includes extensive online documentation, a learning portal with self-paced training courses, and access to this active SAS Community to answer your questions.
If you have questions or support needs as you use SAS Viya on Microsoft Azure, we invite you to post your question to this support forum. SAS experts are ready to reply with guidance to help you to learn and to help you to troubleshoot any challenges you encounter.
Essential resources
SAS documentation for SAS Viya on Microsoft Azure
Community support forum for SAS Viya on Microsoft Azure
Learning Center for SAS Viya for Microsoft Azure (linked from within the product, requires activation)
License terms (including policies for basic support)
... View more

4
38
Is it possible to query SAS datasets on a SAS Grid with the SAS ODBC Driver? I only have experience using the SAS ODBC Driver with PC SAS. If it is possible I would appreciate any configuration or connection tips. Thanks!
... View more

0
3
1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
NOTE: ODS statements in the SAS Studio environment may disable some output features.
69
70 %Let outpath=/ECRBM6/output;
71 %Let outpath=/home/u57597905/ECRBM6/output;
72 %Let StateName=California;
73
74 ODS PDF File="&outpath/ClaimsReport.PDF" style=sapphire pdftoc=1;
NOTE: Writing ODS PDF output to DISK destination "/home/u57597905/ECRBM6/output/ClaimsReport.PDF", printer "PDF".
75 ODS noproctitle;
76
77 ODS proclabel "Overall Date Issues";
78 Title 'Overall Date Issues in the Data Set';
79
80 proc freq Data=TSA.Claims_Cleaned;
81 Tables Date_Issue/nocum nopercent missing;
82 run;
NOTE: There were 220850 observations read from the data set TSA.CLAIMS_CLEANED.
NOTE: PROCEDURE FREQ used (Total process time):
real time 0.07 seconds
user cpu time 0.02 seconds
system cpu time 0.05 seconds
memory 3938.15k
OS Memory 32688.00k
Timestamp 04/19/2025 06:08:35 PM
Step Count 225 Switch Count 2
Page Faults 0
Page Reclaims 485
Page Swaps 0
Voluntary Context Switches 20
Involuntary Context Switches 2
Block Input Operations 0
Block Output Operations 272
83 title;
84
85 ODS Graphics on;
86 ODS proclabel "Overall Claims by Year";
87 Title "Claims per year of Incident Date";
88
89 Proc Freq Data=TSA.Claims_Cleaned;
90 Tables Incident_Date/ nocum nopercent plots=freqplot out=freq_out;
91 format Incident_Date year4.;
92 Where Date_Issue is null;
93
94 run;
NOTE: There were 216609 observations read from the data set TSA.CLAIMS_CLEANED.
WHERE Date_Issue is null;
NOTE: The data set WORK.FREQ_OUT has 16 observations and 3 variables.
NOTE: PROCEDURE FREQ used (Total process time):
real time 0.23 seconds
user cpu time 0.11 seconds
system cpu time 0.05 seconds
memory 16503.12k
OS Memory 46260.00k
Timestamp 04/19/2025 06:08:35 PM
Step Count 226 Switch Count 4
Page Faults 0
Page Reclaims 4108
Page Swaps 0
Voluntary Context Switches 285
Involuntary Context Switches 5
Block Input Operations 0
Block Output Operations 1328
95 Title;
96
97 /* Specific State Analysis */
98
99 ODS proclabel "&StateName Claims Overview";
100 Title "Claim Site, Claim Type, and Disposition for &StateName";
101
102 Proc Freq Data=TSA.Claims_Cleaned order=freq;
103 Tables Claim_Type
104 Claim_Site
105 Disposition/nocum nopercent;
106 where State="&StateName" and Date_Issue is null;
107 run;
NOTE: No observations were selected from data set TSA.CLAIMS_CLEANED.
NOTE: There were 0 observations read from the data set TSA.CLAIMS_CLEANED.
WHERE 0 /* an obviously FALSE WHERE clause */ ;
NOTE: PROCEDURE FREQ used (Total process time):
real time 0.00 seconds
user cpu time 0.00 seconds
system cpu time 0.00 seconds
memory 1949.56k
OS Memory 45996.00k
Timestamp 04/19/2025 06:08:35 PM
Step Count 227 Switch Count 0
Page Faults 0
Page Reclaims 243
Page Swaps 0
Voluntary Context Switches 6
Involuntary Context Switches 0
Block Input Operations 0
Block Output Operations 0
108 Title;
109
110 ODS proclabel "&StateName Close Amount Statistics";
111 Title "Close Amount Statistics for &StateName";
112
113 Proc Means Data=TSA.Claims_Cleaned sum mean min max maxdec=0;
114 Var Close_Amount;
115 where State="&StateName" and Date_Issue is null;
116
117 run;
NOTE: No observations were selected from data set TSA.CLAIMS_CLEANED.
NOTE: There were 0 observations read from the data set TSA.CLAIMS_CLEANED.
WHERE 0 /* an obviously FALSE WHERE clause */ ;
NOTE: PROCEDURE MEANS used (Total process time):
real time 0.00 seconds
user cpu time 0.00 seconds
system cpu time 0.00 seconds
memory 8325.93k
OS Memory 52176.00k
Timestamp 04/19/2025 06:08:35 PM
Step Count 228 Switch Count 0
Page Faults 0
Page Reclaims 1796
Page Swaps 0
Voluntary Context Switches 6
Involuntary Context Switches 0
Block Input Operations 0
Block Output Operations 0
118 Title;
119
120 ODS PDF close;
NOTE: ODS PDF printed 3 pages to /home/u57597905/ECRBM6/output/ClaimsReport.PDF.
121
122
123
124 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
134
... View more

0
4
Unanswered topics
These topics from the past 30 days have no replies. Can you help?
Subject | Likes | Author | Latest Post |
---|---|---|---|
0 | |||
0 | |||
0 | |||
0 | |||
1 | |||
0 | |||
0 | |||
0 | |||
0 | |||
0 |