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.

Validate Oracle User / Password with URL

A Md YApr 26 2022

Hello All
Does anyone know how to validate user and password of Oracle applications with URL?
We have an app where we connect to database and validate the details. But with new set of restrictions, I am asked to see if we can use the URL for the validation of user and password and fetch database details.
With the URL passed to the app -
1: We should be able to validate user name and password
2: Only when user name and password are valid then find the database details from URL and connect to database.
Can this be done?
Thanks in advance for any inputs on this.

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 Apr 26 2022
0 comments
269 views