Previous Page | Next Page

Functions and CALL Routines

DQSRVUSER Function



Authenticates a user on a DataFlux Integration Server.
Valid in: DATA step, PROC SQL, and SCL

Syntax
Arguments
Details
Example

Syntax

DQSRVUSER(user-ID, password)

Arguments

user-ID

identifies a user-ID according to the registry in a DataFlux Integration Server.

password

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.


Example

The following example supplies a user identifier and a password to a secure DataFlux Integration Server:

rc= dqsrvUser('dfUser3',''pwdUser3');

Previous Page | Next Page | Top of Page