The INDCONN macro variable
is used to provide credentials to connect to Aster
nCluster. You must specify user, password, and
either a DSN name or a server and database name. You must assign the
INDCONN macro variable before the
%INDAC_PUBLISH_MODEL macro is invoked.
The value of the INDCONN
macro variable for the
%INDAC_PUBLISH_MODEL macro has one of these formats:
USER=username PASSWORD=password DSN=dsnname <SCHEMA=schemaname>
USER=username PASSWORD=password DATABASE=databasename
SERVER=servername <SCHEMA=schemaname>
- USER=username
-
specifies the Aster nCluster user name (also called the user ID)
that is used to connect to the database.
- PASSWORD=password
-
specifies the password
that is associated with your Aster nCluster user ID.
Tip:Use only PASSWORD=, PASS=, or PW= for the password argument.
PWD= is not supported and causes an error.
- DSN=datasourcename
-
specifies the configured
Aster nCluster data source
to which you want to connect.
Requirement:You must specify either the DSN= argument alone, or the
SERVER= and DATABASE= arguments together in the INDCONN macro variable.
- DATABASE=databasename
-
specifies the Aster nCluster database that contains the tables and
views that you want to access.
Requirement:You must specify either the DSN= argument alone, or the
SERVER= and DATABASE= arguments together in the INDCONN macro variable.
- SERVER=servername
-
specifies the Aster nCluster server name or the IP address of the
server host.
Requirement:You must specify either the DSN= argument alone, or the
SERVER= and DATABASE= arguments together in the INDCONN macro variable.
- SCHEMA=schemaname
-
specifies the schema
name for the database.
Default:your default schema. To determine your default schema
name, use the show search_path command from
the Aster Client Tool (ACT).
Restriction:The SCHEMA argument is valid only for Aster nCluster 4.6. For Aster nCluster 4.5, the scoring model XML files are published to the PUBLIC
schema.
Tip
The INDCONN macro variable
is not passed as an argument to the
%INDAC_PUBLISH_MODEL macro. This information can be concealed in your SAS
job. You might want to place it in an autoexec file and set the permissions
on the file so that others cannot access the user ID and password.