Ok, I'm attempting to speed up and better codify my login processes. Some things that must be:
1. Have to use linked Oracle tables
2. Login credentials for app have to be used for connecting to Oracle tables
So what I was doing, was deleting the old linked tables and re-establishing the linked tables using login credentials so every time the tables are hit the current user creds are used for the connection. The problem is this takes too long to delete and re-establish in order to use users login/pass in the Oracle connection.
The goal would be merely to set up the old linked tables with the new user's logon/pass and not actually refresh them or recreate them, rather set them to the logon/pass info is available when the app hits them for data. The Oracle connection is persistent so once logged in it stays up for duration of app use.
How can I set up persistent logon info for linked oracle tables to be used throughout the app without having to refresh the links or recreate the tables with the new logon/pass info?