CMU - How to map multiple AD Groups to a single DB User?
Hello,
How can we map multiple AD groups to a single DB user? See below example.
AD Groups - Sales, Marketting
DB User - Market_Sale
Market_Sale --> Sale,Marketting
Unable to find the right syntax, tried the following for example, the command works, but the authentication fails with "ORA-01017: invalid username/password; logon denied"
create user Market _Sale identified globally as 'CN=sales,OU=groups,dc=samplecorp,dc=com,CN=Marketting,OU=groups,dc=samplecorp,dc=com';
Is it even possible to map multiple groups to a single DB user? Please point me towards the correct syntax.
Thanks