Functions and CALL Routines |
Valid in: | DATA step, PROC SQL, and SCL |
Syntax | |
Arguments | |
Details | |
Example |
Syntax |
DQSRVUSER(user-ID, password) |
identifies a user-ID according to the registry in a DataFlux Integration Server.
authenticates the associated user-ID user according to the registry in the DataFlux Integration Server. The password can be plain text or SAS encoded.
Details |
The DQSRVUSER function authenticates a user on a secure DataFlux Integration Server. A return value of zero indicates successful authentication. A return value of 1 indicates a failure to authenticate.
Call this function as needed in a single DATA step to access different Integration Servers or to change authorizations within a single Integration Server.
If security has not been configured on a DataFlux Integration Server, then the DQSRVUSER function has no effect.
Return values are 0 (successful authentication) or 1 (failed to authenticate).
Example |
The following example supplies a user identifier and a password to a secure DataFlux Integration Server:
rc= dqsrvUser('dfUser3',''pwdUser3');
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.