Skip to Main Content

Infrastructure Software

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.

Hardware EOL

807557Nov 22 2004 — edited Nov 23 2004
Hi,
According to the release notes in Solaris 10 Beta 7, it states
that all Sun Ultra AX hardware platforms are no longer supported. Does this mean that all Sun MicroElectronics
AXi (Ultra IIi) CPU-based computers are also end-of-lifed?

Thanks,
Henry

Comments

221158
Create a procedure on the remote database to alter the user password. Parameterise password and username and call it over a db link

Christopher Soza
Oracle BI DBA
Orix Consultancy Services Ltd
b: http://sozaman.blogspot.com
MichaelS
Answer
You can try something like
declare
 job binary_integer;
begin
 dbms_job.submit@dblink1(job,'begin execute immediate ''alter user xy identified by ..... ''; end;');
end;
Marked as Answer by 660270 · Sep 27 2020
660270
Thank you very much, this was exactly what I was after, you are a super star. Using the dbms_job.submit works a treat.
338570
I used this method. I don't have errors, but password is not changed.
What is my problem?
Mary
1 - 4
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Dec 21 2004
Added on Nov 22 2004
1 comment
151 views