| Date: | Fri, 25 Jul 1997 20:04:23 GMT |
| Reply-To: | "William T. Chittenden" <chittenden@NIU.EDU> |
| Sender: | "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU> |
| From: | "William T. Chittenden" <chittenden@NIU.EDU> |
| Organization: | Northern Illinois University |
| Subject: | Never ending PROC REG under Windows 95 |
|---|
I am sure this is an easy one that I just can't figure out. I have
recently migrated to using SAS under Windows 95 from using it under MVS. I
have a relatively simple program:
OPTIONS LS=78;
DATA STATION;
INFILE 'C:\SAS\PROGRAMS\HEIN\RATES.DAT';
INPUT Month $ Year ITX PWTX CTX T01 T05 T10 T20
M01 M05 M10 M20 MCP LCP;
*1 YEAR RATES UNADJUSTED;
PROC REG;
MODEL M01=T01;
RUN;
After I submit the program, "PROC REG running" continues to appear in the
title bar. It seems to run until another proc or data statement is
submitted. The log file does not show how much time the proc reg procedure
took until I run a program again (thus submitting another data and proc
statement). I never had this type of problem under MVS. Is there some
final statement I should have in the program to get it to "finish"? Any
help would be greatly.
Thanks
--
Dr. William Chittenden
Northern Illinois University
Department of Finance
DeKalb, IL 60115
chittenden@niu.edu
|