-
Hi all, I'm using this in Openshift but I don't think that is relevant, still... First using the APPL_USER environment
Somehow, I don't think this is being picked up because I don't see it on my logs when the container starts.
So, we can also see that it does pickup my users from the script. It's not exactly like the example, but I have this:
But my problem is that I cannot connect to the db with sqlplus using my user.
As you can see my user is not created. However, I can create a similar user from SQL plus (as I did user DFLOW1)
This leads me to believe the users might have been created somewhere else or stuck in some limbo. Can someone give me some pointers? Maybe this is just a fundamental lack of know-how on Oracle on my side. I could use the script for create user, I could do this after the container starts, but I think it would not do what I need because it's missing some of the privileges.
I also can't login even with this user:
And after I select from the table is nothing there. I think this might just be my issue, if I select from sqlplus I get:
I was expecting XEPDB1 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I guess I figured out the problem is that by default the sql plus always connect to XE instead of XEPDB1 If I connect to XEPDB1 I see all my users there...
|
Beta Was this translation helpful? Give feedback.
I guess I figured out the problem is that by default the sql plus always connect to XE instead of XEPDB1
If I connect to XEPDB1 I see all my users there...