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.
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
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
spool C:\Temp\countries.lst
select /*csv*/ * from countries;
spool off
spool C:\Temp\departments.lst
select /*csv*/ * from departments;
spool c:\Temp\employees.lst
select /*csv*/ * from employees;
Hope this helps,
Gary