- 最后登录
- 2023-8-16
- 在线时间
- 1686 小时
- 威望
- 2135
- 金钱
- 50532
- 注册时间
- 2011-10-12
- 阅读权限
- 200
- 帖子
- 5207
- 精华
- 39
- 积分
- 2135
- UID
- 2
|
3#
发表于 2012-5-30 17:38:56
ODM TEST:
SQL> select * from v$version;
BANNER
----------------------------------------------------------------------
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
PL/SQL Release 11.2.0.1.0 - Production
CORE 11.2.0.1.0 Production
TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
NLSRTL Version 11.2.0.1.0 - Production
SQL> create tablespace tryresize datafile '' size 200M;
表空间已创建。
C:\Users\Maclean.Liu>dir E:\size.dbf
驱动器 E 中的卷是 Entertainment
卷的序列号是 80B2-4CC6
E:\ 的目录
2012/05/30 17:36 209,723,392 SIZE.DBF
1 个文件 209,723,392 字节
0 个目录 61,703,258,112 可用字节
SQL> alter database datafile 'E:\size.dbf' resize 100M;
数据库已更改。
C:\Users\Maclean.Liu>dir E:\size.dbf
驱动器 E 中的卷是 Entertainment
卷的序列号是 80B2-4CC6
E:\ 的目录
2012/05/30 17:37 104,865,792 SIZE.DBF
1 个文件 104,865,792 字节
0 个目录 61,808,115,712 可用字节
建议:
直接使用 alter database datafile resize 命令 而不要使用 OEM工具。 |
|