Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Oracle Secure Workspace login with Active Directory

user13038156Jan 5 2016 — edited Jan 5 2016

HI All,

By default, Oracle Secure Workspace login by userPrincipalName which map with Activity directory but I really want to change it to SAMUserName or email attribute.

I would like to know how to do it?.

Thanks,

Regards,

Minh Le

Comments

Gary Graham-Oracle

From a worksheet, using Run Script (F5), you can do something like this if connected to the seeded HR schema:

spool C:\Temp\countries.lst

select /*csv*/ * from countries;

spool off

spool C:\Temp\departments.lst

select /*csv*/ * from departments;

spool off

spool c:\Temp\employees.lst

select /*csv*/ * from employees;

spool off

Hope this helps,

Gary

1 - 1

Post Details

Added on Jan 5 2016
0 comments
773 views