The INFOMAPS Procedure |
PROC INFOMAPS
<DOMAIN="authentication-domain"> <MAPPATH="location"> <METACREDENTIALS=YES|NO> <METAPASS="password"> <METAPORT=port-number> <METASERVER="address"> <METAUSER="user-ID">; |
Options |
specifies an authentication domain to associate the user ID and password with. If you do not specify an authentication domain, then the user ID and password are associated with the DefaultAuth authentication domain. For information about authentication, see "Understanding Authentication in the SAS Intelligence Platform" in SAS Intelligence Platform: Security Administration Guide.
specifies the location within the metadata server for the information map that you want to create, open, or delete. After the connection is made, the location is stored so that you do not need to specify it again on subsequent statements such as NEW INFOMAP, UPDATE INFOMAP, DELETE INFOMAP, SAVE, or EXPORT. However, if you do specify a location on a subsequent statement in the same PROC INFOMAPS step, then that location overrides the stored location.
Alias: | PATH= |
specifies whether the user ID and password specified in the METAUSER= and METAPASS= system options are retrieved and used to connect to the metadata server when the METAUSER= and METAPASS= options for the PROC INFOMAPS statement are omitted.
By default, or when METACREDENTIALS=YES is specified, the system option values are used if they are available when the corresponding options for the PROC INFOMAPS statement are omitted. Specify METACREDENTIALS=NO to prevent the INFOMAPS procedure from using the system option values.
A typical situation in which you would specify METACREDENTIALS=NO is when the code containing the INFOMAPS procedure is being executed on a workspace server or stored process server. In such cases, the METAUSER= and METAPASS= system options contain a one-time user ID and password that have already been used by the server. A new one-time password must be generated in this situation. Specifying METACREDENTIALS=NO enables a connection to be established under the identity of the client user using a new one-time password.
Default: | YES |
specifies the password that corresponds to the user ID that connects to the metadata server.
You can use the METAPASS= system option to specify a default password for connecting to the metadata server for the SAS session. See the METAPASS= system option in the SAS Language Interfaces to Metadata.
If your metadata server supports single sign-on, you can omit the METAPASS= and METAUSER= options and connect through a trusted peer connection or through Integrated Windows Authentication. For more information, see the SAS Intelligence Platform: Security Administration Guide.
Alias: | PASSWORD= | PW= |
Examples: |
metapass="My Password" metapass="MyPassword" |
specifies the TCP port that the metadata server is listening to for connections.
If this option is not specified, the value is obtained from the METAPORT= system option. See the METAPORT= system option in the SAS Language Interfaces to Metadata.
Alias: | PORT= |
Example: | metaport=8561 |
specifies the network IP (Internet Protocol) address of the computer that hosts the metadata server.
If this option is not specified, the value is obtained from the METASERVER= system option. See the METASERVER= system option in the SAS Language Interfaces to Metadata.
Alias: | SERVER= | HOST= |
Example: | metaserver="myip.us.mycompany.com" |
specifies the user ID to connect to the metadata server. The user ID is not case sensitive.
You can use the METAUSER= system option to specify a default user ID for connecting to the metadata server for the SAS session. See the METAUSER= system option in the SAS Language Interfaces to Metadata.
If your metadata server supports single sign-on, you can omit the METAUSER= and METAPASS= options and connect through a trusted peer connection or through Integrated Windows Authentication. For more information, see the SAS Intelligence Platform: Security Administration Guide.
Example |
proc infomaps domain="myDomain" metauser="myUserID" metapass="myPassword" metaserver="myip.us.mycompany.com" metaport=8561;
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.