Oracle 11g新特性之用户重命名

我们在项目开发中,数据也会不断变化,因此需要定期将开发库数据库导入到测试数据库中。通常的做法是“三部曲:”

1.从开发库中exp导出数据

2.删除测试库用户

3.使用imp把导出数据导入到测试库


       今天同事问我可不可以保留之前的用户,比如给用户改个名称。我之前倒没想过这个问题,说应该可以吧,使用alter user *** rename to ***;语句。需要上机验证一下,一操作就傻眼了,Oracle 10g不支持用户重命名,从Oracle 11.2.0.2才开始提供用户重命名的新特性。

Oracle 10g 不支持用户重命名

1.环境准备

我们在Oracle 10g中进行试验。

点击(此处)折叠或打开

  1. C:\\Users\\Administrator>sqlplus sys/hoegh as sysdba

  2. SQL*Plus: Release 10.2.0.4.0 - Production on 星期四 5月 14 09:17:02 2015

  3. Copyright (c) 1982, 2007, Oracle. All Rights Reserved.


  4. 连接到:
  5. Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
  6. With the Partitioning, OLAP, Data Mining and Real Application Testing options

  7. SQL>
  8. SQL> select * from v$version;

  9. BANNER
  10. ----------------------------------------------------------------
  11. Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
  12. PL/SQL Release 10.2.0.4.0 - Production
  13. CORE 10.2.0.4.0 Production
  14. TNS for 64-bit Windows: Version 10.2.0.4.0 - Production
  15. NLSRTL Version 10.2.0.4.0 - Production

  16. SQL>

2.重命名用户报错

执行alter user *** rename to ***;语句,数据库报错,如下所示:

点击(此处)折叠或打开

  1. SQL>
  2. SQL> alter user scott rename to tiger;
  3. alter user scott rename to tiger
  4.                  *
  5. 第 1 行出现错误:
  6. ORA-00922: 选项缺失或无效


  7. SQL>
  8. SQL> alter user scott rename to tiger identified by scott;
  9. alter user scott rename to tiger identified by scott
  10.                  *
  11. 第 1 行出现错误:
  12. ORA-00922: 选项缺失或无效


  13. SQL>
  14. SQL>

Oracle 11g用户重命名

1.环境准备

我们在Oracle 11g中进行试验。

点击(此处)折叠或打开

  1. SQL>
  2. SQL> select * from v$version;

  3. BANNER
  4. --------------------------------------------------------------------------------
  5. Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production
  6. PL/SQL Release 11.2.0.3.0 - Production
  7. CORE 11.2.0.3.0 Production
  8. TNS for Linux: Version 11.2.0.3.0 - Production
  9. NLSRTL Version 11.2.0.3.0 - Production

  10. SQL>

2.修改Oracle的隐含参数"_enable_rename_user"

通常,在sqlplus中使用show parameter xx可以查看到Oracle定义的参数, 它是通过查询v$parameter获得的。 另外Oracle中还有一些隐含的参数 无法直接通过show parameter的方式查询,也就是我们接下来使用到的隐含参数。修改隐含参数时, 使用alter system set "parameter_name"=value scope=both;其中有些可以在memory更改而有些仅仅可以通过spfile更改, 试试就知道了。需要注意的是一定要加上双引号, 另外引号内不能有空格, 只能包含参数的名字。

点击(此处)折叠或打开

  1. SQL>
  2. SQL> show parameter process    --通过show parameter查看参数

  3. NAME TYPE VALUE
  4. ------------------------------------ ----------- ------------------------------
  5. aq_tm_processes integer 1
  6. cell_offload_processing boolean TRUE
  7. db_writer_processes integer 1
  8. gcs_server_processes integer 0
  9. global_txn_processes integer 1
  10. job_queue_processes integer 1000
  11. log_archive_max_processes integer 4
  12. processes integer 150
  13. processor_group_name string
  14. SQL>
  15. SQL> show parameter enable_rename  --无法通过show parameter查看隐含参数
  16. SQL> show parameter rename
  17. SQL>
  18. SQL>
  19. SQL> alter system set \"_enable_rename_user\"=true scope=spfile;

  20. System altered.

  21. SQL>


3.用RESTRICTED模式启动数据库

用户重命名操作必须在RESTRICTED模式下完成。需要注意的是RESTRICTED模式以后 除了管理员都不能登录,如果需要非管理员登录,必须授予权限GRANT restricted session to username;

点击(此处)折叠或打开

  1. SQL>
  2. SQL> startup restrict force
  3. ORACLE instance started.

  4. Total System Global Area 941600768 bytes
  5. Fixed Size 1348860 bytes
  6. Variable Size 629148420 bytes
  7. Database Buffers 306184192 bytes
  8. Redo Buffers 4919296 bytes
  9. Database mounted.
  10. Database opened.
  11. SQL>
  12. SQL>
  13. SQL> select status from v$instance;

  14. STATUS
  15. ------------
  16. OPEN

  17. SQL>
  18. SQL> select open_mode,name from v$database;

  19. OPEN_MODE NAME
  20. -------------------- ---------
  21. READ WRITE HOEGH

  22. SQL>




4.修改用户名

在执行重命名操作时,必须重新指定密码,否则会报错。

点击(此处)折叠或打开

  1. SQL>
  2. SQL> alter user scott rename to tiger;
  3. alter user scott rename to tiger
  4.                                *
  5. ERROR at line 1:
  6. ORA-02000: missing IDENTIFIED keyword


  7. SQL> alter user scott rename to tiger identified by scott;

  8. User altered.

  9. SQL>


5.重启数据库


点击(此处)折叠或打开

  1. SQL>
  2. SQL> shutdown immediate
  3. Database closed.
  4. Database dismounted.
  5. ORACLE instance shut down.
  6. SQL>
  7. SQL>
  8. SQL> startup
  9. ORACLE instance started.

  10. Total System Global Area 941600768 bytes
  11. Fixed Size 1348860 bytes
  12. Variable Size 629148420 bytes
  13. Database Buffers 306184192 bytes
  14. Redo Buffers 4919296 bytes
  15. Database mounted.
  16. Database opened.
  17. SQL>

6.确认结果

原来的scott用户已经被重命名为tiger用户,现在,我们验证一下tiger用户是否能够正常登陆,原来的scott用户是否还存在。

点击(此处)折叠或打开

  1. SQL> conn scott/tiger
  2. ERROR:
  3. ORA-01017: invalid username/password; logon denied


  4. Warning: You are no longer connected to ORACLE.
  5. SQL>
  6. SQL> conn tiger/scott
  7. Connected.
  8. SQL>
  9. SQL> select * from cat;

  10. TABLE_NAME TABLE_TYPE
  11. ------------------------------ -----------
  12. BONUS TABLE
  13. DEPT TABLE
  14. EMP TABLE
  15. HOEGH TABLE
  16. SALGRADE TABLE

  17. SQL> 

hoegh
15.05.14
-- The End --

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。