Matches DataFlux Authentication Server objects with an equivalent SAS Metadata Server objects and places the matches into the working set of export mappings. The MATCH statement name is followed by the type of object being matched for export. This object type can be DOMAIN, USER, or GROUP. The MATCH statement has two options, CRITERIA= and LOG.
specifies match criteria used to associate DataFlux Authentication Server objects and SAS Metadata Server objects for insertion into the working set of export mappings. The criteria must be valid SQL WHERE syntax that does not use the WHERE keyword. It must reference only the SQL entities available for the type of objects being matched.
Type
|
SQL Entities Available
in Match Criteria WHERE Clause
|
---|---|
DOMAINS
|
All columns in AS.DOMAINS
and META.DOMAINS
|
USERS
|
All columns in AS.USERS,
META.USERS, X.AS_LOGINS_N, and X.MS_LOGINS_N
|
GROUPS
|
All columns in AS.GROUPS
and META.GROUPS
|
Type
|
Default CRITERIA= value
|
---|---|
DOMAINS
|
(AS.DOMAINS.NAME_N=META.DOMAINS.NAME_N)
and (META.DOMAINS.AS_ID is NULL)
|
USERS
|
(X.AS_LOGINS_N.USER_ID=AS.USERS.ID)
and (X.MS_LOGINS_N.FQLN_N=X.AS_LOGINS_N.FQLN_N) and (META.USERS.ID=X.MS_LOGINS_N.OWNER_ID)
and (META.USERS.AS_ID is NULL)
|
GROUPS
|
(AS.GROUPS.NAME_N=META.GROUPS.NAME_N)
and (META.GROUPS.AS_ID is NULL)
|
specifies to print match results in the SAS log.