首页 | 编程语言 | 网站建设 | 游戏天堂 | 冲浪宝典 | 网络安全 | 操作系统 | 软件时空 | 硬件指南 | 病毒相关 | IT 认证
软讯网络 > 冲浪宝典 > 网络资源 > Oracle用户密码含有 特殊字符如何处理,例“/” 如何进行导出数据?
【标  题】:Oracle用户密码含有 特殊字符如何处理,例“/” 如何进行导出数据?
【关键字】:Oracle
【来  源】:http://www.cublog.cn/u/7121/showart.php?id=113950

Oracle用户密码含有 特殊字符如何处理,例“/” 如何进行导出数据?

作者:olivenan
通常我们在设置Oracle密码时会将密码设置的比较复杂,一般有字母数字特殊符号组成
但是在有特殊符号时,修改密码或着导入导出数据时会遇到麻烦,下文便是对该情况下的解释说明:
本文以特殊符号“/”作为例子
一、Linux环境,数据库为Oracle10g
1、修改密码

[oracle@olivenan oracle]$ sqlplus '/as sysdba'

SQL*Plus: Release 10.2.0.1.0 - Production on Wed May 17 14:33:32 2006

Copyright (c) 1982, 2005, Oracle.  All rights reserved.


Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options

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>


[oracle@olivenan oracle]$ exp test/aa/aa file=test.dmp buffer=65536

Export: Release 10.2.0.1.0 - Production on Wed May 17 14:32:10 2006

Copyright (c) 1982, 2005, Oracle.  All rights reserved.


EXP-00004: invalid username or password
Username:

此处应该进行转义使用 ""处理密码,使用 ''处理用户名和密码

[oracle@olivenan oracle]$ exp 'test/"aa/aa"' file=test.dmp buffer=65536

Export: Release 10.2.0.1.0 - Production on Wed May 17 14:32:52 2006

Copyright (c) 1982, 2005, Oracle.  All rights reserved.


Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
Export done in WE8ISO8859P1 character set and AL16UTF16 NCHAR character set

About to export specified users ...
. exporting pre-schema procedural objects and actions

...............

导出成功,此处省略

二、Windows Xp下,数据库为Oracle9i


C:\Documents and Settings\w>sqlplus /nolog

SQL*Plus: Release 9.2.0.1.0 - Production on Wed May 17 14:56:34 2006

Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.

SQL> connect sys/olivenan as sysdba
Connected.
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 Corp.

C:\Documents and Settings\w>exp test/aa/aa file=aa.dmp buffer=65536

Export: Release 9.2.0.1.0 - Production on Wed May 17 14:58:50 2006

Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.


EXP-00004: invalid username or password
Username:
Password:
EXP-00056: ORACLE error 1017 encountered
ORA-01017: invalid username/password; logon denied
Username: ^Z^Z

EXP-00030: Unexpected End-Of-File encountered while reading input
EXP-00000: Export terminated unsuccessfully

此处使用"""   """来处理用户密码

C:\Documents and Settings\w>exp test/"""aa/aa""" file=aa.dmp buffer=65536

Export: Release 9.2.0.1.0 - Production on Wed May 17 14:59:10 2006

Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.


Connected to: Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production
Export done in WE8ISO8859P1 character set and AL16UTF16 NCHAR character set
server uses ZHS16GBK character set (possible charset conversion)

About to export specified users ...
. exporting pre-schema procedural objects and actions
. exporting foreign function library names for user test
. exporting PUBLIC type synonyms
. exporting private type synonyms
. exporting object type definitions for user test
About to export test's objects ...
. exporting database links
. exporting sequence numbers
........

导出成功,此处省略

如果需要转载请保留地址,谢谢。

自动返回前一个页面的代码:【上一篇】
Oracle中关于逻辑备份与恢复:【下一篇】
【相关文章】
  • Oracle for linux 安装教程
  • Oracle的大表,小表与全表扫描
  • 如何为Oracle导出文件加上时间戳
  • (ZT)如何动态扩大oracle 9i SGA区中的内存空间?
  • ORACLE入门
  • 在IBM AIX上安装Oracle RAC (RS/6000)(转抄)
  • Windows 2000 Advanced Server+Oracle+双机热备安装实例
  • oracle的常用客户端
  • 使用 Web 服务虚拟化 Oracle 数据库
  • oracle和sqlserver互訪!
  • 【随机文章】
  • 要不说你傻呢?
  • 过敏体质的人如何用药?过敏体质的治疗过敏体质过敏性体质小儿过敏体质
  • Flex2.0中使用Validator
  • Try...Catch...Finally 和Throw 叙述
  • 在 Linux 上构建无线接入点: 定制解决方案提供了灵活性和可定制性 — 和学习的机会
  • 微软认证信息系统工程师 (MCSE: Messaging)
  • 一个关于操作局域网的类
  • [open source]点阵字体产生器发布
  • ASP3.0中的流控制能力(1)  
  • 2.6.1*Linux内核中NAT处理的改变
  • 【相关评论】
    没有相关评论
    【发表评论】
    姓名:
    邮件:
    随机码*
    评论*
          
    |  首 页  |  版权声明  |  联系我们   |  网站地图  |
    CopyRight © 2004-2007 软讯网络 All Rigths Reserved.