These examples show
how to make the proper connection by using the USER= and PASSWORD=
connection
options. Teradata requires these options,
and you must use them together.
This example shows how
to connect to a single or NULL realm.
libname x teradata user=”johndoe@LDAP” password=”johndoeworld”;
Here is an example of
how to make the connection to a specific realm where multiple realms
are configured.
libname x teradata user=”johndoe@LDAPjsrealm” password=”johndoeworld”;
Here is an example of
a configuration with a single or NULL realm that contains a password
with an embedded @ symbol. The password must contain a required backslash
(\), which must precede the embedded @ symbol.
libname x teradata user="johndoe@LDAP" password="johndoe\@world"