|
地板

楼主 |
发表于 2006-3-1 21:25:27
|
只看该作者
additional questions :D
my EG is v3.
1, the login windows i am referring is the following code. end user need this to enter database, user id, and password.
2, can i use the EG administrator to llimit the user's access to library, such as project A1208?
3, my SAS and EG are all installed on PC, not server, then can i use the EG administrator to control end-user's screen from my computer? eg no. of tasks, user id and password to oracle db...
thx
DATA _null_;
length path $10. SCHEMA $10.;
path="OCPROD";
schema="S&study.$STABLE";
WINDOW LOGIN COLOR=GRAY
#2 @15 " Oracle Clinical Login"
#3 @15 "----------------------------------"
#5 @15 " USERNAME: "
USER $20. COLOR=WHITE ATTR=rev_video REQUIRED=yes " (ops$lastnamef)"
#7 @15 " PASSWORD: "
PASSWORD $20. COLOR=WHITE ATTR=rev_video REQUIRED=yes
#9 @15 " PATH: "
PATH $20. COLOR=WHITE ATTR=rev_video REQUIRED=yes
#11 @15 " SCHEMA: "
SCHEMA $20. COLOR=WHITE ATTR=rev_video REQUIRED=yes
;
DISPLAY LOGIN; |
|