Hi Erman,
I want to know how long time an information will be kept in the memory of an instance ? What is the process ? Particularly, apps users passwords if they were in use while a modification happened on them. Alos, is it valid (enough) to modify passwords apps passwords with: alter user xxx identified by yyyyy ? Regards, Latifa |
can we have a conflict between informations in the memory and real ones ?
can we arrange this just compiling some packages ? |
Administrator
|
You must use FNDCPASS or AFPASSWD to change apps password.
R12.2: Steps to Change the APPS, APPLSYS, and APPS_NE Password Using FNDCPASS or AFPASSWD (Doc ID 1674462.1) So, you must not change it with "alter user" command. The other questions are irrelevant, as Oracle database instance manages the memory properly. So it is transparent to users. Also , please revise the following questions -> (what is your reason for asking them?) can we have a conflict between informations in the memory and real ones ? can we arrange this just compiling some packages ? |
Hi Erman,
Thank your for your reply. 1. I am sorry, I didn't express well my question :) By saying apps users I wanted to say applicative users (like GL, AP or other specific users like xx...). So, I think it's the same as apps, we should use FNDCPASS to change pwd. 2. I modified some user password to install a specific package. But When I heard that we shouldn't modify it, I made back the changes with the value they gave me (of course with "alter user" ! :( and I am not proud with this action I know ). In the morning of the day after, I heard the coming story: customers have got the following error message while using oracle EBS (looking for some bills): Error_message.docx and after analysis, there was a problem about some standard packages which were invalid with the following error message: Invoice Validation did not process Invoice Id Due to Tax Error:140264, Line Number: ORA-04063: package body "APPS.FND_FLEX_EXT" has errors ORA-06508: PL/SQL: could not find program unit being called: "APPS.FND_FLEX_EXT" To solve the problem, Invalid objects were compiled however some of them couldn't be compiled: Error_message2.docx Explaination given to me when I came back to the office was: changing that password is the root cause of this issue (because Oracle kept in the memory the wrong password and that made a conflict some where ...) and they added that to solve the problem they have only compiled packages, I don't know how and which ones ! For me it's strange. . I know that there is dependence between objects but what is the role of the password in this ? The password change happened in the afternoon and customers problem happened in the morning. I don't believe that. This is why I am asking you to help me understand this. Where can I find informations to understand what happened and to see what was wrong. Thank you in advance for your help. Regards, Latifa |
Administrator
|
"Oracle kept in the memory the wrong password and that made a conflict some where" - > this is NOT TRUE.
The reason behind your errors should be something different. Some patching actions, some manual "alter" statements can be a cause for this. Check the invalid packages. Take one of them as an example. Check its dependencies(objects). Check that objects.. Check their last modification times (last ddl times) Check audit record (if enabled) I believe you can find the cause by following these kinds of approaches. |
Administrator
|
One scenario however could be this ->
t0 - there was a code running with that db user. t1 - the code goes into critical section (doing some apps level transaction -- not db level, but apps level) t2 - the code start doing its work. t3 - you change the password. t4 - the code still in its apps level transaction, but it designed to continue it with a new session. t5 - the code tries the get a new session with the db password (which is written in some file or in some other table in db) t6 - the code could not get the new session and its apps level transaction breaks.. this apps level transaction can be a routine that alter objects, recompile them and so on... So that may be a reason.. But even if it is so , I don't accept this explanation -> "Oracle kept in the memory the wrong password and that made a conflict some where " This means caching and if they are talking about the Oracle Database (by saying Oracle), it is not true. Tell them to give you the details about this expression. |
Administrator
|
:) however, as the documentation says: "Ensure that the entire Oracle E-Business Suite system has been shut down before changing any schema passwords", ->
so "any" is interesting.. there is something interesting with this.. Consider the things that I mentioned in my previous reply.. Update me with the outcome. |
Free forum by Nabble | Edit this page |