Date: Wed, 6 Jan 1999 11:44:45 +0100
Reply-To: "Becker, Eckhard [IAW-04]" <EBecker@VHV.DE>
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: "Becker, Eckhard [IAW-04]" <EBecker@VHV.DE>
Subject: Re: SAS/Connect Problem
Content-Type: text/plain
> -----Original Message-----
> From: Sarita Bedge [SMTP:sbedge@BCIDAHO.COM]
> Sent: Tuesday, January 05, 1999 10:42 PM
> To: SAS-L@AKH-WIEN.AC.AT
> Subject: Re: SAS/Connect Problem
> I have to provide the ip address of the server first.
> Here is the code I submit to connect to a NT server.
>
> %let dwserver = 10.100.5.28;
> filename rlink 'c:\sas\connect\saslink\tcpwin.scr';
> options comamid = tcp remote = dwserver;
> signon;
>
The %let-stmt is only needed, when the PC can not resolve the
server-name.
When a ping to dwserver works, it should run without to %let.
|