在Oracle数据库中修改密码时,包含特殊字符是完全可行的,并且通常被推荐以增强密码的安全性。以下是关于如何在Oracle中修改包含特殊字符的密码的详细解答: 1. 了解Oracle数据库修改密码的基本方法 在Oracle数据库中,你可以使用ALTER USER语句来修改用户密码。基本语法如下: sql ALTER USER 用户名 IDENTIFIED BY 新密码;...
5.connect/as sysdba; 6.alter user 用户名 identified by 新密码; //密码中含有特殊字符,如@!#,需要将密码加上双引号 7.ALTER USER 用户名 ACCOUNT UNLOCK; 8.commit; 注意:如果没有7,8的话,你的操作就会导致该用户名被锁定。 报错ORA-28000: the account is locked 如果只有第七步,没有第八步,在你...
1.创建测试用户 create user testdb identified by "testdb@"; grant connect,resource to testdb; grant unlimited tablespace,create session to testdb; alter user testdb identified by "test$db@"; 查看用户权限 select * from dba_sys_privs; select * from dba_role_privs; select * from dba_tab_...
♣ 答案部分 当Oracle用户密码含有特殊字符(例如,&、@、$等)的时候,SQL*Plus和exp或expdp等工具进行登录的时候在写法上有很大的差异。 若密码不含“&”符号,则可以使用双引号将密码括起来进行密码修改: 1alter user lhr identified by "l@h\r/0"; 1. 若密码包含有“&”符号,则需要首先设置define为off才...
2. 存在特殊字符& \ % 大致情况如下: SQL> set define off SQL> alter user scott identified by "tiger&123"; User altered. 采用添加双引号方式进行登录处理 D:\>sqlplus scott/"tiger&123"@orcl SQL*Plus: Release 10.2.0.1.0 - Production on Tue Apr 29 16:16:26 2014 ...
SQL> alter user test identified by aa/aa; alter user test identified by aa/aa * ERROR at line 1: ORA-00922: missing or invalid option 此处使用"" SQL> alter user test identified by "aa/aa"; User altered. SQL> Microsoft Windows XP [版本 5.1.2600] (C) 版权所有 1985-2001 Microsoft ...
等特殊字符时,会出现一些问题。 以hr用户为例: 当oracle用户的密码里带有@时: SYS@ORCL> alter user hr identified by qwet@2017; alter user hr identified by qwet@2017 * ERROR at line 1: ORA-00922: missing or invalid option SYS@ORCL> alter user hr identified by 'qwet@2017';...
【oracle密码特殊字符使用方法】 关于oracle密码特殊字符在sqlplus、imp、exp里的使用 假如数据库网络连接串是db_wending, 密码是 dba/123,@lk.com SQLPLUS下(密码用一对双引号括住): SQL> alter user u_test identified by "dba/123,@lk.com"; SQL> conn u_test/"dba/123,@lk.com"@db_wending...
oracle 12c修改账号密码(带特殊字符) 在oracle 12c中修改账号密码,带特殊字符时,默认情况oracle会提示:enter value for xxx, 然而重新输入进去的时候,会发现重置的密码跟自己要求不一样,特殊字符被忽略过滤掉了。 处理方法: set define off alter user xxxx identified by xxxx...
SYS@lhrdb> alter user lhr identified by "l@hr"; User altered. SYS@lhrdb> exit Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production With the Partitioning, Automatic Storage Management, OLAP, Data Mining ...