Date: Thu, 20 May 2004 09:04:41 -0700
Reply-To: "Choate, Paul@DDS" <pchoate@DDS.CA.GOV>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Choate, Paul@DDS" <pchoate@DDS.CA.GOV>
Subject: Re: What SAS products are Licensed on a machine
Right Toby, I found the SETINIT option very nicely documented, but not the
proc setinit and the alias option.... I looked at the online docs, the
install docs at SAS, and around SAS-L a bit.
You have better luck?
Paul Choate
DDS Data Extraction
(916) 654-2160
-----Original Message-----
From: Dunn, Toby [mailto:tdunn@tea.state.tx.us]
Sent: Thursday, May 20, 2004 8:47 AM
To: Choate, Paul@DDS; SAS-L@LISTSERV.UGA.EDU
Subject: RE: Re: What SAS products are Licensed on a machine
Just for you Paul,
From the v8 online docs:
SETINIT
------------------------------------------------------------------------
--------
Controls whether site license information can be altered
Valid in: configuration file, SAS invocation
Category: System administration: Installation
PROC OPTIONS GROUP= INSTALL
------------------------------------------------------------------------
--------
Syntax
Syntax Description
Details
------------------------------------------------------------------------
--------
Syntax
SETINIT | NOSETINIT
Syntax Description
SETINIT
In a windowing environment, allows the SETINIT window to be displayed so
that you can make changes. In a non-windowing environment, SETINIT
enables you to change license information by running the SETINIT
procedure.
NOSETINIT
does not allow you to alter site license information after installation.
------------------------------------------------------------------------
--------
Details
SETINIT is set in the installation process and is not normally changed
after installation.
Chapter Contents
Previous
Next
Top of Page
Copyright 1999 by SAS Institute Inc
HTH
Toby Dunn
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
Choate, Paul@DDS
Sent: Thursday, May 20, 2004 10:38 AM
To: SAS-L@LISTSERV.UGA.EDU
Subject: Re: What SAS products are Licensed on a machine
Good question - I was trying to find documentation for proc setinit and
its
alias option and couldn't. Any clues?
Paul Choate
DDS Data Extraction
(916) 654-2160
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
Copeland, Laurel
Sent: Thursday, May 20, 2004 5:01 AM
To: SAS-L@LISTSERV.UGA.EDU
Subject: Re: What SAS products are Licensed on a machine
Why does
Proc setinit; run; *see 1 below;
give a different (less detailed) listing than
Proc setinit noalias; run; *see 2 below;
?
/* LOG
1 proc setinit; run;
NOTE: PROCEDURE SETINIT used:
real time 0.06 seconds
cpu time 0.01 seconds
Original site validation data
Site name: 'VA HEALTH SVC RESEARCH & DEVELOPMENT'.
Site number: 38844026.
Expiration: 30SEP2051.
Grace Period: 62 days (ending 01DEC2051).
Warning Period: 31 days (ending 01JAN2052).
System birthday: 23NOV1992.
Operating System: WIN .
Product expiration dates:
---USERBPKGF 30SEP2051
---SAS/STAT 30SEP2051
2 proc setinit noalias; run;
NOTE: PROCEDURE SETINIT used:
real time 0.00 seconds
cpu time 0.00 seconds
Original site validation data
Site name: 'VA HEALTH SVC RESEARCH & DEVELOPMENT'.
Site number: 38844026.
Expiration: 30SEP2051.
Grace Period: 62 days (ending 01DEC2051).
Warning Period: 31 days (ending 01JAN2052).
System birthday: 23NOV1992.
Operating System: WIN .
Product expiration dates:
---Base Product 30SEP2051
---SAS/STAT 30SEP2051
---SAS/GRAPH 30SEP2051
---SAS/FSP 30SEP2051
---SAS/ASSIST 30SEP2051
---SAS/CONNECT 30SEP2051
---SAS/ACC-PC File Formats 30SEP2051
---PRODNUM244 30SEP2051
END LOG*/
Thanks, Laurel