gpt4 book ai didi

oracle - 如何在多个 Oracle 数据库中更改密码?

转载 作者:行者123 更新时间:2023-12-04 17:41:57 25 4
gpt4 key购买 nike

是否有允许我在多个 Oracle 数据库中更改密码的工具?

它每个月到期,我想同时更改它们。

最佳答案

有时,最简单的可能是最好的。使用如下所示的替换变量创建 SQL*Plus 脚本:

connect myuser/&&oldpass@db1;
alter user myuser identified by &&newpass replace &&oldpass;
connect myuser/&&oldpass@db2;
alter user myuser identified by &&newpass replace &&oldpass;
connect myuser/&&oldpass@db3;
alter user myuser identified by &&newpass replace &&oldpass;
-- and so forth through your list of instances

(当然,您可以将“myuser”替换为您的用户 ID,将“db1”等替换为您的 SQL*Net 别名。)构建脚本。运行它,输入一次旧密码和新密码,它将全部更改。每次添加或删除数据库时都需要编辑脚本,但这应该很少见。请注意,密码将在运行时在屏幕上可见。

关于oracle - 如何在多个 Oracle 数据库中更改密码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1890310/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com